Add diagram workbench UI with Modelica DoF coaching and ISO glyphs.

Ship the Next.js cycle editor with CAD chrome, technical HX symbols, Fixed/Free boundary guidance, and secondary water/air pressure drop support in the solver stack.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-17 22:46:46 +02:00
parent 62efea0646
commit 3358b74342
275 changed files with 70187 additions and 5230 deletions

View File

@@ -226,7 +226,13 @@ fn test_converged_state_is_converged() {
use entropyk_solver::ConvergedState;
use entropyk_solver::ConvergenceStatus;
let state = ConvergedState::new(vec![1.0, 2.0, 3.0], 10, 1e-8, ConvergenceStatus::Converged, entropyk_solver::SimulationMetadata::new("".to_string()));
let state = ConvergedState::new(
vec![1.0, 2.0, 3.0],
10,
1e-8,
ConvergenceStatus::Converged,
entropyk_solver::SimulationMetadata::new("".to_string()),
);
assert!(state.is_converged());
assert_eq!(state.iterations, 10);