ET0_PT | R Documentation |
Calculates daily reference evapotranspiration amounts using the Priestley-Taylor method.
ET0_PT(Tavg, Rn, G = NULL, Coeff = 1.26)
Tavg |
A vector, 1-column matrix or data frame with daily average air temperature. |
Rn |
A vector, 1-column matrix or data frame with daily net radiation in
|
G |
Optional. A vector, 1-column matrix or data frame with daily soil heat flux
in |
Coeff |
Single number defining the Priestley and Taylor coefficient. Default is 1.26. |
A matrix object of the daily potential evapotranspiration values in millimetres.
# See `?DataForCWB` for more on this data set
Tavg <- DataForCWB[, 2]
Rn <- DataForCWB[, 6]
G <- DataForCWB[, 9]
ET0_PT(Tavg = Tavg, Rn = Rn, G = G)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.