This function converts several lung volume parameters at ATPS (Ambient Temperature and Pressure Saturated) to lung volume at BTPS (Body Temperature, Pressure, water vapor Saturated).

lung_vol_atps_btps(
  temp = NA,
  FEV1 = NA,
  FVC = NA,
  PEF = NA,
  TV = NA,
  IC = NA,
  EC = NA,
  VC = NA
)

Arguments

temp

(Numeric) Room Temperature in celsius when gas was collected.

FEV1

(numeric) Forced Expiratory Volume in 1 second (L).

FVC

(numeric) Forced Vital Capacity (L)

PEF

(numeric) Peak Expiratory Flow (L/min)

TV

(numeric) Tidal Volume (L)

IC

(numeric) Inspiratory Capacity (L)

EC

(numeric) Expiratory Capacity (L)

VC

(numeric) Vital Capacity (L)

Value

A Tibble

Examples

lung_vol_atps_btps(temp = 30, FEV1 = 5, FVC = 10, PEF = 4, TV = 9, IC = 10, EC = 12, VC = 10)
#> # A tibble: 10 × 4
#>    Parameter  ATPS  BTPS Unit 
#>    <chr>     <dbl> <dbl> <chr>
#>  1 FEV1          5  5.22 L    
#>  2 FVC          10 10.4  L    
#>  3 FEV1/FVC     50 52.2  %    
#>  4 PEF           4  4.18 L/min
#>  5 TV            9  9.40 L    
#>  6 IC           10 10.4  L    
#>  7 IRV           1  1.04 L    
#>  8 EC           12 12.5  L    
#>  9 ERV           3  3.14 L    
#> 10 VC           10 10.4  L