mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Remove unintended leak calculation from PRS1 loader.
Now that the post-process calcLeaks properly handles discontinuous data, don't make the loader pretend that the machine generated CPAP_Leak data when it didn't. The resulting data is nearly identical, except for around edge cases where the "correct" result is isn't clear. For example, when a pressure changes within a 2-minute reporting interval, the post-process calcLeaks will use that pressure when calculating the unintended leak for that interval. The previous PRS1 loader calculations were inconsistent, but would often apply the pressure in place at the beginning of the 2-minute interval instead. Either interpretation could be reasonable, but consistency is preferred. These minor differences aren't worth pursuing further, since the calculated unintended leak looks dubious regardless. This affects all CPAP/APAP/BiPAP models in the 4xx-7xx range. In contrast, most ventilators and ASV record unintended leak data (only the oldest ones don't), and so aren't affected by these changes.
This commit is contained in:
parent
a4296b5e93
commit
332fc4294d
@ -1258,7 +1258,7 @@ static const QHash<PRS1ParsedEventType,QVector<ChannelID*>> PRS1ImportChannelMap
|
||||
|
||||
{ PRS1PeriodicBreathingEvent::TYPE, { &CPAP_PB } },
|
||||
{ PRS1LargeLeakEvent::TYPE, { &CPAP_LargeLeak } },
|
||||
{ PRS1TotalLeakEvent::TYPE, { &CPAP_LeakTotal, &CPAP_Leak } }, // TODO: Remove CPAP_Leak if we get rid of unintentional leak calculation in the importer.
|
||||
{ PRS1TotalLeakEvent::TYPE, { &CPAP_LeakTotal } },
|
||||
{ PRS1LeakEvent::TYPE, { &CPAP_Leak } },
|
||||
|
||||
{ PRS1RespiratoryRateEvent::TYPE, { &CPAP_RespRate } },
|
||||
@ -1504,17 +1504,6 @@ bool PRS1Import::ImportEventChunk(PRS1DataChunk* event)
|
||||
// F5, which only reports EPAP set events, but both IPAP/EPAP average, from which PS will be calculated.
|
||||
m_calcPSfromSet = supported.contains(PRS1IPAPSetEvent::TYPE) && supported.contains(PRS1EPAPSetEvent::TYPE);
|
||||
|
||||
// Unintentional leak calculation, see zMaskProfile:calcLeak in calcs.cpp for explanation
|
||||
m_calcLeaks = p_profile->cpap->calculateUnintentionalLeaks();
|
||||
if (m_calcLeaks) {
|
||||
// Only needed for machines that don't support it directly.
|
||||
m_calcLeaks = (supported.contains(PRS1LeakEvent::TYPE) == false);
|
||||
}
|
||||
m_lpm4 = p_profile->cpap->custom4cmH2OLeaks();
|
||||
EventDataType lpm20 = p_profile->cpap->custom20cmH2OLeaks();
|
||||
EventDataType lpm = lpm20 - m_lpm4;
|
||||
m_ppm = lpm / 16.0;
|
||||
|
||||
qint64 t = qint64(event->timestamp) * 1000L;
|
||||
if (session->first() == 0) {
|
||||
qWarning() << sessionid << "Start time not set by summary?";
|
||||
@ -1698,7 +1687,7 @@ void PRS1Import::ImportEvent(qint64 t, PRS1ParsedEvent* e)
|
||||
// to be done in ImportEventChunk.
|
||||
|
||||
const QVector<ChannelID*> & channels = PRS1ImportChannelMap[e->m_type];
|
||||
ChannelID channel = NoChannel, PS, VS2, LEAK;
|
||||
ChannelID channel = NoChannel, PS, VS2;
|
||||
if (channels.count() > 0) {
|
||||
channel = *channels.at(0);
|
||||
}
|
||||
@ -1752,22 +1741,6 @@ void PRS1Import::ImportEvent(qint64 t, PRS1ParsedEvent* e)
|
||||
AddEvent(channel, t + duration, e->m_duration, e->m_gain);
|
||||
break;
|
||||
|
||||
case PRS1TotalLeakEvent::TYPE:
|
||||
AddEvent(channel, t, e->m_value, e->m_gain);
|
||||
// F0 up through F0V6 doesn't appear to report unintentional leak.
|
||||
// TODO: decide whether to keep this here, shouldn't keep it here just because it's "quicker".
|
||||
// TODO: compare this value for the reported value for F5V1 and higher?
|
||||
// TODO: Fix this for 0.125 gain: it assumes 0.1 (dividing by 10.0)...
|
||||
// Or omit, because machines with 0.125 gain report unintentional leak directly.
|
||||
if (m_calcLeaks) { // Much Quicker doing this here than the recalc method.
|
||||
EventDataType leak = e->m_value;
|
||||
leak -= (((m_currentPressure/10.0f) - 4.0) * m_ppm + m_lpm4);
|
||||
if (leak < 0) leak = 0;
|
||||
LEAK = *channels.at(1);
|
||||
AddEvent(LEAK, t, leak, 1);
|
||||
}
|
||||
break;
|
||||
|
||||
case PRS1SnoreEvent::TYPE: // snore count that shows up in flags but not waveform
|
||||
// TODO: The numeric snore graph is the right way to present this information,
|
||||
// but it needs to be shifted left 2 minutes, since it's not a starting value
|
||||
|
@ -384,6 +384,7 @@ void PRS1DataChunk::ParseFlexSettingF5V012(quint8 flex, int cpapmode)
|
||||
|
||||
const QVector<PRS1ParsedEventType> ParsedEventsF5V0 = {
|
||||
PRS1EPAPSetEvent::TYPE,
|
||||
// No PP, unlike F5V1
|
||||
PRS1TimedBreathEvent::TYPE,
|
||||
PRS1ObstructiveApneaEvent::TYPE,
|
||||
PRS1ClearAirwayEvent::TYPE,
|
||||
@ -402,6 +403,7 @@ const QVector<PRS1ParsedEventType> ParsedEventsF5V0 = {
|
||||
PRS1TidalVolumeEvent::TYPE,
|
||||
PRS1SnoreEvent::TYPE,
|
||||
PRS1EPAPAverageEvent::TYPE,
|
||||
// No LEAK, unlike F5V1
|
||||
};
|
||||
|
||||
// 950P is F5V0
|
||||
|
Loading…
Reference in New Issue
Block a user