GetTDewPointFromVapPres: Return dew-point temperature given dry-bulb temperature and...

Description Usage Arguments Value Note References Examples

Description

Return dew-point temperature given dry-bulb temperature and vapor pressure.

Usage

1
GetTDewPointFromVapPres(TDryBulb, VapPres)

Arguments

TDryBulb

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

VapPres

A numeric vector of partial pressure of water vapor in moist air in Psi [IP] or Pa [SI]

Value

A numeric vector of dew-point temperature in degreeF [IP] or degreeC [SI]

Note

References

ASHRAE Handbook - Fundamentals (2017) ch. 1 eqn. 5 and 6

Examples

1
2
3
4
5
SetUnitSystem("IP")
GetTDewPointFromVapPres(70:80, seq(0.0149, 0.0249, 0.001))

SetUnitSystem("SI")
GetTDewPointFromVapPres(70:80, 12581:12591)

psychrolib documentation built on May 29, 2021, 9:11 a.m.