| parkland_burn_formula | R Documentation |
Calculates the fluid resuscitation requirements for burn patients within the first 24 hours of injury using the Parkland Formula. It determines the total volume of Lactated Ringer's solution required, split into the first 8 hours (50%) and the subsequent 16 hours (50%).
parkland_burn_formula(weight_kg, tbsa_percent)
weight_kg |
Numeric. Patient weight in kilograms. |
tbsa_percent |
Numeric. Total Body Surface Area burned as a percentage (e.g., enter 20 for 20%). |
The formula used is:
Total\_Fluid (mL) = 4 \times Weight (kg) \times TBSA (\%)
Half of this total is administered in the first 8 hours from the time of injury, and the remaining half is administered over the next 16 hours.
A list containing:
Total_Fluid_24h_mL |
Total estimated fluid requirement for the first 24 hours. |
First_8h_Volume_mL |
Volume to be administered in the first 8 hours. |
First_8h_Rate_mL_hr |
Infusion rate for the first 8 hours. |
Next_16h_Volume_mL |
Volume to be administered in the next 16 hours. |
Next_16h_Rate_mL_hr |
Infusion rate for the next 16 hours. |
Baxter CR, Shires T. Physiological response to crystalloid resuscitation of severe burns. Ann N Y Acad Sci. 1968;150(3):874-894. doi:10.1111/j.1749-6632.1968.tb14738.x
# Example 1: 75kg adult with 20% TBSA burn
# Total = 4 * 75 * 20 = 6000 mL
# First 8h = 3000 mL (375 mL/hr)
parkland_burn_formula(75, 20)
# Example 2: 50kg patient with 40% TBSA burn
# Total = 4 * 50 * 40 = 8000 mL
parkland_burn_formula(50, 40)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.