mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Medical - Refactor target blood pressure (#10081)
Refactor target blood pressure
This commit is contained in:
parent
5ea202ce25
commit
c4fb858c1d
@ -40,13 +40,9 @@ if IN_CRDC_ARRST(_unit) then {
|
|||||||
private _spo2 = GET_SPO2(_unit);
|
private _spo2 = GET_SPO2(_unit);
|
||||||
private _painLevel = GET_PAIN_PERCEIVED(_unit);
|
private _painLevel = GET_PAIN_PERCEIVED(_unit);
|
||||||
|
|
||||||
private _targetBP = 107;
|
|
||||||
if (_bloodVolume < BLOOD_VOLUME_CLASS_2_HEMORRHAGE) then {
|
|
||||||
_targetBP = _targetBP * (_bloodVolume / DEFAULT_BLOOD_VOLUME);
|
|
||||||
};
|
|
||||||
|
|
||||||
_targetHR = DEFAULT_HEART_RATE;
|
_targetHR = DEFAULT_HEART_RATE;
|
||||||
if (_bloodVolume < BLOOD_VOLUME_CLASS_3_HEMORRHAGE) then {
|
if (_bloodVolume < BLOOD_VOLUME_CLASS_3_HEMORRHAGE) then {
|
||||||
|
private _targetBP = 107 * (_bloodVolume / DEFAULT_BLOOD_VOLUME);
|
||||||
_targetHR = _heartRate * (_targetBP / (45 max _meanBP));
|
_targetHR = _heartRate * (_targetBP / (45 max _meanBP));
|
||||||
};
|
};
|
||||||
if (_painLevel > 0.2) then {
|
if (_painLevel > 0.2) then {
|
||||||
|
Loading…
Reference in New Issue
Block a user