feat(components): add ThermoState generators and Eurovent backend demo

This commit is contained in:
Sepehr
2026-02-20 22:01:38 +01:00
parent 375d288950
commit 4a40fddfe3
271 changed files with 28614 additions and 447 deletions

28
crates/fluids/Cargo.toml Normal file
View File

@@ -0,0 +1,28 @@
[package]
name = "entropyk-fluids"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Fluid properties backend for Entropyk thermodynamic simulation library"
[dependencies]
entropyk-core = { path = "../core" }
thiserror.workspace = true
serde.workspace = true
serde_json = "1.0"
lru = "0.12"
entropyk-coolprop-sys = { path = "coolprop-sys", optional = true }
[features]
default = []
coolprop = ["entropyk-coolprop-sys"]
[dev-dependencies]
approx = "0.5"
criterion = "0.5"
[[bench]]
name = "cache_10k"
harness = false