mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Weather - Fix number in fnc_calculateWindChill.sqf
(#9340)
Update fnc_calculateWindChill.sqf
This commit is contained in:
parent
9c25fea548
commit
fabd9c5fdb
@ -23,5 +23,5 @@ params ["_t", "_v"];
|
||||
if (_t > 10) exitWith { _t };
|
||||
if (_v < 1.39) exitWith { _t };
|
||||
|
||||
_v = _v * 3,6; // wind speed in km/h
|
||||
_v = _v * 3.6; // wind speed in km/h
|
||||
(13.12 + 0.6215 * _t - 11.37 * _v ^ 0.16 + 0.3965 * _t * _v ^ 0.16)
|
||||
|
Loading…
Reference in New Issue
Block a user