ET.SzilagyiJozsa {Evapotranspiration} | R Documentation |
Szilagyi-Jozsa Formulation
Description
Implementing the Szilagyi-Jozsa formulation for estimating actual evapotranspiration
Usage
## S3 method for class 'SzilagyiJozsa'
ET(data, constants, ts="daily", solar="sunshine hours", wind="yes",
windfunction_ver=1948, alpha=0.23, z0=0.2, message="yes", AdditionalStats="yes",
save.csv="no", ...)
Arguments
data |
A list of data which contains the following items (climate variables) required by Szilagyi-Jozsa formulation: |
constants |
A list named |
ts |
Must be either |
solar |
Must be either |
wind |
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. |
z0 |
Any value (metres), roughness height of the evaporative 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
, wind
and windfunction_ver
, please see Arguments
for details.
User-defined evaporative surface is allowed through arguments alpha
and z0
, please see Arguments
for details.
Value
The function generates a list containing the following components:
ET.Daily |
Daily aggregated estimations of Szilagyi-Jozsa actual evapotranspiration. |
ET.Monthly |
Monthly aggregated estimations of Szilagyi-Jozsa actual evapotranspiration. |
ET.Annual |
Annually aggregated estimations of Szilagyi-Jozsa actual evapotranspiration. |
ET.MonthlyAve |
Monthly averaged estimations of daily Szilagyi-Jozsa actual evapotranspiration. |
ET.AnnualAve |
Annually averaged estimations of daily Szilagyi-Jozsa actual evapotranspiration. |
ET_formulation |
Name of the formulation used which equals to |
ET_type |
A character string containing the 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 if actual wind data has been used in the calculations or alternative calculations has been performed without wind data, and which version of the Penman wind function has been used. |
Author(s)
Danlu Guo
References
Szilagyi, J. 2007. On the inherent asymmetric nature of the complementary relationship of evaporation. Geophysical Research Letters, 34, L02405.
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.
Valiantzas, J. D. 2006. Simplified versions for the Penman evaporation equation using routine weather data. Journal of Hydrology, 331, 690-702.
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.SzilagyiJozsa under the generic function ET
results <- ET.SzilagyiJozsa(processeddata, constants, ts="daily",
solar="sunshine hours", wind="yes", windfunction_ver=1948, alpha=0.23, z0=0.2,
message="yes", AdditionalStats="yes", save.csv="no")