sat_vapor_pressure_ice | R Documentation |
This function solves for the saturation vapor pressure of ice using only the temperature of the water in either units of degrees Celsius, degrees Fahrenheit, or Kelvin.
sat_vapor_pressure_ice(Temp, units = c("SI", "Eng", "Absolute"))
Temp |
numeric vector that contains the temperature (degrees Celsius, degrees Fahrenheit, or Kelvin) |
units |
character vector that contains the system of units [options are
|
The simplified equation is expressed as
P_s = \exp{\frac{43.494 - \frac{6545.8}{t + 278}}{(t + 868)^2}}
for (t <= 0 C)
the saturation vapor pressure (Pa or psi)
the ice temperature, degrees Celsius
the saturation vapor pressure for ice as a numeric vector. The unit
for SI
and Absolute
is Pascal (Pa), but the unit for Eng
is pounds per square inch (psi). The units are not returned.
Irucka Embry
Huang, J. (2018). "A Simple Accurate Formula for Calculating Saturation Vapor Pressure of Water and Ice", Journal of Applied Meteorology and Climatology, 57(6), 1265-1272. Retrieved Nov 4, 2021, https://web.archive.org/web/20221024040058/https://journals.ametsoc.org/view/journals/apme/57/6/jamc-d-17-0334.1.xml. Used the Internet Archive: Wayback Machine archived version for acceptance into CRAN. Used the Internet Archive: Wayback Machine archived version for acceptance into CRAN.
# Example from the Reference
library(iemisc)
sat_vapor_pressure_ice(Temp = seq(from = -100, to = 0, by = 20), units = "SI")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.