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

Description Usage Arguments Value Examples

View source: R/dewPoint.R

Description

The following formula is used for dew point estimation: $$ (RH/100 )^(1/8) * (110+temp) -110) $$ ,where RH is relative humidity and temp is ambient temperature. The formula was taken from this wikipedia page: <https://es.wikipedia.org/wiki/Punto_de_roc

Usage

1
calcDewPoint.A(RH, temp)

Arguments

RH

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

temp

[°C] environmental temperature, an integer or double value between -20 and 60 °C

Value

dew point value (double)

Examples

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

anadiedrichs/frost documentation built on March 22, 2021, 12:19 a.m.