dewpoint | R Documentation |
Calculates dew or frost point temperature
dewpoint(ea, tc = 11, ice = TRUE)
ea |
vapour pressure (kPa) |
ice |
optional logical indicating whether to return frost point temperature if output is less than zero degrees C (TRUE = yes) |
air |
temperature (degrees C) |
dew or frost point temperature (degrees C)
# Comparison of frost and dew point ea <- c(10:100) / 50 tdew <- dewpoint(ea, ice = F) tfrost <- dewpoint(ea) plot(tfrost~ea, type = "l", col = "blue", ylim = c(-20,20)) par(new = T) plot(tdew~ea, type = "l", col = "red", ylim = c(-20,20))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.