PET {HBV.IANIGLA} | R Documentation |
Potential evapotranspiration models
Description
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.
Usage
PET(
model,
hemis,
inputData,
elev,
param
)
Arguments
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
|
Value
Numeric vector with the potential evapotranspiration series.
References
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
Examples
# 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))