GetDryAirEnthalpy {psychrolib} | R Documentation |
Return dry-air enthalpy given dry-bulb temperature.
GetDryAirEnthalpy(TDryBulb)
TDryBulb |
A numeric vector of dry-bulb temperature in degreeF [IP] or degreeC [SI] |
A numeric vector of dry air enthalpy in Btu lb-1 [IP] or J kg-1 [SI]
ASHRAE Handbook - Fundamentals (2017) ch. 1 eqn 28
SetUnitSystem("IP")
GetDryAirEnthalpy(77:87)
SetUnitSystem("SI")
GetDryAirEnthalpy(10:30)