Skip to content

Commit d07eb5a

Browse files
ntatum94StevenAWhite
authored andcommitted
f/ntatum-GenStatesforBurn: Added functionality and fixed state
generation bug - State generation works as expected again, should not create empty folders - Added ability to randomly affect titration using array of scaling factors - Added escharotomy check on hourly checkups
1 parent 1fefa96 commit d07eb5a

File tree

1 file changed

+1
-21
lines changed

1 file changed

+1
-21
lines changed

projects/howto/BurnWoundPainStimulus/src/HowTo-BurnWoundPainStimulus.cpp

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -389,27 +389,7 @@ void BurnThread::FluidLoading(double tbsa)
389389
m_bg->ProcessAction(*m_escharotomy);
390390
}
391391
}
392-
// escharotomy
393-
/*if (m_bg->GetPatient().IsEventActive(CDM::enumPatientEvent::CompartmentSyndrome_Abdominal)
394-
|| m_bg->GetPatient().IsEventActive(CDM::enumPatientEvent::CompartmentSyndrome_LeftArm)
395-
|| m_bg->GetPatient().IsEventActive(CDM::enumPatientEvent::CompartmentSyndrome_LeftLeg)
396-
|| m_bg->GetPatient().IsEventActive(CDM::enumPatientEvent::CompartmentSyndrome_RightArm)
397-
|| m_bg->GetPatient().IsEventActive(CDM::enumPatientEvent::CompartmentSyndrome_RightLeg)) {
398-
if (m_bg->GetPatient().IsEventActive(CDM::enumPatientEvent::CompartmentSyndrome_Abdominal)) {
399-
m_escharotomy->SetLocation("Trunk");
400-
} else if (m_bg->GetPatient().IsEventActive(CDM::enumPatientEvent::CompartmentSyndrome_LeftArm)) {
401-
m_escharotomy->SetLocation("LeftArm");
402-
} else if (m_bg->GetPatient().IsEventActive(CDM::enumPatientEvent::CompartmentSyndrome_LeftLeg)) {
403-
m_escharotomy->SetLocation("LeftLeg");
404-
} else if (m_bg->GetPatient().IsEventActive(CDM::enumPatientEvent::CompartmentSyndrome_RightArm)) {
405-
m_escharotomy->SetLocation("RightArm");
406-
} else if (m_bg->GetPatient().IsEventActive(CDM::enumPatientEvent::CompartmentSyndrome_RightLeg)) {
407-
m_escharotomy->SetLocation("RightLeg");
408-
} else {
409-
return;
410-
}
411-
m_bg->ProcessAction(*m_escharotomy);
412-
}*/
392+
413393
if (fluid == ringers) {
414394
if (m_ivBagVolume_mL < 1.0) {
415395
m_ringers->GetBagVolume().SetValue(ringersVolume_mL, VolumeUnit::mL);

0 commit comments

Comments
 (0)