C# Mine
ContentsIndexHome
PreviousUpNext
HumidityBase.CalcHumidity Method
Syntax
C#
public static double CalcHumidity(double humidityTicks, double temperatureC);

*p_temperature = t_C; //return temperature [°C] *p_humidity = rh_true; //return humidity[%RH] } /-------------------------------------------------------------------- float calc_dewpoint(float h, float t) /-------------------------------------------------------------------- / calculates dew point / input: humidity [%RH], temperature [°C] / output: dew point [°C] { float logEx, dew_point; logEx = 0.66077 + 7.5 * t / (237.3 + t) + (log10(h) - 2); dew_point = (logEx - 0.66077) * 237.3 / (0.66077 + 7.5 - logEx); return dew_point;

Copyright (c) 2022. All rights reserved.
What do you think about this topic? Send feedback!