๐งช Pulmonary Embolism Rule-Out Criteria (PERC)
Evaluates low-risk patients suspected of pulmonary embolism to safely rule out PE clinically without requiring blood tests or imaging.
Enter your clinical parameters to see dynamic diagnostic readings.
`;
} else {
card.innerHTML = `
${res.score}
${res.title}
${res.desc}
๐ Result Interpretation
${res.desc}
๐ Normal Ranges
PERC Score: 0 (PE ruled out clinically if pre-test probability is low) | โฅ 1 (PERC positive; requires further testing)
๐ก What This Means
The PERC rule assesses 8 clinical variables (age, pulse, hypoxia, unilateral swelling, hemoptysis, prior history, trauma, hormones) to rule out PE.
โ ๏ธ When to See a Doctor
Consult a physician or seek emergency care if the PERC score is โฅ 1, as blood assays (D-Dimer) or imaging may be necessary.
๐ Related Conditions
๐ฟ Related Remedies
๐งฎ Related Calculators
๐ฅ Medical Guidance & Consultation
Need personalized guidance? You can book a professional Homeopathic Consultation for a complete therapeutic assessment.
`;
}
}
function copyResult_hc_6a96445339aae(score, title) {
const text = "Pulmonary Embolism Rule-Out Criteria (PERC) Result:\nScore: " + score + "\nClassification: " + title + "\nReport generated via Toolfix.info";
navigator.clipboard.writeText(text).then(() => {
alert('Result copied to clipboard!');
});
}
function shareResult_hc_6a96445339aae(score) {
const shareUrl = window.location.origin + window.location.pathname + '?score=' + encodeURIComponent(score);
navigator.clipboard.writeText(shareUrl).then(() => {
alert('Share link copied to clipboard!');
});
}
// Auto-calculate on input
(function() {
const initAutoCalc = () => {
const wrapper = document.getElementById('hc_6a96445339aae-wrapper');
if (wrapper) {
wrapper.querySelectorAll('input, select').forEach(el => {
const eventName = el.tagName === 'SELECT' ? 'change' : 'input';
el.addEventListener(eventName, () => {
calc_hc_6a96445339aae(true);
});
});
}
};
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initAutoCalc);
} else {
initAutoCalc();
}
})();