Page 1 of 1

Wind Chill, Apparent Temperature or Feels Like Temp

Posted: Thu Dec 07, 2017 6:23 am
by WyoDog
I have a question about ssGauges - Feels Like or Apparent Temp.

I have been searching through this forum for 'wind chill' and it seems to me that these three terms are being used somewhat interchangeably. Depending on your language choice you will see either wind chill or apparent or feels like.

As we know these three terms are quite different. Wind chill developed by USSR before the second world war. Feels Like and Apparent use temp, wind speed or humidity (for different temp ranges) and then there's RealFeel a proprietary algorithm of AcuRite (AccuWeather) that uses 7 different parameters.

It seems to me that RealFeel is the most desirable calculation of what the current conditions actually 'feel' like, but good luck wrestling that away from AcuRite.

In a effort to simplify terminology (at least in my head) which algorithm is used is used to calculate the value displayed as
Apparent Temperature on mouse tip and Feels Like on the gauge. (in English US)

I understand that Mark provided the original code for the ssGauges. Any idea what we are displaying? Jachym?

Your thoughts?

Re: Wind Chill, Apparent Temperature or Feels Like Temp

Posted: Thu Dec 07, 2017 11:38 am
by Jachym
Wind chill is not the same as feels like/apparent.

This is only used in the Current block and is calculated differently.

Apparent temp / Feels like are equivalent and usage of them depends on UK/US english. US strings use "feels like". This will differ between websites, but should be the same on single MT website because it uses the same language file.

Apparent/feels like:

Code: Select all

// Apparent temperature calculation
    // accepts temperature [C], humidity [%], wind speed [m/s]
    // returns apparent temperature [C]
    function apparent($apparentT,$apparentH,$apparentW){
        $e = ($apparentH/100)*6.105*pow(2.71828, ((17.27*$apparentT)/(237.7+$apparentT)));
        $calcA = round(($apparentT + 0.33*$e-0.7*$apparentW-4),1);
        return $calcA;
    }

Re: Wind Chill, Apparent Temperature or Feels Like Temp

Posted: Sat Dec 16, 2017 1:08 am
by BobW55
A few years ago here in the USA there was a push to change from the old "WIND CHILL" to Apparent or "Feels Like" temperature. Most TV news weather now only reports the FEELS LIKE value, a few report Apparent.
I know I switched off the selection in my SS-gauges to only show Apparent temperature, Dew point, Wind Chill, and Heat Index pop up on the graph.

Re: Wind Chill, Apparent Temperature or Feels Like Temp

Posted: Sat Dec 16, 2017 10:09 am
by Jachym
The problem with wind chill is that it does not take into account humidity and is only defined for temperatures below 10°C (50F)