ET.GrangerGray {Evapotranspiration} | R Documentation |
Granger-Gray Formulation
Description
Implementing the Granger-Gray formulation for estimating actual areal evapotranspiration.
Usage
## S3 method for class 'GrangerGray'
ET(data, constants, ts="daily",
solar="sunshine hours", windfunction_ver=1948, alpha=0.23,
message="yes", AdditionalStats="yes", save.csv="no", ...)
Arguments
data |
A list of data which contains the following items (climate variables) required by Granger-Gray formulation: |
constants |
A list named |
ts |
Must be either |
solar |
Must be either |
windfunction_ver |
The version of Penman wind function that will be used within the Penman formulation. Must be either |
alpha |
Any numeric value between 0 and 1 (dimensionless), albedo of evaporative surface representing the portion of the incident radiation that is reflected back at the surface. |
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 arguments solar
and windfunction_ver
, please see Arguments
for details.
User-defined evaporative surface is allowed through argument alpha
, please see Arguments
for details.
Value
The function generates a list containing the following components:
ET.Daily |
Daily aggregated estimations of Granger-Gray actual areal evapotranspiration. |
ET.Monthly |
Monthly aggregated estimations of Granger-Gray actual areal evapotranspiration. |
ET.Annual |
Annually aggregated estimations of Granger-Gray actual areal evapotranspiration. |
ET.MonthlyAve |
Monthly averaged estimations of daily Granger-Gray actual areal evapotranspiration. |
ET.AnnualAve |
Annually averaged estimations of daily Granger-Gray actual areal 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. |
message2 |
A message to inform the users about which version of the Penman wind function has been used. |
Author(s)
Danlu Guo
References
McMahon, T., Peel, M., Lowe, L., Srikanthan, R. & McVicar, T. 2012. Estimating actual, potential, reference crop and pan evaporation using standard meteorological data: a pragmatic synthesis. Hydrology and Earth System Sciences Discussions, 9, 11829-11910.
Penman, H. L. 1948. Natural evaporation from open water, bare soil and grass. Proceedings of the Royal Society of London. Series A. Mathematical and Physical Sciences, 193, 120-145.
Penman, H. L. 1956. Evaporation: An introductory survey. Netherlands Journal of Agricultural Science, 4, 9-29
See Also
ET
,processeddata
,defaultconstants
,constants
,ET.Penman
Examples
# Use processed existing data set and constants from kent Town, Adelaide
data("processeddata")
data("constants")
# Call ET.GrangerGray under the generic function ET
results <- ET.GrangerGray(processeddata, constants, ts="daily",
solar="sunshine hours", windfunction_ver=1948, alpha=0.23,
message="yes", AdditionalStats="yes", save.csv="no")