mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
888 B
Plaintext
22 lines
888 B
Plaintext
#include "script_component.hpp"
|
|
#include "defines.h"
|
|
|
|
private ["_temperature", "_pressure", "_relativeHumidity"];
|
|
_temperature = _this select 0; // in C
|
|
_pressure = _this select 1; // in hPa
|
|
_relativeHumidity = _this select 2; // as ratio 0-1
|
|
|
|
_pressure = _pressure * 100;
|
|
|
|
if (_relativeHumidity > 0) then {
|
|
private ["_pSat", "_vaporPressure", "_partialPressure"];
|
|
// Saturation vapor pressure calculated according to: http://wahiduddin.net/calc/density_algorithms.htm
|
|
_pSat = 6.1078 * 10 ^ ((7.5 * _temperature) / (_temperature + 237.3));
|
|
_vaporPressure = _relativeHumidity * _pSat;
|
|
_partialPressure = _pressure - _vaporPressure;
|
|
|
|
(_partialPressure * DRY_AIR_MOLAR_MASS + _vaporPressure * WATER_VAPOR_MOLAR_MASS) / (UNIVERSAL_GAS_CONSTANT * KELVIN(_temperature))
|
|
} else {
|
|
_pressure / (SPECIFIC_GAS_CONSTANT_DRY_AIR * KELVIN(_temperature))
|
|
};
|