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>
This commit is contained in:
30
crates/cli/examples/water_loop_two_pumps.json
Normal file
30
crates/cli/examples/water_loop_two_pumps.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user