Sud now parses top-level L/Td fields from sude/*.json (defaulting to 0.2/30, matching the old hardcoded server constants), and derive_plant_params() returns them alongside M/C - constant for the whole brew, unlike M/C which vary per step with grain/water mass. All sude/*.json docs gain explicit L/Td fields. Callers (tasks/sud.py, SudForecastEstimator, demo_sud.py) switch from the narrow set_thermal_params(M, C)/set_model_params(M, C) to the full set_plant_params(params)/set_model_plant_params(params), since derive_plant_params() now always returns all four keys; both narrow setters are removed as dead code. Caught along the way: Pot.set_plant_params() unconditionally rebuilt the Delay ring buffer, which was harmless when only ever called once at construction - but now running on every Sud step change, it was wiping in-flight delayed power at each step boundary. Fixed to only rebuild when Td actually changes; verified this restores the exact original forecast result for sud_0010.json. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01DkkuG48uHFCGKe6dPSERFk
76 lines
1.3 KiB
JSON
76 lines
1.3 KiB
JSON
{
|
|
"Name": "GuiTest",
|
|
"Description": "Small, fast schedule for exercising the GUI (load/start/pause/stop/restart) without waiting through a real brew",
|
|
"pot_mass": 5.96,
|
|
"pot_material": "Edelstahl 18/10",
|
|
"L": 0.2,
|
|
"Td": 30,
|
|
"default": {
|
|
"step": {
|
|
"descr": "Put description here",
|
|
"user_message": "Put user message here",
|
|
"user_wait_for_continue": false,
|
|
"grain_mass": 5.21,
|
|
"water_mass": 22,
|
|
"temperature": 0,
|
|
"ramp": {
|
|
"rate": 5.0,
|
|
"stirrer": {
|
|
"speed": 50,
|
|
"interval_time": 0,
|
|
"on_ratio": 1.0
|
|
}
|
|
},
|
|
"hold": {
|
|
"duration": 1,
|
|
"stirrer": {
|
|
"speed": 30,
|
|
"interval_time": 0,
|
|
"on_ratio": 1.0
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"steps": [
|
|
{
|
|
"descr": "Heat to 24",
|
|
"temperature": 24,
|
|
"ramp": {
|
|
"rate": 5.0
|
|
}
|
|
},
|
|
{
|
|
"descr": "Add something",
|
|
"user_message": "Please confirm to continue",
|
|
"user_wait_for_continue": true,
|
|
"hold": {
|
|
"duration": 0
|
|
}
|
|
},
|
|
{
|
|
"descr": "Short hold at 24",
|
|
"hold": {
|
|
"duration": 1
|
|
}
|
|
},
|
|
{
|
|
"descr": "Heat to 28, then hold",
|
|
"temperature": 28,
|
|
"ramp": {
|
|
"rate": 5.0
|
|
},
|
|
"hold": {
|
|
"duration": 1
|
|
}
|
|
},
|
|
{
|
|
"descr": "Final confirm",
|
|
"user_message": "Quittieren zum Abschluss",
|
|
"user_wait_for_continue": true,
|
|
"hold": {
|
|
"duration": 0
|
|
}
|
|
}
|
|
]
|
|
}
|