Description Usage Arguments Details Examples
View source: R/fao_penman_monteith.R
Get vapor pressure from RHmean and temperature
1 | get_ea_from_RHmean(RHmean, Tmax_C, Tmin_C)
|
RHmean |
Mean relative humidity, pct (0-100) |
Tmax_C |
Max daily temperature, deg C |
Tmin_C |
Min daily temperature, deg C |
Calculate the actual vapor pressure from mean relative humidity and max and min daily temperature. The calculation is as:
ea = RHmean / 100 * (es(Tmax_C) + es(Tmin_C)) / 2 (FAO 56 Eq. 19)
es(T) is the saturation vapor pressure at that temperature. The function
get_es(T_C)
is used for saturation vapor pressure.
1 | get_ea_from_RHmean(RHmean = 68, Tmax_C = 25, Tmin_C = 18)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.