Learn R Programming

Evapotranspiration (version 1.7)

ET.Linacre: Linacre Formulation

Description

Implementing the Linacre formulation for estimating actual evapotranspiration.

Usage

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

Arguments

data
A list of data in class "Linacre" which contains the following items (climate variables) required by Linacre formulation: "Tmax", "Tmin" and "Tdew"
constants
A list named "constants" consists of constants required for the calculation of Linacre 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 Linacre. Such objects are list with components:
  • ET.DailyA zoo object containing daily aggregated estimations of Linacre actual evapotranspiration.
  • ET.MonthlyA zoo object containing monthly aggregated estimations of Linacre actual evapotranspiration.
  • ET.AnnualA zoo object containing annually aggregated estimations of Linacre actual evapotranspiration.
  • ET.MonthlyAveA zoo object containing monthly averaged estimations of daily Linacre actual evapotranspiration.
  • ET.AnnualAveA zoo object containing annually averaged estimations of daily Linacre actual evapotranspiration.
  • ET_formulationA character string containing the name of the formulation used which equals to "Linacre".
  • ET_typeA character string containing the type of the estimation obtained which is "Actual Evapotranspiration".

Details

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

References

LINACRE, E. T. 1977. A simple formula for estimating evaporation rates in various climates, using temperature data alone. Agricultural meteorology, 18, 409-424.

Examples

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

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

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

Run the code above in your browser using DataLab