2015-02-08 09:01:32 +00:00
/*
* Author: Glowbal
* Get the cardiac output from the Heart, based on current Heart Rate and Blood Volume.
*
* Arguments:
* 0: The Unit <OBJECT>
*
2017-06-08 13:31:51 +00:00
* Return Value:
2015-02-08 09:01:32 +00:00
* Current cardiac output <NUMBER>
2015-02-07 22:55:48 +00:00
*
2017-06-08 13:31:51 +00:00
* Example:
* [bob] call ACE_medical_fnc_getCardiacOutput
*
2015-02-08 09:01:32 +00:00
* Public: No
2015-02-07 22:55:48 +00:00
*/
#include "script_component.hpp"
/*
2016-03-02 10:01:39 +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 minute. CO may be measured in many ways, for example dm3/min (1 dm3 equals 1 litre).
2015-02-07 22:55:48 +00:00
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"];
2015-02-07 22:55:48 +00:00
2015-11-30 16:27:09 +00:00
((_unit getVariable [QGVAR(bloodVolume), 100])/MODIFIER_CARDIAC_OUTPUT) + ((_unit getVariable [QGVAR(heartRate), 80])/80-1);