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

View File

@@ -7,9 +7,17 @@ description = "Core component trait definitions for Entropyk thermodynamic simul
license = "MIT OR Apache-2.0"
repository = "https://github.com/entropyk/entropyk"
[features]
default = []
ffi = []
http = []
[dependencies]
# Core types will be added when core crate is created
# entropyk-core = { path = "../core" }
# Core types from Story 1.2
entropyk-core = { path = "../core" }
# Fluid properties backend (Story 5.1 - FluidBackend integration)
entropyk-fluids = { path = "../fluids" }
# Error handling
thiserror = "1.0"
@@ -18,8 +26,8 @@ thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
# Testing utilities
# tokio-test = "0.4"
# Floating-point assertions
approx = "0.5"
[lib]
name = "entropyk_components"