Description Usage Arguments Value Author(s) References Examples
Uses the Holliday-Seager method to calculate the amount of IV fluids required by a patient given their weight.
1 2 3 4 | Maintenance.Fluids(
weight = 200,
units = "pounds"
)
|
weight |
Numerical value corresponding to the weight of the patient for which you want to calculate the amount of IV fluids required. |
units |
String value corresponding to the unit system used to measure the weight of the patient for which you want to calculate the amount of IV fluids required. Avaliable options are 'kg' if the patient's weight was measured in kilograms or 'pounds' if the patient's weight was measured in pounds. |
Returns a list object that includes the amount of mL per day and per hour required for maintenance of this patient.
Carlos C Vera Recio
HOLLIDAY, M A, and W E SEGAR. “The maintenance need for water in parenteral fluid therapy.” Pediatrics vol. 19,5 (1957): 823-32.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Maintentance fluids for a 200 pound patient
Maintenance.Fluids(
weight = 200,
units = "pounds"
)
# Maintentance fluids for a 100 kg patient
Maintenance.Fluids(
weight = 100,
units = "kg"
)
# Maintentance fluids for a 20 kg patient
Maintenance.Fluids(
weight = 20,
units = "kg"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.