AH {humidity} | R Documentation |
calculate absolute humidity
Description
calculate absolute humidity \rho_w
based on partial water vapor pressure e
at temperature t
Usage
AH(e, t, isK = TRUE)
Arguments
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. |
Value
numeric absolute humidity \rho_w
(kg/m^3
)
Author(s)
Jun Cai (cai-j12@mails.tsinghua.edu.cn), PhD candidate from Department of Earth System Science, Tsinghua University
See Also
Examples
t <- 273.15
Es <- SVP(t)
e <- WVP2(70, Es)
AH(e, t)
[Package humidity version 0.1.5 Index]