 ";
html+=" | "+
@@ -151,15 +152,7 @@ QString GenerateWelcomeHTML()
EventDataType ahi=(day->count(CPAP_Obstructive) + day->count(CPAP_Hypopnea) + day->count(CPAP_ClearAirway) + day->count(CPAP_Apnea)) / hours;
- QString ahitext;
- if (ahi < 0.000001) ahitext = QString("")+QObject::tr("perfect :)")+"";
- else if (ahi < 1) ahitext = QObject::tr("pretty darn good");
- else if (ahi < 3) ahitext = QObject::tr("reasonably good");
- else if (ahi < 5) ahitext = QObject::tr("technically \"treated\"");
- else if (ahi < 10) ahitext = QString("")+QObject::tr("not very good")+"";
- else ahitext = QString("")+QObject::tr("horrible, please consult your doctor")+"";
-
- html += QObject::tr("You had an AHI of %1, which is considered %2").arg(ahi,0,'f',2).arg(ahitext)+" ";
+ html += " ";
int seconds = int(hours * 3600.0) % 60;
int minutes = int(hours * 60) % 60;
@@ -169,16 +162,15 @@ QString GenerateWelcomeHTML()
if (hours > 4) html += QObject::tr("You machine was on for %1.").arg(timestr)+" ";
else html += QObject::tr("You only had the mask on for %1.").arg(timestr)+" ";
+ html += QObject::tr("You had an AHI of %1,").arg(ahi,0,'f',2)+" ";
- EventDataType lat = day->timeAboveThreshold(CPAP_Leak, p_profile->cpap->leakRedline())/ 60.0;
- EventDataType leaks = 1.0/hours * lat;
- EventDataType leakmax = day->Max(CPAP_Leak);
- QString leaktext;
- if (leaks < 0.000001) leaktext=QObject::tr("You had no major mask leaks (maximum was %1 %2).").arg(leakmax,0,'f',2).arg(schema::channel[CPAP_Leak].units());
- else if (leaks < 0.01) leaktext=QObject::tr("You had a small but acceptable amount of major mask leakage.");
- else if (leaks < 0.10) leaktext=QObject::tr("You had significant periods of major mask leakage.");
- else leaktext=QObject::tr("Your mask is leaking way too much.. Talk to your CPAP advisor.");
- html += leaktext + " ";
+
+ //EventDataType lat = day->timeAboveThreshold(CPAP_Leak, p_profile->cpap->leakRedline())/ 60.0;
+ //EventDataType leaks = 1.0/hours * lat;
+ EventDataType leakmax = day->avg(CPAP_Leak);
+
+
+ html += QObject::tr("average leaks were %1 %2).").arg(leakmax,0,'f',2).arg(schema::channel[CPAP_Leak].units())+" ";
CPAPMode cpapmode = (CPAPMode)(int)day->settings_max(CPAP_Mode);
double perc= p_profile->general->prefCalcPercentile();
|