Edit

Share via


WeatherHelper.GetRelativeHumidityFromActualAirTemperature Method

Definition

Overloads

GetRelativeHumidityFromActualAirTemperature(Temperature, RelativeHumidity, Temperature)

Calculates a corrected relative humidity. This is useful if you have a temperature/humidity sensor that is placed in a location where the temperature is different from the real ambient temperature (like it sits inside a hot case) and another temperature-only sensor that gives more reasonable ambient temperature readings. Do note that the relative humidity is dependent on the temperature, because it depends on how much water a volume of air can contain, which increases with temperature.

GetRelativeHumidityFromActualAirTemperature(Temperature, Ratio, Temperature)

Calculates a corrected relative humidity. This is useful if you have a temperature/humidity sensor that is placed in a location where the temperature is different from the real ambient temperature (like it sits inside a hot case) and another temperature-only sensor that gives more reasonable ambient temperature readings. Do note that the relative humidity is dependent on the temperature, because it depends on how much water a volume of air can contain, which increases with temperature.

GetRelativeHumidityFromActualAirTemperature(Temperature, RelativeHumidity, Temperature)

Calculates a corrected relative humidity. This is useful if you have a temperature/humidity sensor that is placed in a location where the temperature is different from the real ambient temperature (like it sits inside a hot case) and another temperature-only sensor that gives more reasonable ambient temperature readings. Do note that the relative humidity is dependent on the temperature, because it depends on how much water a volume of air can contain, which increases with temperature.

public static UnitsNet.RelativeHumidity GetRelativeHumidityFromActualAirTemperature (UnitsNet.Temperature airTemperatureFromHumiditySensor, UnitsNet.RelativeHumidity relativeHumidityMeasured, UnitsNet.Temperature airTemperatureFromBetterPlacedSensor);
static member GetRelativeHumidityFromActualAirTemperature : UnitsNet.Temperature * UnitsNet.RelativeHumidity * UnitsNet.Temperature -> UnitsNet.RelativeHumidity
Public Shared Function GetRelativeHumidityFromActualAirTemperature (airTemperatureFromHumiditySensor As Temperature, relativeHumidityMeasured As RelativeHumidity, airTemperatureFromBetterPlacedSensor As Temperature) As RelativeHumidity

Parameters

airTemperatureFromHumiditySensor
UnitsNet.Temperature

Temperature measured by the humidity sensor

relativeHumidityMeasured
UnitsNet.RelativeHumidity

Humidity measured

airTemperatureFromBetterPlacedSensor
UnitsNet.Temperature

Temperature measured by better placed sensor

Returns

UnitsNet.RelativeHumidity

A corrected humidity. The value will be lower than the input value if the better placed sensor is cooler than the "bad" sensor.

Applies to

GetRelativeHumidityFromActualAirTemperature(Temperature, Ratio, Temperature)

Calculates a corrected relative humidity. This is useful if you have a temperature/humidity sensor that is placed in a location where the temperature is different from the real ambient temperature (like it sits inside a hot case) and another temperature-only sensor that gives more reasonable ambient temperature readings. Do note that the relative humidity is dependent on the temperature, because it depends on how much water a volume of air can contain, which increases with temperature.

public static UnitsNet.Ratio GetRelativeHumidityFromActualAirTemperature (UnitsNet.Temperature airTemperatureFromHumiditySensor, UnitsNet.Ratio relativeHumidityMeasured, UnitsNet.Temperature airTemperatureFromBetterPlacedSensor);
static member GetRelativeHumidityFromActualAirTemperature : UnitsNet.Temperature * UnitsNet.Ratio * UnitsNet.Temperature -> UnitsNet.Ratio
Public Shared Function GetRelativeHumidityFromActualAirTemperature (airTemperatureFromHumiditySensor As Temperature, relativeHumidityMeasured As Ratio, airTemperatureFromBetterPlacedSensor As Temperature) As Ratio

Parameters

airTemperatureFromHumiditySensor
UnitsNet.Temperature

Temperature measured by the humidity sensor

relativeHumidityMeasured
UnitsNet.Ratio

Humidity measured

airTemperatureFromBetterPlacedSensor
UnitsNet.Temperature

Temperature measured by better placed sensor

Returns

UnitsNet.Ratio

A corrected humidity. The value will be lower than the input value if the better placed sensor is cooler than the "bad" sensor.

Applies to