mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Removed AHI/hr from averages list, changed Daily Details percentiles to variable calculation, Stop Unintentional leaks being calculated in APAP mode for PRS1, as they are inaccurate without mask formulae
This commit is contained in:
parent
1f1f689001
commit
48777787b1
@ -455,6 +455,8 @@ int calcLeaks(Session *session)
|
||||
if (session->eventlist.contains(CPAP_Leak)) return 0; // abort if already there
|
||||
if (!session->eventlist.contains(CPAP_LeakTotal)) return 0; // can't calculate without this..
|
||||
|
||||
if (session->settings[CPAP_Mode].toInt()>MODE_APAP) return 0; // Don't bother calculating when in APAP mode
|
||||
|
||||
const qint64 winsize=3600000; // 5 minute window
|
||||
|
||||
//qint64 first=session->first(), last=session->last(), f;
|
||||
|
@ -861,6 +861,7 @@ void Daily::Load(QDate date)
|
||||
} // if (!CPAP)
|
||||
html+="<table cellspacing=0 cellpadding=0 border=0 width='100%'>\n";
|
||||
|
||||
float percentile=0.95;
|
||||
if ((cpap && !isBrick) || oxi) {
|
||||
html+="<tr height='2'><td colspan=5> </td></tr>\n";
|
||||
|
||||
@ -870,11 +871,11 @@ void Daily::Load(QDate date)
|
||||
.arg(tr("Channel"))
|
||||
.arg(tr("Min"))
|
||||
.arg(tr("Avg"))
|
||||
.arg(tr("90%"))
|
||||
.arg(tr("%i%").arg(percentile*100,0,'f',0))
|
||||
.arg(tr("Max"));
|
||||
ChannelID chans[]={
|
||||
CPAP_Pressure,CPAP_EPAP,CPAP_IPAP,CPAP_PS,CPAP_PTB,
|
||||
CPAP_MinuteVent,CPAP_AHI, CPAP_RespRate, CPAP_RespEvent,CPAP_FLG,
|
||||
CPAP_MinuteVent, CPAP_RespRate, CPAP_RespEvent,CPAP_FLG,
|
||||
CPAP_Leak, CPAP_LeakTotal, CPAP_Snore,CPAP_IE,CPAP_Ti,CPAP_Te, CPAP_TgMV,
|
||||
CPAP_TidalVolume, OXI_Pulse, OXI_SPO2
|
||||
};
|
||||
@ -892,7 +893,7 @@ void Daily::Load(QDate date)
|
||||
.arg(QString::number(code)).arg(tooltip).arg(schema::channel[code].label()))
|
||||
.arg(cpap->Min(code),0,'f',2)
|
||||
.arg(cpap->wavg(code),0,'f',2)
|
||||
.arg(cpap->p90(code),0,'f',2)
|
||||
.arg(cpap->percentile(code,percentile),0,'f',2)
|
||||
.arg(cpap->Max(code),0,'f',2);
|
||||
}
|
||||
if (oxi && oxi->channelHasData(code)) {
|
||||
@ -901,7 +902,7 @@ void Daily::Load(QDate date)
|
||||
html+="<tr><td align=left><a href='graph="+QString::number(code)+"' title='"+tooltip+"'>"+schema::channel[code].label()+"</a>";
|
||||
html+="</td><td>"+a.sprintf("%.2f",oxi->Min(code));
|
||||
html+="</td><td>"+a.sprintf("%.2f",oxi->wavg(code));
|
||||
html+="</td><td>"+a.sprintf("%.2f",oxi->p90(code));
|
||||
html+="</td><td>"+a.sprintf("%.2f",oxi->percentile(code,percentile));
|
||||
html+="</td><td>"+a.sprintf("%.2f",oxi->Max(code));
|
||||
html+="</td><tr>";
|
||||
}
|
||||
|
@ -12,6 +12,7 @@
|
||||
<list>
|
||||
<li>Auto-Updater for Windows & Mac Platforms</li>
|
||||
<li>SleepLib database improvements, and lots of other underneath stuff and code cleanups you don't see.</li>
|
||||
<li>Session Hiding capabilities, by clicking on the toggle button down the bottom of Daily views details panel</li>
|
||||
<li>New Statistics page showing some more useful data.</li>
|
||||
<li>Welcome page has become a Help Browser.</li>
|
||||
<li>New Navigation Panel on the right side, now accessible from all tabs. It can be hidden to reclaim screen space.</li>
|
||||
|
Loading…
Reference in New Issue
Block a user