From f6b0f127626076010e559aa94d7e4f61fe3347a0 Mon Sep 17 00:00:00 2001 From: saksham vitwekar Date: Tue, 31 Mar 2026 20:15:26 +0530 Subject: [PATCH] Changing the unit of MAP --- src/app/utils/calculators/General Cardiology/MAP.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/utils/calculators/General Cardiology/MAP.ts b/src/app/utils/calculators/General Cardiology/MAP.ts index 930213b..be51cf4 100644 --- a/src/app/utils/calculators/General Cardiology/MAP.ts +++ b/src/app/utils/calculators/General Cardiology/MAP.ts @@ -24,6 +24,7 @@ export const MAP : Calculator = { name:"Mean Arterial Pressure", desc:"Mean Arterial Pressure (MAP) is the average arterial pressure throughout one cardiac cycle, that is, systole and diastole. It is influenced by Cardiac Output (CO) and Systemic Vascular Resistance (SVR) and used to check whether the vital organs of the body are well-perfused or not.", inputs:parameters, + unit:"mmHg", calc_func:(values:Values):number => { const sbp = values.sbp as number; const dbp = values.dbp as number;