fix device ports

This commit is contained in:
Junhan Chang
2025-06-17 13:27:27 +08:00
parent dd7abe987e
commit 18c4eb3e4d
7 changed files with 113 additions and 41 deletions

View File

@@ -730,7 +730,7 @@
"type": "fluid",
"port": {
"multiway_valve_2": "2",
"solenoid_valve_1": "1"
"solenoid_valve_1": "in"
}
},
{
@@ -739,7 +739,7 @@
"target": "vacuum_pump_1",
"type": "fluid",
"port": {
"solenoid_valve_1": "2",
"solenoid_valve_1": "out",
"vacuum_pump_1": "vacuumpump"
}
},
@@ -750,7 +750,7 @@
"type": "fluid",
"port": {
"multiway_valve_2": "3",
"solenoid_valve_2": "1"
"solenoid_valve_2": "in"
}
},
{
@@ -759,7 +759,7 @@
"target": "gas_source_1",
"type": "fluid",
"port": {
"solenoid_valve_2": "2",
"solenoid_valve_2": "out",
"gas_source_1": "gassource"
}
},

View File

@@ -122,39 +122,39 @@
],
"links": [
{
"source": "reactor",
"target": "vacuum_valve",
"type": "physical",
"source": "vacuum_valve",
"target": "reactor",
"type": "fluid",
"port": {
"reactor": "top",
"vacuum_valve": "1"
"vacuum_valve": "out"
}
},
{
"source": "reactor",
"target": "gas_valve",
"type": "physical",
"source": "gas_valve",
"target": "reactor",
"type": "fluid",
"port": {
"reactor": "top",
"gas_valve": "1"
"gas_valve": "out"
}
},
{
"source": "vacuum_pump",
"target": "vacuum_valve",
"type": "physical",
"source": "vacuum_valve",
"target": "vacuum_pump",
"type": "fluid",
"port": {
"vacuum_pump": "out",
"vacuum_valve": "0"
"vacuum_valve": "in"
}
},
{
"source": "gas_source",
"target": "gas_valve",
"type": "physical",
"source": "gas_valve",
"target": "gas_source",
"type": "fluid",
"port": {
"gas_source": "out",
"gas_valve": "0"
"gas_valve": "in"
}
}
]