| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //для enact/smb-suggested.json параметры: monitor/iob.json monitor/temp_basal.json monitor/glucose.json settings/profile.json settings/autosens.json --meal monitor/meal.json --microbolus --reservoir monitor/reservoir.json
- function generate(iob, currenttemp, glucose, profile, autosens = null, meal = null, microbolusAllowed = false, reservoir = null, clock = new Date(), pump_history, preferences, basalProfile, trio_custom_oref_variables) {
- // We pass in the clock when we're replaying
- //var clock = new Date();
-
- var middleware_was_used = "";
- try {
- var middlewareReason = middleware(iob, currenttemp, glucose, profile, autosens, meal, reservoir, clock, pump_history, preferences, basalProfile, trio_custom_oref_variables);
- middleware_was_used = (middlewareReason || "Nothing changed");
- console.log("Middleware reason: " + middleware_was_used);
- } catch (error) {
- console.log("Invalid middleware: " + error);
- };
- var glucose_status = trio_glucoseGetLast(glucose);
- var autosens_data = null;
- if (autosens) {
- autosens_data = autosens;
- }
-
- var reservoir_data = null;
- if (reservoir) {
- reservoir_data = reservoir;
- }
- var meal_data = {};
- if (meal) {
- meal_data = meal;
- }
-
- var pumphistory = {};
- if (pump_history) {
- pumphistory = pump_history;
- }
-
- var basalprofile = {};
- if (basalProfile) {
- basalprofile = basalProfile;
- }
-
- var trio_custom_oref_variables_temp = {};
- if (trio_custom_oref_variables) {
- trio_custom_oref_variables_temp = trio_custom_oref_variables;
- }
-
- return trio_determineBasal(glucose_status, currenttemp, iob, profile, autosens_data, meal_data, trio_basalSetTemp, microbolusAllowed, reservoir_data, clock, pumphistory, preferences, basalprofile, trio_custom_oref_variables_temp, middleware_was_used);
- }
|