SatVapPresSlope {EcoHydRology}R Documentation

Slope of the relationship between Saturation Vapor Pressure and Temperature

Description

Calculates the slope of the Saturation Vapor Pressure vs T (kPa/K)

Usage

SatVapPresSlope(temp_C)

Arguments

temp_C

Air temperature in degrees C

Author(s)

Josephine Archibald

References

Dingman, S. Lawrence. 2002. Physical Hydrology. Waveland Press Inc.

Examples


## The function is currently defined as
function (temp_C) 
{
    (2508.3/(temp_C + 237.3)^2) * exp(17.3 * temp_C/(temp_C + 
        237.3))
  }

[Package EcoHydRology version 0.4.13 Index]