MELD Refit

[php]
if ($_POST) {
$hd = $_POST[‘hd’];
$a = $_POST[‘cr’];
$b = $_POST[‘tbili’];
$c = $_POST[‘inr’];if (($a) > 3) {
$a = 3;
}

if (($hd) == 1) {
$a = 3;
}

if (($a) < .8) { $a = .8; } if (($b) > 20) {
$b = 20;
}

if (($b) < 1) { $b = 1; } if (($c) > 3) {
$c = 3;
}

if (($c) < 1) {
$c = 1;
}

if ((empty($a)) || (empty($b)) || (empty($c))) {
$result = “Fill in all variables”;
}

if (empty($result)) {
$var1 = log($a);
$var2 = 8.485*$var1;
$var3 = log($b);
$var4 = 4.082*$var3;
$var5 = log($c);
$var6 = 10.671*$var5;
$var7 = $var2+$var4+$var6;
$var8 = $var7+7.432;
$result = round($var8, 0);
}

echo $result;
echo “*”;

}
[/php]

On Dialysis :
Creatinine :
Total Bilirubin:
INR :

[pullquote]The Model for End-Stage Liver Disease (MELD) is a reliable measure of mortality risk in patients with end-stage liver disease. It is used as a disease severity index to help prioritize allocation of organs for transplant.

The Refit model looks to optimize prediction of mortality with alteration of factors including change in allowable boundaries for labs.[/pullquote]
Formula :

4.082[Ln serum bilirubin (mg/dL)] + 10.671[Ln INR] + 8.485[Ln serum creatinine (mg/dL)] + 7.432

Explanation of Result :

3 Month Mortality :MELD score > 40 : 71.3% mortality
MELD score 30–39 : 52.6% mortality
MELD score 20–29 : 19.6% mortality
MELD score 10–19 : 6.0% mortality
MELD score < 9 : 1.9% mortality

* Please verify all calculations prior to clinical use.