ACE3/addons/medical/functions/fnc_getCardiacOutput.sqf

33 lines
1.1 KiB
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Get the cardiac output from the Heart, based on current Heart Rate and Blood Volume.
*
* Arguments:
* 0: The Unit <OBJECT>
*
* ReturnValue:
2016-12-05 20:34:20 +00:00
* Current cardiac output (liter per second) <NUMBER>
*
* Public: No
*/
#include "script_component.hpp"
/*
2016-12-05 20:34:20 +00:00
Cardiac output (Q or or CO ) is the volume of blood being pumped by the heart, in particular by a left or right ventricle in the CBA_missionTime interval of one second. CO may be measured in many ways, for example dm3/min (1 dm3 equals 1 litre).
Source: http://en.wikipedia.org/wiki/Cardiac_output
*/
// to limit the amount of complex calculations necessary, we take a set modifier to calculate Stroke Volume.
#define MODIFIER_CARDIAC_OUTPUT 19.04761
2015-08-22 14:25:10 +00:00
params ["_unit"];
2016-12-05 20:34:20 +00:00
if (_unit getVariable [QGVAR(inCardiacArrest), false]) exitWith { 0 };
private _bloodVolume = ((_unit getVariable [QGVAR(bloodVolume), DEFAULT_BLOOD_VOLUME]) / DEFAULT_BLOOD_VOLUME) * 100;
2016-12-09 11:57:27 +00:00
private _heartRate = _unit getVariable [QGVAR(heartRate), DEFAULT_HEART_RATE];
private _cardiacOutput = ((_bloodVolume / MODIFIER_CARDIAC_OUTPUT) + ((_heartRate / DEFAULT_HEART_RATE) - 1)) / 60;
2016-12-05 20:34:20 +00:00
(0 max _cardiacOutput)