ET.Abtew {Evapotranspiration} | R Documentation |
Abtew Formulation
Description
Implementing the Abtew formulation for estimating actual evapotranspiration.
Usage
## S3 method for class 'Abtew'
ET(data, constants, ts="daily", solar="sunshine hours",
message="yes", AdditionalStats="yes", save.csv="no", ...)
Arguments
data |
A list of data in class "Abtew" which contains the following items (climate variables) required by Abtew formulation: |
constants |
A list named |
ts |
Must be either |
solar |
Must be either |
message |
Must be either |
AdditionalStats |
"yes" or "no" indicating whether monthly averaged and annual averaged ET should be calculated. |
save.csv |
Must be either |
... |
Dummy for generic function, no need to define. |
Details
The alternative calculation options can be selected through argument solar
, please see Arguments
for details.
Value
The function generates a list containing the following components:
ET.Daily |
Daily aggregated estimations of Abtew actual evapotranspiration. |
ET.Monthly |
Monthly aggregated estimations of Abtew actual evapotranspiration. |
ET.Annual |
Annually aggregated estimations of Abtew actual evapotranspiration. |
ET.MonthlyAve |
Monthly averaged estimations of daily Abtew actual evapotranspiration. |
ET.AnnualAve |
Annually averaged estimations of daily Abtew actual evapotranspiration. |
ET_formulation |
Name of the formulation used which equals to |
ET_type |
Type of the estimation obtained which is |
message1 |
A message to inform the users about how solar radiation has been calculated by using which data. |
Author(s)
Danlu Guo
References
Abtew, W. 1996. Evapotranspiration measurements and modeling for three wetland systems in south florida. Wiley Online Library.
See Also
ET
,processeddata
,defaultconstants
,constants
Examples
# Use processed existing data set and constants from kent Town, Adelaide
data("processeddata")
data("constants")
# Call ET.Abtew under the generic function ET
results <- ET.Abtew(processeddata, constants,ts="daily", solar="sunshine hours",
message="yes", AdditionalStats="yes", save.csv="no")