bjornoleh / middleware

For use with FreeAPS X

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

middleware

For use with FreeAPS X.

You can copy and paste (replace) into FAX middleware function, but at your own risk, so please be careful! To access middleware on your phone, first enable debug settings.

Telegram group for interaction and sharing: https://t.me/middleware_freeaps_x


Dynamic_ISF_with_calculated_TDD.js

Calculates past 24 hours of total daily dose (TDD) of insulin from pumphistory-24h-zoned.json every loop. If not enough data in pump history (<23.5 h), your scheduled basal rate insulin will replace the missing hours. But normally if you've run FAX for 24 hours, pump history data will be enough.

A new autosens ratio is set using Chris Wilson's formula: newRatio = profile.sens * adjustmentFactor * TDD * BGG / 277700 . profile.sens: your ISF in profile. Your new ISF = profile.sens / newRatio .

Autosens min/max settings are respected, for me 0.7 - 1.3 works well. This middleware by-passes the normal autosens, unless when using a high temp target while exercising, and the autosens limits are instead used for limiting the dynamic ISF.

When using a high temp target (>= 118 mg/dl) together with an exercise setting, Chris' formula is temporarily turned off (as well as AutoISF, if this is used).

adjustmentFactor is used for tuning of the constant 277700 in Chris Wilson's formula. More dramatic ISF change > 1 > less dramtaic ISF change. 1 is set as default.

Please do not change TDD = 0, because that will result in doubling your TDD, since it counts from 0.


DISF_with_TDD_and_preferences.js

Like Dynamic_ISF_with_calculated_TDD.js but with access to FAX preferences, which means the adjustment factor and a toggle to enable/disable Chris' formula can be set in FAX preferences.

This middleware only works my branch "mw_preferences").


Dynamic_ISF_and_CR_and_TDD.js

Like Dynamic_ISF_with_calculated_TDD.js but with optional Dynamic CR in mw and in settings.

Only works with my branch "dyn_ISF_and_CR"


Chris_formula_autosensRatio.js

Chris' formula for dynamic ISF=277700 / (TDD * BG) is currently a challange to implement it in FreeAPS X (FAX) via middlware file due to missing TDD info in FAX.

Thus, it has been created an experimental formula by replacing TDD with autosensRatio resulting in the following formula: dISF=277700 / (adjustableFactor * autosensRatio * BG). Autosens Ratio value is visible in FAX > Settings > Insulin Sensitivities.

As autosens' typical values are between 0.7 and 1.2 (the limits are adjusted with preference settings autosens MAX/MIN), it has been added an adjustableFactor for tuning the formula. It's recommended to start with adjustableFactor = 25. Lower number = milder dynamic ISF profile.

In order to identify the optimal value of adjustableFactor, it has been created a simulation file Variable ISF simulation.numbers to simulate the dynamic ISF curve vs static ISF. AutosensRatio should be equal to 1.

Please note that this is an experimental approach, so be careful and use it at your own risk!


c_formula_with_conditions.js

This is Chris' original formula without the TDD calculation. You need to enter your TDD manually in middlware.

Autosens min/max limits in FAX settings are used to limit the dynamic ISF. Normal autosens is by-passed.

adjustmentFactor to change Chris'constant. I higer value (>1) means more dramatic ISF changes, a lower (<1) means less aggresive changes.


bdb_branch.js

Experimental MW for my own use and for testing new code.

About

For use with FreeAPS X


Languages

Language:JavaScript 100.0%