diff --git a/docs/miscellaneous/MELD.md b/docs/miscellaneous/MELD.md new file mode 100644 index 0000000..664c2a3 --- /dev/null +++ b/docs/miscellaneous/MELD.md @@ -0,0 +1,27 @@ +# Model for End-stage Liver Disease (MELD) score + +#### MELD score is a numerical value that is used to predict the 3-month mortality prediction risk of a patient. It is also used to prioritize patients for liver transplantations with higher score indicating a more urgent need. +### Parameters needed +| Parameter | Unit | +| --------- | ---- | +| Serum Bilirubin | mg/dL | +| Serum Creatinine | mg/dL | +| International Normalized Ratio (INR) | - | +### MELD Score interpretation table:- + +| Score range | Mortality risk | +| ----------- | -------------- | +| less than 9 | Low risk (under 1.9%) | +| 10 to 19 | Low to Moderate (6.0% - 19.6%) | +| 20 to 29 | Moderate risk (19.6% - 52.6%) | +| 30 to 39 | High risk (52.6% - 71.3%) | +| more than 40 | Extremely high risk (71.3% - 100%) | + +### Formula to calculate MELD:- +The MELD score is calculated using the following formula:- +$$ +\textbf{MELD} = (9.57 \times \ln(\text{Serum Creatinine})) + (3.78 \times \text{Serum Bilirubin}) + (11.2 \times \text{INR}) + 6.43 +$$ + +### Notice:- +The MELD score is not considered accurate for advanced liver diseases. Other calulcators like MELD-Na should be used before taking clinical decisions \ No newline at end of file diff --git a/src/app/(calculators)/calculate/[section]/[id]/renderCalc.tsx b/src/app/(calculators)/calculate/[section]/[id]/renderCalc.tsx index 8f129e9..c759bbf 100644 --- a/src/app/(calculators)/calculate/[section]/[id]/renderCalc.tsx +++ b/src/app/(calculators)/calculate/[section]/[id]/renderCalc.tsx @@ -25,7 +25,6 @@ export default function RenderCalculator({section, id} : {section:string, id:str level:"none", message:"none" }); - console.log(form); return calculator ? ( <>