feat(fmi): add FMI 2.0 Co-Simulation FMU export (bindings/fmi) and ntropyk-cli export-fmu command

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-18 00:46:34 +02:00
parent 329be3856f
commit f88cd7f7d8
14 changed files with 1369 additions and 14 deletions

View File

@@ -0,0 +1,13 @@
{
"inputs": [
{ "name": "T_air_c", "component": "cond_air_in", "param": "t_dry_c", "kind": "input" },
{ "name": "m_air", "component": "cond_air_in", "param": "m_flow_kg_s", "kind": "input" },
{ "name": "T_water_c", "component": "evap_water_in","param": "t_set_c", "kind": "input" },
{ "name": "m_water", "component": "evap_water_in","param": "m_flow_kg_s", "kind": "input" }
],
"outputs": [
{ "name": "COP", "kind": "cop" },
{ "name": "Q_cool_kW", "kind": "q_cooling_kw" },
{ "name": "P_kW", "kind": "compressor_power_kw" }
]
}