The function estimates air temperature (C) at a specified height (m). Estimates a single, unsegmented temperature profile using the MICRO routine from NicheMapR (Kearney and Porter 2017) .

air_temp_profile(T_r, u_r, zr, z0, z, T_s)

Arguments

T_r

numeric air temperature (C) at reference height.

u_r

numeric windspeed (m s-1) at reference height.

zr

numeric initial reference height (m).

z0

numeric surface roughness (m).

z

numeric height to scale (m).

T_s

numeric surface temperatures (C).

Value

numeric air temperature (C).

References

Kearney MR, Porter WP (2017). “NicheMapR - an R package for biophysical modelling: the microclimate model.” Ecography, 40, 664-674. doi:10.1111/ecog.02360 .

Examples

  air_temp_profile(T_r = 20,
                   u_r = 0.1, 
                   zr  = 0.1, 
                   z0  = 0.2, 
                   z   = 0.15, 
                   T_s = 25)
#> [1] 18.33811