Snapshot WIP: solver HP epic progress, BPHX/HX physics, BMAD skill refresh.
Some checks failed
CI / check (push) Has been cancelled

Capture uncommitted solver robustness work (regularization, domain errors, linear solver lifecycle, tube DP/MSH), web workbench updates, and synced BMAD skills across IDE agent folders before starting BPHX pressure-drop.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-19 16:35:31 +02:00
parent 88620790d6
commit 5bd180b5b8
1363 changed files with 101041 additions and 58547 deletions

View File

@@ -80,7 +80,10 @@ export function buildComponentInspector(
): ComponentInspector {
const meta = COMPONENT_BY_TYPE[node.data.type];
const title = node.data.name;
const typeLabel = meta?.label ?? node.data.type;
const typeLabel =
node.data.type === "ModuleInstance"
? `Sous-système Module (${String(node.data.params.module_name ?? "ekmod")})`
: (meta?.label ?? node.data.type);
const status = result ? String(result.status) : null;
const state = result?.state;