Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

deadspace_total

Estimate ventilation dead-space


Description

Estimate ventilation dead-space

Usage

deadspace_total(ideal_weight_kg, age_y = NULL, elbow_ml = 10,
  humidifier_ml = 7, ett_diameter_mm = NULL)

deadspace_anatomic(ideal_weight_kg, age_y = NULL)

deadspace_anatomic_adult(ideal_weight_kg = NULL)

deadspace_anatomic_child(ideal_weight_kg, age_y = NULL)

deadspace_intrathoracic_ml(ideal_weight_kg)

Arguments

ideal_weight_kg

Ideal weight in kilograms. May be calculated using ideal_weight_adult or ideal_weight_child

age_y

Age in years, optional for estimating ETT and HME sizes automatically

elbow_ml

Numeric volume of elbow of breathing circuit in ml

humidifier_ml

Numeric volume of humidifier of breathing circuit in ml

ett_diameter_mm

Numeric internal diameter of endotracheal tube. Default is NULL which would estimate this from the age of patient

Details

'Mean intrathoracic anatomic dead space was 1.03 ml/kg and was not related to age.' Numa, 1985

Value

estimate of anatomic dead-space in ml

Functions

  • deadspace_anatomic: Estimate anatomic dead-space

  • deadspace_anatomic_adult: Estimate anatomic dead-space in an adult

  • deadspace_anatomic_child: Estimate anatomic dead-space in an infant or child

  • deadspace_intrathoracic_ml: intrathoracic component of dead-space is age independent

References

See Also

Other respiratory: alveolar_PAO2_mmHg

Examples

height <- seq(1, 2, 0.05)
  male <- rep(FALSE, length(height))
  iw <- ideal_weight_adult(height_m = height, male = male)
  ## Not run: 
  plot(iw, deadspace_anatomic_adult(ideal_weight_kg = height))
  
## End(Not run)

  # discontinuity at age 6 is driven by ideal weight more than the
  # lograithmic calculation
  iw <- c(seq(12, 18, 0.2), seq(18.5, 24, 0.5))
  youngest = 3
  oldest = 9
  ages <- seq(youngest, oldest, (oldest - youngest) / (length(iw) - 1))
  ## Not run: 
  plot(iw, deadspace_anatomic_child(ideal_weight_kg = iw, age_y = ages),
       type = "l")
  
## End(Not run)

physiology

Calculate physiologic characteristics of awake and anesthetized adults, children and infants

v1.2.1
GPL-3
Authors
Jack O. Wasey [aut, cre, cph] (<https://orcid.org/0000-0003-3738-4637>), Bill Denney [ctb] (<https://orcid.org/0000-0002-5759-428X>)
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.