Updated glucose level

and comments
This commit is contained in:
Bart Koolen 2025-02-24 22:09:05 +01:00
parent b3ec889b2f
commit 2fe11e857a

View file

@ -31,16 +31,16 @@ headers = {
# limits_table[0] is after just compensating (no eating), and [1] is after eating
limits_table = [
[ [20, 99], # hour 0 constants after compensating /c [max_level, max_slope]
[ [20, 99], # hour 0 constants after compensating /c [max_level, max_pos_slope, max_neg_slope]
[16, 99], # hour 1
[12, 6], # hour 2
[10, 6], # hour 3
[ 8, 6] ], # hour 4
[ [20, 99], # hour 0 constants after eating /e [max_level, max_slope]
[10, 6] ], # hour 4
[ [20, 99], # hour 0 constants after eating /e [max_level, max_pos_slope, max_neg_slope]
[18, 99], # hour 1
[14, 6], # hour 2
[12, 6], # hour 3
[ 8, 6] ] # hour 4
[10, 6] ] # hour 4
]
limits_max_hours = 4 # nr of hours in the above lists