You are here: Symbol Reference > Monnit Namespace > HumidityGPPBase Class > HumidityGPPBase Methods
HumidityGPPBase Methods
HumidityGPPBase Class  Legend  Public Methods  Send Feedback

The methods of the HumidityGPPBase class are listed here.

 
Name 
Description 
 
This is Create, a member of class HumidityGPPBase. 
 
float calc_dewpoint(float h, float t) /-------------------------------------------------------------------- / calculates dew point / input: HumiditySHT25 [%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;