View source: R/stability_correction.r
stability.parameter | R Documentation |
calculates "zeta", a parameter characterizing stratification in the lower atmosphere.
stability.parameter( data, Tair = "Tair", pressure = "pressure", ustar = "ustar", H = "H", zr, d, constants = bigleaf.constants() )
data |
Data.frame or matrix containing all required variables |
Tair |
Air temperature (degC) |
pressure |
Atmospheric pressure (kPa) |
ustar |
Friction velocity (m s-1) |
H |
Sensible heat flux (W m-2) |
zr |
Instrument (reference) height (m) |
d |
Zero-plane displacement height (m) |
constants |
Kelvin - conversion degree Celsius to Kelvin |
The stability parameter ζ is given by:
ζ = (zr - d) / L
where L is the Monin-Obukhov length (m), calculated from the function
Monin.Obukhov.length
. The displacement height d can
be estimated from the function roughness.parameters
.
ζ - stability parameter zeta (-)
df <- data.frame(Tair=25,pressure=100,ustar=seq(0.2,1,0.1),H=seq(40,200,20)) stability.parameter(df,zr=40,d=15)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.