mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Calculates the blood volume change and decreases the IVs given to the unit.
|
|
*
|
|
* Arguments:
|
|
* 0: The Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* 0: BloodPressure Low <NUMBER>
|
|
* 1: BloodPressure High <NUMBER>
|
|
*
|
|
* Example:
|
|
* [bob, kevin] call ACE_medical_fnc_getBloodPressure
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
// Value is taken because with cardic output and resistance at default values, it will put blood pressure High at 120.
|
|
#define MODIFIER_BP_HIGH 0.229
|
|
|
|
// Value is taken because with cardic output and resistance at default values, it will put blood pressure Low at 80.
|
|
#define MODIFIER_BP_LOW 0.1524
|
|
|
|
params ["_unit"];
|
|
|
|
private _cardiacOutput = [_unit] call FUNC(getCardiacOutput);
|
|
private _resistance = _unit getVariable [QGVAR(peripheralResistance), 100];
|
|
|
|
private _bloodPressureHigh = (_cardiacOutput * MODIFIER_BP_HIGH) * _resistance;
|
|
private _bloodPressureLow = (_cardiacOutput * MODIFIER_BP_LOW) * _resistance;
|
|
|
|
[_bloodPressureLow max 0, _bloodPressureHigh max 0]
|