GetStandardAtmPressure {psychrolib} | R Documentation |
Return standard atmosphere barometric pressure, given the elevation (altitude).
GetStandardAtmPressure(Altitude)
Altitude |
A numeric vector of altitude in ft [IP] or m [SI] |
A numeric vector of standard atmosphere barometric pressure in Psi [IP] or Pa [SI]
ASHRAE Handbook - Fundamentals (2017) ch. 1 eqn 3
SetUnitSystem("IP")
GetStandardAtmPressure(seq(-500, 1000, 100))
SetUnitSystem("SI")
GetStandardAtmPressure(seq(-500, 1000, 100))