Vasoactive and VDE Score Calculator
About this app
A calculator to compute the vasoactive and VDE scores based on drug doses.
Vasoactive and VDE Score Calculator Vasoactive Score Calculator Norepinephrine (0.1 mcg/kg/min = 10): Epinephrine (0.1 mcg/kg/min = 10): Dopamine (0.1 mcg/kg/min = 1): Vasopressin (0.04 U/min = 5): Dobutamine (0.1 mcg/kg/min = 1): Milrinone (0.1 mcg/kg/min = 10): Phenylephrine (0.1 mcg/kg/min = 10):
Related apps
Put this on your site
Source
<!DOCTYPE html>
<html>
<head>
<title>Vasoactive and VDE Score Calculator</title>
<meta name='description' content='A calculator to compute the vasoactive and VDE scores based on drug doses.'>
<meta name='keywords' content='vasoactive, VDE, score, calculator, medical'>
<style>
body {
font-family: 'Sans-serif';
font-size: 18px;
}
</style>
<script>
function calculateVasoactiveScore() {
const norepinephrine = (parseFloat(document.getElementById('norepinephrine').value) || 0) * 100;
const epinephrine = (parseFloat(document.getElementById('epinephrine').value) || 0) * 100;
const dopamine = (parseFloat(document.getElementById('dopamine').value) || 0) * 1;
const vasopressin = (parseFloat(document.getElementById('vasopressin').value) || 0) / 0.04 * 5;
const dobutamine = (parseFloat(document.getElementById('dobutamine').value) || 0) * 1;
const milrinone = (parseFloat(document.getElementById('milrinone').value) || 0) * 10;
const phenylephrine = (parseFloat(document.getElementById('phenylephrine').value) || 0) * 10;
const totalScore = norepinephrine + epinephrine + dopamine + vasopressin + dobutamine + milrinone + phenylephrine;
document.getElementById('result').innerHTML = 'Vasoactive Score: ' + totalScore.toFixed(1);
if (totalScore >= 20) {
document.getElementById('recommendations').innerHTML = 'Recommendations: When the vasoactive inotropic score is 20 coming off bypass, MCS should be considered, including:<br>1. IABP, or<br>2. Surgically placed microaxial flow pump (Impella 5.5), or<br>3. VA ECMO, peripheral, if not immediately, then, central initially and convert to peripheral when the patient stabilizes.';
} else {
document.getElementById('recommendations').innerHTML = '';
}
}
</script>
</head>
<body>
<h1>Vasoactive Score Calculator</h1>
<form>
<label for='norepinephrine'>Norepinephrine (0.1 mcg/kg/min = 10): </label>
<input type='number' id='norepinephrine'><br>
<label for='epinephrine'>Epinephrine (0.1 mcg/kg/min = 10): </label>
<input type='number' id='epinephrine'><br>
<label for='dopamine'>Dopamine (0.1 mcg/kg/min = 1): </label>
<input type='number' id='dopamine'><br>
<label for='vasopressin'>Vasopressin (0.04 U/min = 5): </label>
<input type='number' id='vasopressin'><br>
<label for='dobutamine'>Dobutamine (0.1 mcg/kg/min = 1): </label>
<input type='number' id='dobutamine'><br>
<label for='milrinone'>Milrinone (0.1 mcg/kg/min = 10): </label>
<input type='number' id='milrinone'><br>
<label for='phenylephrine'>Phenylephrine (0.1 mcg/kg/min = 10): </label>
<input type='number' id='phenylephrine'><br>
<input type='button' value='Calculate' onclick='calculateVasoactiveScore()'>
</form>
<p id='result'></p>
<p id='recommendations'></p>
</body>
</html>
NEW APPS
These are apps made by the community!