calcDewPoint.B: Calculates dew point from ambient temperature and relative...

Description Usage Arguments Value Examples

View source: R/dewPoint.R

Description

Calculation of dew point using the Mark G. Lawrence approach given in the following paper: * "The Relationship between Relative Humidity and the Dewpoint Temperature in Moist Air: A Simple Conversion and Applications", DOI: <https://doi.org/10.1175/BAMS-86-2-225>, URL: <https://journals.ametsoc.org/doi/pdf/10.1175/BAMS-86-2-225>

Usage

1
calcDewPoint.B(RH, temp)

Arguments

RH

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

temp

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

Value

dew point value (double)

Examples

1
2
3
4
library(frost)
temp <- 25
rh <- 54
calcDewPoint(rh,temp,mode="B")

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