| WETAIR {TrenchR} | R Documentation |
Properties of Wet Air
Description
The function calculates several properties of humid air described as output variables below. The program is based on equations from List (1971) and code implementation from NicheMapR (Kearney and Porter 2017; Kearney and Porter 2020).
WETAIR must be used in conjunction with VAPPRS. Input variables are shown below. See Details.
Usage
WETAIR(db, wb = db, rh = 0, dp = 999, bp = 101325)
Arguments
db |
|
wb |
|
rh |
|
dp |
|
bp |
|
Details
The user must supply known values for DB and BP (BP at one standard atmosphere is 101,325 pascals). Values for the remaining variables are determined by whether the user has either (1) psychrometric data (WB or RH), or (2) hygrometric data (DP):
Psychrometric data: If WB is known but not RH, then set RH = -1 and DP = 999. If RH is known but not WB then set WB = 0 and DP = 999
Hygrometric data: If DP is known, set WB = 0 and RH = 0
Value
Named list with elements
e:numericsaturation vapor pressure (Pa)vd:numericvapor density (kg m-3)rw:numericmixing ratio (kg kg-1)tvir:numericvirtual temperature (K)tvinc:numericvirtual temperature increment (K)denair:numericdensity of the air (kg m-3)cp:numericspecific heat of air at constant pressure (J kg-1 K-1)wtrpot:numericwater potential (Pa)rh:numericrelative humidity (%)
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.
Kearney MR, Porter WP (2020).
“NicheMapR - an R package for biophysical modelling: the ectotherm and Dynamic Energy Budget models.”
Ecography, 43(1), 85-96.
doi: 10.1111/ecog.04680.
List RJ (1971).
“Smithsonian Meteorological Tables.”
Smithsonian Miscellaneous Collections, 114(1), 1-527.
https://repository.si.edu/handle/10088/23746.
Examples
WETAIR(db = 30,
wb = 28,
rh = 60,
bp = 100 * 1000)