calculateET0 {PMEvapotranspiration}R Documentation

PMEvapotranspiration

Description

FAO-56 Penman-Monteith evapotranspiration

Usage

calculateET0(T_max, T_min, Latitude, altitude, RH_min, RH_max, u2, n, J)

Arguments

T_max

Maximum temperature in degree Celsius

T_min

Minimum temperature in degree Celsius

Latitude

Latitude in decimal degree

altitude

altitude in meter

RH_min

Minimum Relative humidity in percentage

RH_max

Maximum Relative humidity in percentage

u2

The average wind speed (m/s) measured at 2 m above the ground level

n

Actual daily sunshine duration

J

number of the day in the year between 1 (1 January) and 365 or 366 (31 December)

Value

Returns a list containing the calculated reference evapotranspiration (ET0) and other intermediate values used in the calculation. The list includes:

References

#'

Examples

{
calculateET0(T_max = 25, T_min = 15, Latitude = 45,
 altitude = 100, RH_min = 20,
 RH_max = 80, u2 = 2, n = 10, J = 150)
}

[Package PMEvapotranspiration version 0.1.0 Index]