Learn R Programming

Evapotranspiration (version 1.7)

ET.Romanenko: Romanenko Formulation

Description

Implementing the Romanenko formulation for estimating potential evapotranspiration.

Usage

## S3 method for class 'Romanenko':
ET(data, constants, \dots)

Arguments

data
A list of data in class "Romanenko" which contains the following items (climate variables) required by Romanenko formulation: "Tmax", "Tmin", "RHmax" and "RHmin"
constants
A list named "constants" consists of constants required for the calculation of Romanenko formulation which must contain the following items: "Elev" - ground elevation above mean sea level in m, "lambda" - latent heat of vaporisation = 2.45 MJ.kg^-1,
...
Dummy for generic function, no need to define.

Value

  • This function returns a object of class Romanenko. Such objects are list with components:
  • ET.DailyA zoo object containing daily aggregated estimations of Romanenko potential evapotranspiration.
  • ET.MonthlyA zoo object containing monthly aggregated estimations of Romanenko potential evapotranspiration.
  • ET.AnnualA zoo object containing annually aggregated estimations of Romanenko potential evapotranspiration.
  • ET.MonthlyAveA zoo object containing monthly averaged estimations of daily Romanenko potential evapotranspiration.
  • ET.AnnualAveA zoo object containing annually averaged estimations of daily Romanenko potential evapotranspiration.
  • ET_formulationA character string containing the name of the formulation used which equals to "Romanenko".
  • ET_typeA character string containing the type of the estimation obtained which is "Potential Evapotranspiration".

Details

This formulation provides a single calculation method with no alternatives available.

References

OUDIN, L., HERVIEU, F., MICHEL, C., PERRIN, C., ANDREASSIAN, V., ANCTIL, F. & LOUMAGNE, C. 2005. Which potential evapotranspiration input for a lumped rainfall-runoff model?: Part 2-Towards a simple and efficient potential evapotranspiration model for rainfall-runoff modelling. Journal of Hydrology, 303, 290-306.

Examples

Run this code
# Use processed existing data set from kent Town, Adelaide
data("processeddata")
data("constants")

# Set data class to be "Romanenko" to call function
funname <- "Romanenko" 
class(data) <- funname 

# Call generic function ET(data, ...) with class "Romanenko"
results <- ET(data, constants)

Run the code above in your browser using DataLab