fix ABS IOB calculation
This commit is contained in:
parent
272f91d90b
commit
b8327f6b3a
1 changed files with 2 additions and 2 deletions
|
@ -470,8 +470,8 @@ public class TreatmentsPlugin extends PluginBase implements TreatmentsInterface
|
||||||
Treatment treatment = new Treatment(getInjector());
|
Treatment treatment = new Treatment(getInjector());
|
||||||
treatment.date = i;
|
treatment.date = i;
|
||||||
treatment.insulin = running * 5.0 / 60.0; // 5 min chunk
|
treatment.insulin = running * 5.0 / 60.0; // 5 min chunk
|
||||||
Iob iob = treatment.iobCalc(i, profile.getDia());
|
Iob iob = treatment.iobCalc(time, profile.getDia());
|
||||||
total.iob += iob.iobContrib;
|
total.basaliob += iob.iobContrib;
|
||||||
total.activity += iob.activityContrib;
|
total.activity += iob.activityContrib;
|
||||||
}
|
}
|
||||||
return total;
|
return total;
|
||||||
|
|
Loading…
Reference in a new issue