calculate_relative_humidity: Function to calculate relative humidity from air temperature...

View source: R/absolute_humidity.R

calculate_relative_humidityR Documentation

Function to calculate relative humidity from air temperature and dew point temperature.

Description

Function to calculate relative humidity from air temperature and dew point temperature.

Usage

calculate_relative_humidity(air_temp, dewpoint, m = 7.591386, t_n = 240.7263)

Arguments

air_temp

Air temperature in degrees Celsius.

dewpoint

Dew point temperature in degrees Celsius.

m, t_n

Constants for the approximation. The default values are accurate in temperatures which are experienced in the ambient atmosphere.

Value

Numeric vector, relative humidity in percentage (%).

Author(s)

Stuart K. Grange

Examples


# Calculate relative humidity in percent with degrees C
calculate_relative_humidity(10.7, 6.11)


skgrange/threadr documentation built on April 15, 2024, 9:35 p.m.