mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e2ac18a05d
* advanced_ballistics * advanced_fatigue * advanced_throwing * ai * aircraft * arsenal * atragmx * attach * backpacks * ballistics * captives * cargo * chemlights * common * concertina_wire * cookoff * dagr * disarming * disposable * dogtags * dragging * explosives * fastroping * fcs * finger * frag * gestures * gforces * goggles * grenades * gunbag * hearing * hitreactions * huntir * interact_menu * interaction * inventory * kestrel4500 * laser * laserpointer * logistics_uavbattery * logistics_wirecutter * magazinerepack * map * map_gestures * maptools * markers * medical * medical_ai * medical_blood * medical_menu * microdagr * minedetector * missileguidance * missionmodules * mk6mortar * modules * movement * nametags * nightvision * nlaw * optics * optionsmenu * overheating * overpressure * parachute * pylons * quickmount * rangecard * rearm * recoil * refuel * reload * reloadlaunchers * repair * respawn * safemode * sandbag * scopes * slideshow * spectator * spottingscope * switchunits * tacticalladder * tagging * trenches * tripod * ui * vector * vehiclelock * vehicles * viewdistance * weaponselect * weather * winddeflection * yardage450 * zeus * arsenal defines.hpp * optionals * DEBUG_MODE_FULL 1 * DEBUG_MODE_FULL 2 * Manual fixes * Add SQF Validator check for #include after block comment * explosives fnc_openTimerUI * fix uniqueItems
36 lines
857 B
Plaintext
36 lines
857 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Ruthberg
|
|
* Calculates heat index based on temperature and relative humidity
|
|
*
|
|
* Arguments:
|
|
* 0: temperature - degrees celsius <NUMBER>
|
|
* 1: relativeHumidity - value between 0.0 and 1.0 <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* heat index <NUMBER>
|
|
*
|
|
* Example:
|
|
* [36, 0.75] call ace_weather_fnc_calculateHeatIndex
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#define __C1 0.363445176
|
|
#define __C2 0.988622465
|
|
#define __C3 4.777114035
|
|
#define __C4 -0.114037667
|
|
#define __C5 -0.000850208
|
|
#define __C6 -0.020716198
|
|
#define __C7 0.000687678
|
|
#define __C8 0.000274954
|
|
|
|
params ["_t", "_rh"];
|
|
|
|
// Source: https://en.wikipedia.org/wiki/Heat_index
|
|
|
|
_t = TO_FAHRENHEIT(_t);
|
|
_rh = _rh * 100; // relative humidity in %
|
|
|
|
TO_CELSIUS(__C1 + __C2 * _t + __C3 * _rh + __C4 * _t * _rh + __C5 * _t^2 + __C6 * _rh^2 + __C7 * _t^2 * _rh + __C8 * _t * _rh^2)
|