Learn R Programming

humidity (version 0.1.4)

AH: 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 (<U+00B0>C)

isK

logical indicator whether temperature is in Kelvin (K). The default value is TRUE.

Value

numeric absolute humidity \(\rho_w\) (\(kg/m^3\))

See Also

WVP1, WVP2, RH, SH.

Examples

Run this code
# NOT RUN {
t <- 273.15
Es <- SVP(t)
e <- WVP2(70, Es)
AH(e, t)
# }

Run the code above in your browser using DataLab