The function estimates boundary layer resistance under free convection based on the function in Riddell et al. (2018) .

boundary_layer_resistance(T_a, e_s, e_a, elev, D, u = NA)

Arguments

T_a

numeric air temperature (K).

e_s

numeric saturation vapor pressure (kPa).

e_a

numeric actual vapor pressure (kPa).

elev

numeric elevation (m).

D

numeric characteristic dimension (e.g., body diameter) (m).

u

numeric wind speed (m s-1), if not provided assume free convection; if provided, use forced convection if appropriate.

Value

numeric boundary layer resistance (s cm-1).

References

Riddell EA, Odom JP, Damm JD, Sears MW (2018). “Plasticity reveals hidden resistance to extinction under climate change in the global hotspot of salamander diversity.” Science Advances, 4(4). doi:10.1126/sciadv.aar5471 .

Author

Eric Riddell

Examples

  boundary_layer_resistance(T_a  = 293,
                            e_s  = 2.5,
                            e_a  = 2.0,
                            elev = 500,
                            D    = 0.007,
                            u    = 2)
#> [1] 0.3641435