Heat Index calculation from meteobridge

This section covers the Meteobridge PRO, PRO2, NANO SD, Raspberry Pi and VM platforms exclusively

Moderator: Mattk

Post Reply
zakos52
Expert Boarder
Expert Boarder
Posts: 104
Joined: Wed Jun 16, 2021 7:26 pm

Heat Index calculation from meteobridge

Post by zakos52 »

Ι would like you to please inform me about the minimum values that Temperature, Humidity and Dew point must have in order to calculate the heat index from meteobridge.

I notice that in meteobridge the value of the Heat Index is almost always equal to the outside temperature!

I should stress that the Weatherlink program always calculates the Heat Index for every value of temperature, humidity, and dew point!

Thanks

My system is
Platform: Raspberry Pi 4 Model B (4GB RAM)
Storage: ATP SLC 2GB
SWversion: Meteobridge 5.7 (Oct 18 2023, build 3047), FW 1.3
Weather Station: Davis Vantage Vue with data logger and weatherlink software
User avatar
admin
Platinum Boarder
Platinum Boarder
Posts: 7854
Joined: Mon Oct 01, 2007 10:51 pm

Re: Heat Index calculation from meteobridge

Post by admin »

Code: Select all

double heatindexfloat (double temp, double hum)
{
  double t, t2;
  double h, h2;

  t = C2F (temp);
  t2 = t * t;
  h = hum;
  h2 = h * h;

  if ((t >= 80.0) && (hum >= 40.0))
    return F2C (-42.379 + (2.04901523 * t) + (10.14333127 * h) - (0.22475541 * h * t)
                - (0.00683783 * t2) - (0.05481717 * h2) + (0.00122874 * t2 * h)
                + (0.00085282 * t * h2) - (0.00000199 * t2 * h2));
  else
    return temp;
}
Bildschirm­foto 2023-10-25 um 01.31.53.png
Bildschirm­foto 2023-10-25 um 01.31.53.png (204.49 KiB) Viewed 897 times
Post Reply