AH {humidity} | R Documentation |
calculate absolute humidity \rho_w
based on partial water vapor pressure e
at temperature t
AH(e, t, isK = TRUE)
e |
partial water vapor pressure in Pascal (Pa) |
t |
temperature in Kelvin (K) or in degree Celsius (°C) |
isK |
logical indicator whether temperature is in Kelvin (K). The default value is TRUE. |
numeric absolute humidity \rho_w
(kg/m^3
)
Jun Cai (cai-j12@mails.tsinghua.edu.cn), PhD candidate from Department of Earth System Science, Tsinghua University
t <- 273.15
Es <- SVP(t)
e <- WVP2(70, Es)
AH(e, t)