Files
Entropyk/crates/solver/Cargo.toml
sepehr 3808e0f11b
Some checks failed
CI / check (push) Has been cancelled
Snapshot WIP: Probe calibration path, faer LU backend, and BPHX phase-change duty.
Checkpoint incomplete calibration work (cond SDT green, evap SST failing) plus related solver/UI changes so the next pass can fix and extend safely.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-19 21:44:01 +02:00

57 lines
1.2 KiB
TOML

[package]
name = "entropyk-solver"
version = "0.1.0"
edition = "2021"
authors = ["Sepehr <sepehr@entropyk.com>"]
description = "System topology and solver engine for Entropyk thermodynamic simulation"
license = "MIT OR Apache-2.0"
repository = "https://github.com/entropyk/entropyk"
[dependencies]
entropyk-components = { path = "../components" }
entropyk-core = { path = "../core" }
entropyk-solver-core = { path = "../solver-core" }
faer = "0.24"
nalgebra = "0.33"
petgraph = "0.6"
thiserror = "1.0"
tracing = "0.1"
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10"
serde_json = "1.0"
[dev-dependencies]
approx = "0.5"
serde_json = "1.0"
tracing-subscriber = "0.3"
entropyk-fluids = { path = "../fluids", features = ["coolprop"] }
criterion = "0.5"
[[bench]]
name = "lu_solve"
harness = false
[[bench]]
name = "lu_backends"
harness = false
[[bench]]
name = "residual_jacobian_assembly"
harness = false
[[bench]]
name = "full_solve"
harness = false
[[bench]]
name = "batch_solve"
harness = false
[features]
# Enables the end-to-end emergent-pressure integration test, which needs a
# CoolProp backend (entropy + saturation) unavailable in the mock/TestBackend.
coolprop = ["entropyk-fluids/coolprop"]
[lib]
name = "entropyk_solver"
path = "src/lib.rs"