saturation_pressure_H2O {aiRthermo} | R Documentation |
Saturation Pressure
Description
This function returns the saturation pressure (Pa) from a given array of temperatures (K). It uses approximate equations 5.67 and 5.70 in Bohren Albrecht, 1998.
Usage
saturation_pressure_H2O(Temps)
Arguments
Temps |
A vector with temperature values in Kelvin. |
Details
Saturation pressure of water vapour e_s
is computed over ice/water depending whether the temperature is over/under 273.15 K (0 degree Celsius) at every element of the array.
Value
This function returns a vector with saturation pressure values (Pa).
References
Bohren, C.F., & Albrecht, B. A. (1998). Atmospheric thermodynamics. Atmospheric thermodynamics. Publisher: New York; Oxford: Oxford University Press, 1998. ISBN: 0195099044. Equations 5.67 and 5.70.
Examples
data(RadiosondeA)
aTs<-C2K(RadiosondeA[,3])
esats<-saturation_pressure_H2O(aTs)
[Package aiRthermo version 1.2.1 Index]