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>
31 lines
640 B
JSON
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
|
|
}
|
|
}
|