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

@@ -16,7 +16,9 @@ fn coolprop_vendor_root() -> Option<PathBuf> {
PathBuf::from("vendor/coolprop"),
];
candidates.into_iter().find_map(|p| {
p.canonicalize().ok().filter(|abs| abs.join("CMakeLists.txt").exists())
p.canonicalize()
.ok()
.filter(|abs| abs.join("CMakeLists.txt").exists())
})
}
@@ -145,10 +147,7 @@ fn main() {
dst.display()
);
println!("cargo:rustc-link-search=native={}/lib", dst.display());
println!(
"cargo:rustc-link-search=native={}/build",
vendor.display()
);
println!("cargo:rustc-link-search=native={}/build", vendor.display());
println!("cargo:rustc-link-lib=static=CoolProp");
if target_os == "macos" {