PET | R Documentation |
Calculate your potential evapotranspiration series. This module was
design to provide a simple and straight forward way to calculate
one of the inputs for the soil routine (to show how does it works), but for real
world application I strongly recommend the use of the specialized
Evapotranspiration
package.
PET( model, hemis, inputData, elev, param )
model |
numeric value with model option:
|
hemis |
numeric value indicating the hemisphere:
|
inputData |
numeric matrix with the following columns: Calder's model
|
elev |
numeric vector with the following values: Calder's model
|
param |
numeric vector with the following values: Calder's model
|
Numeric vector with the potential evapotranspiration series.
Calder, I.R., Harding, R.J., Rosier, P.T.W., 1983. An objective assessment of soil-moisture deficit models. J. Hydrol. 60, 329–355. https://doi.org/10.1016/0022-1694(83)90030-6
# The following is a toy example. I strongly recommend to see # the package vignettes in order to improve your skills on HBV.IANIGLA ## Run the model for a year in the southern hemisphere potEvap <- PET(model = 1, hemis = 1, inputData = as.matrix(1:365), elev = c(1000, 1500), param = c(4, 0.5))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.