Learn R Programming

psychrolib (version 2.5.2)

GetSatAirEnthalpy: Return saturated air enthalpy given dry-bulb temperature and pressure.

Description

Return saturated air enthalpy given dry-bulb temperature and pressure.

Usage

GetSatAirEnthalpy(TDryBulb, Pressure)

Arguments

TDryBulb

A numeric vector of dry-bulb temperature in degreeF [IP] or degreeC [SI]

Pressure

A numeric vector of atmospheric pressure in Psi [IP] or Pa [SI]

Value

A numeric vector of saturated air enthalpy in Btu lb-1 [IP] or J kg-1 [SI]

References

ASHRAE Handbook - Fundamentals (2017) ch. 1

Examples

Run this code
# NOT RUN {
SetUnitSystem("IP")
GetSatAirEnthalpy(80:100, 14.696)

SetUnitSystem("SI")
GetSatAirEnthalpy(20:30, 101325)

# }

Run the code above in your browser using DataLab