Log each Sud run's measured data and forecast to JSON for offline analysis

Add SudLogTask: starts a fresh in-memory buffer the moment a run actually
starts (Sud.state leaves IDLE/DONE) and writes it out whole the moment it
ends (DONE, or aborted via Stop) - log_<date>T<time>_<sud-name>.json holds
the same six signals the GUI's Automatic tab plots live (temp/rate ist+soll,
power set+eff) with per-sample timestamps; forecast_<date>T<time>_<sud-name>.json
holds the final, most-corrected forecast curve from the same run, sharing
the run's date-time token so the two pair up.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01DkkuG48uHFCGKe6dPSERFk
This commit is contained in:
2026-06-22 17:44:08 +02:00
co-authored by Claude Sonnet 4.6
parent 031b13ca2c
commit c1f4bac3f2
3 changed files with 127 additions and 2 deletions
+1
View File
@@ -6,3 +6,4 @@ from tasks.pot import *
from tasks.tempctrl import *
from tasks.tracer import *
from tasks.sud import *
from tasks.sud_log import *