Add model embeddings for Z-factor DoF, separate from SaturatedController.
Some checks failed
CI / check (push) Has been cancelled

Fixed/Free Probe calibration now emits embeddings[] (unknown + equation) instead of controls[], keeping SaturatedController for physical regulation only.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-19 22:42:31 +02:00
parent 3808e0f11b
commit 5425685a48
22 changed files with 1189 additions and 485 deletions

View File

@@ -621,6 +621,7 @@ impl System {
entropyk_core::Z_UA => indices.z_ua = Some(state_idx),
entropyk_core::Z_POWER => indices.z_power = Some(state_idx),
entropyk_core::Z_ETAV => indices.z_etav = Some(state_idx),
entropyk_core::F_W => indices.f_w = Some(state_idx),
_ => {}
}
}
@@ -645,6 +646,7 @@ impl System {
entropyk_core::Z_UA => indices.z_ua = Some(state_idx),
entropyk_core::Z_POWER => indices.z_power = Some(state_idx),
entropyk_core::Z_ETAV => indices.z_etav = Some(state_idx),
entropyk_core::F_W => indices.f_w = Some(state_idx),
_ => {}
}
} else if id_str.ends_with("injection") || id_str.ends_with("actuator") {