Files
Entropyk/crates/cli/examples/water_loop_two_pumps.json
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

31 lines
640 B
JSON

{
"name": "Water loop with two real pumps",
"description": "Single circuit: two pumps in a loop (integration test for real Pump)",
"fluid": "Water",
"circuits": [
{
"id": 0,
"name": "Water loop",
"components": [
{
"type": "Pump",
"name": "pump1"
},
{
"type": "Pump",
"name": "pump2"
}
],
"edges": [
{ "from": "pump1:outlet", "to": "pump2:inlet" },
{ "from": "pump2:outlet", "to": "pump1:inlet" }
]
}
],
"solver": {
"strategy": "newton",
"max_iterations": 200,
"tolerance": 1e-6
}
}