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

@@ -215,7 +215,7 @@ fn test_frozen_jacobian_converges_linear_system() {
/// iterations than without freezing, but it must converge).
#[test]
fn test_frozen_jacobian_converges_cubic_system() {
let targets = vec![1.0, 2.0];
let targets = vec![10_001.0, 2.0];
let mut sys = build_system_with_cubic_targets(targets.clone());
let mut solver = NewtonConfig {
@@ -305,7 +305,7 @@ fn test_max_frozen_iters_zero_never_freezes() {
/// Jacobian causes insufficient progress on the non-linear system.
#[test]
fn test_auto_recompute_on_divergence_trend() {
let targets = vec![1.0, 2.0];
let targets = vec![10_001.0, 2.0];
// Without freezing (baseline)
let mut sys1 = build_system_with_cubic_targets(targets.clone());