calcEto {AquaBEHER} | R Documentation |
Potential Evapotranspiration
Description
This function calculates Penman-Monteith, Priestley Taylor and Hargreaves-Samani Potential Evapotranspiration using the method described by Allen et al, (1998)
Usage
calcEto(data, method = "PM", crop = "short", Zh = NULL)
Arguments
data |
a dataframe containing the required climate variables: columns must contain the following parameters:
|
method |
|
crop |
|
Zh |
|
Details
Penman-Monteith: If all variables of Tmax, Tmin, Rs, either U2 or Uz, and either RHmax and RHmin or RH or Tdew are available and crop surface (short or tall) is specified in argument the Penman-Monteith FAO56 formulation is used (Allen et al.1998).
Priestley-Taylor: If all variables of Tmax, Tmin, Rs and either RHmax and RHmin or RH or Tdew are available the Priestley-Taylor formulation is used (Priestley and Taylor, 1972).
Hargreaves-Samani: If only Tmax and Tmin are available, the Hargreaves-Samani formulation is used or estimating reference crop evapotranspiration (Hargreaves and. Samani, 1985).
Value
The function generates a list containing the following objects:
ET.Daily:
daily estimations of reference crop evapotranspiration
(mm/day)
Ra.Daily:
daily estimations of extraterristrial radiation
(MJ/m2/day)
Slope.Daily:
daily estimations of slope of vapour pressure curve
(kPa/°C)
ET.type:
type of the estimation obtained
References
Allen, R.G., L.S. Pereira, D. Raes, and M. Smith. 1998. ‘Crop evapotranspiration-Guidelines for Computing Crop Water requirements FAO Irrigation and Drainage Paper 56’. FAO, Rome 300: 6541.
Allen, R. G. 2005. The ASCE standardized reference evapotranspiration equation. Amer Society of Civil Engineers.
Guo, Danlu & Westra, Seth & Maier, Holger. (2016). An R package for modelling actual, potential and reference evapotranspiration. Environmental Modelling & Software. 78. 216-224. 10.1016/j.envsoft.2015.12.019.
Hargreaves, G.H.Samani, Z.A. 1985, Reference crop evapotranspiration from ambient air temperature. American Society of Agricultural Engineers.
Priestley, C. & Taylor, R. 1972, On the assessment of surface heat flux and evaporation using large-scale parameters'. Monthly Weather Review, vol. 100, no. 2, pp. 81-92.
See Also
climateData, calcWatBal, calcSeasCal
Examples
# load example data:
data(climateData)
calcEto(climateData, method = "HS")
# load example data:
data(AgroClimateData)
calcEto(AgroClimateData, method = "PM", crop = "short")