ET0_HS {CropWaterBalance} | R Documentation |
Reference Evapotranspiration Using Hargreaves-Samani Method
Description
Calculates daily reference evapotranspiration amounts using the Hargreaves-Samani method.
Usage
ET0_HS(Ra, Tavg, Tmax, Tmin)
Arguments
Ra |
A |
Tavg |
A |
Tmax |
A |
Tmin |
A |
Value
A matrix
of 1-column with the same length as 'the input values with the
daily potential evapotranspiration values in millimetres.
See Also
Examples
# See `?DataForCWB` for more on this data set
Tavg <- DataForCWB[, 2]
Tmax <- DataForCWB[, 3]
Tmin <- DataForCWB[, 4]
Ra <- DataForCWB[, 5]
ET0_HS(Ra = Ra, Tavg = Tavg, Tmax = Tmax, Tmin = Tmin)
[Package CropWaterBalance version 0.2.0 Index]