93ben
November 1, 2020, 12:45pm
1
@corrineb any chance you could implement the BOM Australia’s feels like formula for us Australians?
AT = Ta + 0.33•ρ − 0.70•ws − 4.00
and
ρ = rh • 6.105 • e(17.27*Ta/(237.7+Ta))
where:
AT is the Apparent Temperature in oC;
Ta is the Dry bulb Temperature in oC;
ρ is the water vapor pressure (hPa);
ws is the wind speed (m/s) at 10 meter above the ground;
rh is the Relative Humidity (%).
Reference here: http://www.bom.gov.au/info/thermal_stress/#atapproximation and there’s a simple calculator here: https://www.vcalc.com/wiki/rklarsen/Australian+Apparent+Temperature+(AT)
93ben
November 1, 2020, 9:44pm
2
2 Likes
93ben
November 16, 2020, 2:14pm
3
Ok I have written a php script that gets the Australian Feels Like temperature for those who get coding…
$Ta = Dry bulb temperature (°C)
$rh = Relative Humidity [%]
$ws_kmh = Wind speed (km/h)
<?php
function getAUApparentTemp ($Ta,$rh,$ws_kmh)
{
$e = $rh / 100 * 6.105 * exp ( 17.27 * $Ta / ( 237.7 + $Ta ) );
$ws = $ws_kmh/3.6;
$AT = $Ta + 0.33*$e - 0.70*$ws - 4.00;
return round($AT,1);
}
?>
2 Likes
craig3
January 8, 2022, 10:26am
4
For all those Aussies who are tired of waiting (and getting no response) and would like to see the Australian Feels Like temp displayed, have a gander at the Smartmixin app SmartMixin Weather on the App Store or https://play.google.com/store/apps/details?id=com.vtoupet.smartmixin&hl=en_AU&gl=US . You have the option of choosing Australian Feels like temp as well as Humidex or Heat Index
I have been liaising with Vincent the developer as it wasn’t calculating correctly. It now works a treat and the app shows a great deal of data, very different to the Tempest app. I have no affiliation, just really like it. I paid for the premium version which was all of about $15 AUD
Cheers
2 Likes
Mods - I think this request can be merged with this request as they are essentially asking for the same thing just for 2 different locations / formulas (Canada and Australia).