Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pulse Physiology Suite
engine
Commits
bee57ca4
Commit
bee57ca4
authored
Sep 15, 2020
by
Jeff Webb
Browse files
Updates to ARDS compliance mapping.
parent
ad7d5424
Changes
4
Hide whitespace changes
Inline
Side-by-side
data/human/adult/scenarios/equipment/MechanicalVentilator_PC-CMV_Mild_ARDS.json
View file @
bee57ca4
...
...
@@ -114,7 +114,7 @@
"Connection"
:
"Tube"
,
"InspirationWaveform"
:
"Square"
,
"ExpirationWaveform"
:
"Square"
,
"PeakInspiratoryPressure"
:
{
"ScalarPressure"
:
{
"Value"
:
2
3.5
,
"Unit"
:
"cmH2O"
}
},
"PeakInspiratoryPressure"
:
{
"ScalarPressure"
:
{
"Value"
:
2
5.0
,
"Unit"
:
"cmH2O"
}
},
"PositiveEndExpiredPressure"
:
{
"ScalarPressure"
:
{
"Value"
:
11.0
,
"Unit"
:
"cmH2O"
}
},
"InspirationMachineTriggerTime"
:
{
"ScalarTime"
:
{
"Value"
:
1.974
,
"Unit"
:
"s"
}
},
"ExpirationCycleTime"
:
{
"ScalarTime"
:
{
"Value"
:
1.776
,
"Unit"
:
"s"
}
},
...
...
data/human/adult/scenarios/equipment/MechanicalVentilator_PC-CMV_Moderate_ARDS.json
View file @
bee57ca4
...
...
@@ -114,7 +114,7 @@
"Connection"
:
"Tube"
,
"InspirationWaveform"
:
"Square"
,
"ExpirationWaveform"
:
"Square"
,
"PeakInspiratoryPressure"
:
{
"ScalarPressure"
:
{
"Value"
:
2
5.5
,
"Unit"
:
"cmH2O"
}
},
"PeakInspiratoryPressure"
:
{
"ScalarPressure"
:
{
"Value"
:
2
9.0
,
"Unit"
:
"cmH2O"
}
},
"PositiveEndExpiredPressure"
:
{
"ScalarPressure"
:
{
"Value"
:
11.0
,
"Unit"
:
"cmH2O"
}
},
"InspirationMachineTriggerTime"
:
{
"ScalarTime"
:
{
"Value"
:
1.974
,
"Unit"
:
"s"
}
},
"ExpirationCycleTime"
:
{
"ScalarTime"
:
{
"Value"
:
1.776
,
"Unit"
:
"s"
}
},
...
...
data/human/adult/scenarios/equipment/MechanicalVentilator_PC-CMV_Severe_ARDS.json
View file @
bee57ca4
...
...
@@ -114,7 +114,7 @@
"Connection"
:
"Tube"
,
"InspirationWaveform"
:
"Square"
,
"ExpirationWaveform"
:
"Square"
,
"PeakInspiratoryPressure"
:
{
"ScalarPressure"
:
{
"Value"
:
28
.0
,
"Unit"
:
"cmH2O"
}
},
"PeakInspiratoryPressure"
:
{
"ScalarPressure"
:
{
"Value"
:
36
.0
,
"Unit"
:
"cmH2O"
}
},
"PositiveEndExpiredPressure"
:
{
"ScalarPressure"
:
{
"Value"
:
11.0
,
"Unit"
:
"cmH2O"
}
},
"InspirationMachineTriggerTime"
:
{
"ScalarTime"
:
{
"Value"
:
1.974
,
"Unit"
:
"s"
}
},
"ExpirationCycleTime"
:
{
"ScalarTime"
:
{
"Value"
:
1.776
,
"Unit"
:
"s"
}
},
...
...
src/cpp/cpm/physiology/Respiratory.cpp
View file @
bee57ca4
...
...
@@ -2670,7 +2670,7 @@ void Respiratory::UpdateAlveolarCompliances()
rightLungFraction
=
m_data
.
GetConditions
().
GetLobarPneumonia
().
GetRightLungAffected
().
GetValue
();
}
double
complianceScalingFactor
=
GeneralMath
::
ExponentialDecayFunction
(
10
,
0.
55
,
1.0
,
severity
);
double
complianceScalingFactor
=
GeneralMath
::
ExponentialDecayFunction
(
10
,
0.
32
,
1.0
,
severity
);
leftRestrictiveComplianceScalingFactor
=
MIN
(
leftRestrictiveComplianceScalingFactor
,
1.0
-
(
1.0
-
complianceScalingFactor
)
*
leftLungFraction
);
rightRestrictiveComplianceScalingFactor
=
MIN
(
rightRestrictiveComplianceScalingFactor
,
1.0
-
(
1.0
-
complianceScalingFactor
)
*
rightLungFraction
);
...
...
@@ -2682,7 +2682,7 @@ void Respiratory::UpdateAlveolarCompliances()
{
double
severity
=
m_data
.
GetConditions
().
GetPulmonaryFibrosis
().
GetSeverity
().
GetValue
();
double
complianceScalingFactor
=
GeneralMath
::
ExponentialDecayFunction
(
10
,
0.
55
,
1.0
,
severity
);
double
complianceScalingFactor
=
GeneralMath
::
ExponentialDecayFunction
(
10
,
0.
32
,
1.0
,
severity
);
leftRestrictiveComplianceScalingFactor
=
MIN
(
leftRestrictiveComplianceScalingFactor
,
complianceScalingFactor
);
rightRestrictiveComplianceScalingFactor
=
MIN
(
rightRestrictiveComplianceScalingFactor
,
complianceScalingFactor
);
...
...
@@ -2710,7 +2710,7 @@ void Respiratory::UpdateAlveolarCompliances()
rightLungFraction
=
m_data
.
GetConditions
().
GetAcuteRespiratoryDistressSyndrome
().
GetRightLungAffected
().
GetValue
();
}
double
complianceScalingFactor
=
GeneralMath
::
ExponentialDecayFunction
(
10
,
0.
55
,
1.0
,
severity
);
double
complianceScalingFactor
=
GeneralMath
::
ExponentialDecayFunction
(
10
,
0.
32
,
1.0
,
severity
);
leftRestrictiveComplianceScalingFactor
=
MIN
(
leftRestrictiveComplianceScalingFactor
,
1.0
-
(
1.0
-
complianceScalingFactor
)
*
leftLungFraction
);
rightRestrictiveComplianceScalingFactor
=
MIN
(
rightRestrictiveComplianceScalingFactor
,
1.0
-
(
1.0
-
complianceScalingFactor
)
*
rightLungFraction
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment