Use case · Healthcare ops

Clinical math with a signature.

Dosing sheets, an eGFR calculator in a browser tab, thresholds in a policy PDF. In Grid the clinical math is validated formulas over typed cells — the calculation, its inputs, and the alert threshold live in one place, and every result can explain itself.

Grids
01 · The model

Monday morning, as source.

renal-dosing.gridgrid
# clinical math, validated
egfr = EGFR_CKD_EPI_2021(creatinine, age, sex)
crcl = CREATININE_CLEARANCE_CG(age, weight_kg, creatinine, sex)
dose_mg = DOSE_BY_WEIGHT(weight_kg, mg_per_kg)

# the threshold is part of the model
WHEN egfr < 30 THEN
  renal_alert = TRUE
END

Forty healthcare functions — clinical math, diagnostic metrics, medication, operations — named after the formulas clinicians already cite, not reinvented.

Not a demo. A working domain.

The formulas are the published ones — CKD-EPI 2021, Cockcroft-Gault, BSA- and weight-based dosing — implemented once, versioned, and auditable, instead of re-derived in every department's workbook.

More MondaysAll use cases