GetMoistAirEnthalpy {psychrolib}R Documentation

Return moist air enthalpy given dry-bulb temperature and humidity ratio.

Description

Return moist air enthalpy given dry-bulb temperature and humidity ratio.

Usage

GetMoistAirEnthalpy(TDryBulb, HumRatio)

Arguments

TDryBulb

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

HumRatio

A numeric vector of humidity ratio in lb_H2O lb_Air-1 [IP] or kg_H2O kg_Air-1 [SI]

Value

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

References

ASHRAE Handbook - Fundamentals (2017) ch. 1 eqn 30

Examples

SetUnitSystem("IP")
GetMoistAirEnthalpy(80:100, 0.02)

SetUnitSystem("SI")
GetMoistAirEnthalpy(20:30, 0.02)


[Package psychrolib version 2.5.2 Index]