R/0-Functions.R
Gb_hForced.Rd
Compute the boundary layer conductance for heat - single sided, forced or free convection using the Leuning et al. (1995) equations.
Gb_hForced(Wind, wleaf = 0.068) Gb_hFree(Tair, Tleaf, wleaf = 0.068, Dheat = Constants()$Dheat)
Wind | Wind speed (m s-1) |
---|---|
wleaf | Leaf width (m). Default to |
Tair | Average daily air temperature (deg C) |
Tleaf | Average daily leaf temperature (deg C) |
Dheat | Molecular diffusivity for heat (m2 s-1). Default to: |
Leaf boundary layer conductance for heat under forced convection (m s-1)
Leaf boundary layer conductance for heat under free convection (m s-1)
Leuning, R., et al., Leaf nitrogen, photosynthesis, conductance and transpiration: scaling from leaves to canopies. Plant, Cell & Environment, 1995. 18(10): p. 1183-1200.
The MAESPA model, from which both functions were taken (FORTRAN code) and
translated into R.
The function from which both are usually called internally in DynACof: Gb_h()
Gb_hForced(Wind=3)#> [1] 0.01992633Gb_hFree(Tair= 25,Tleaf= 26)#> [1] 0.002367616