Sepehr ab5dc7e568 chore: remove BMAD framework files and IDE configuration artifacts
Clean up unused BMAD workflow, agent, and command files across all IDE
configurations (.agent, .clinerules, .cursor, .gemini, .github, .kilocode,
.opencode) and internal module files (_bmad/bmb, _bmad/bmm).

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-04-25 15:01:09 +02:00

Entropyk

High-performance thermodynamic simulation engine for HVAC/R and industrial systems.

📚 Documentation & Theory

Entropyk is built on rigorous physical principles.

  • Technical Manual: Exhaustive documentation of physical models (AHRI 540, ε-NTU), solver algorithms (Newton-Raphson, Picard), and multi-platform API parity.
  • Comprehensive Examples: Advanced scenarios including multi-circuit chillers, inverse control optimization, and HIL integration guide.

Quick Start (Rust)

[dependencies]
entropyk = "0.1"
use entropyk_solver::{System, FallbackConfig};

fn main() {
    let mut system = System::new();
    // ... define components and edges ...
    system.finalize().unwrap();
    
    let result = FallbackConfig::default().solve(&system).unwrap();
    println!("System Converged!");
}

Features

  • Physics-First: Strong typing for Pressure, Temperature, and Enthalpy.
  • Fluid Backends: CoolProp (RefProp compatible) and high-speed Tabular interpolators.
  • Advanced Solvers: Newton-Raphson with Armijo line search and Picard robust fallback.
  • Inverse Control: Built-in support for parameter estimation and design-to-target.
  • Multi-Platform: First-class support for Python, C/FFI, and WebAssembly.
Description
No description provided
Readme 5.2 MiB
Languages
Rust 82.7%
Python 8%
HTML 4.5%
Jupyter Notebook 4%
C 0.7%