calcDewPoint: Dew point estimation given relative humidity and temperature

Description Usage Arguments Value Examples

View source: R/dewPoint.R

Description

This function is a wrapper to access to one of the dew point calculation methods offered in this package. Read more about the method in calcDewPoint.A, calcDewPoint.B,calcDewPoint.C functions.

Usage

1
calcDewPoint(RH, temp, mode = "A")

Arguments

RH

[in percentage] an integer or double value between 0 and 100.

temp

[<c2><b0>C] an integer or double value between -20 and 60 <c2><b0>C.

mode

string values "A", "B" or "C". Default "A". * Mode "A" : calls calcDewPoint.A function * Mode "B" : calls calcDewPoint.B function * Mode "C": calls calcDewPoint.C function

Value

dew point value (double)

Examples

1
2
3
4
temp <- 25
rh <- 54
calcDewPoint(rh,temp) # it takes mode = "A" by default
calcDewPoint(rh,temp,mode="B")

frost documentation built on May 2, 2019, 10:19 a.m.