open se gate buttons and more AT stuf

This commit is contained in:
Philipp Schinacher
2025-11-22 10:00:25 +01:00
parent d31e429388
commit cd109e2895
2 changed files with 84 additions and 16 deletions

View File

@@ -1,42 +1,101 @@
<template> <template>
<v-container class="d-flex"> <v-container class="ga-6">
<v-row> <v-row>
<v-col cols="3"> <v-col cols="3">
<valve-control <valve-control valve-name="QM01"
valve-name="QM01" :node-id="`${baseNodeId}stBeforePCValve`"
node-id="ns=4;s=GVL_SCADA.stPolarisHMIInterface.stAtmoTemp.stBeforePCValve"
/> />
</v-col> </v-col>
<v-col cols="3"> <v-col cols="3">
<valve-control <valve-control
valve-name="QM02" valve-name="QM02"
node-id="ns=4;s=GVL_SCADA.stPolarisHMIInterface.stAtmoTemp.stBeforePfmValveHMI" :node-id="`${baseNodeId}stBeforePfmValveHMI`"
/> />
</v-col> </v-col>
<v-col cols="3">
<valve-control
valve-name="QM03"
:node-id="`${baseNodeId}stCompressedInertGasInletValve`"
/>
</v-col>
<v-col cols="3">
<valve-control
valve-name="QM04"
:node-id="`${baseNodeId}stCompressedAirInletValve`"
/>
</v-col>
</v-row>
<v-row>
<v-col cols="3"> <v-col cols="3">
<valve-control <valve-control
valve-name="QM09" valve-name="QM09"
node-id="ns=4;s=GVL_SCADA.stPolarisHMIInterface.stAtmoTemp.stAfterPfmValveHMI" :node-id="`${baseNodeId}stAfterPfmValve`"
/>
</v-col>
<v-col cols="3">
<valve-control
valve-name="QM20"
:node-id="`${baseNodeId}stInertAndPurgeInletValve`"
/>
</v-col>
<v-col cols="3">
<valve-control
valve-name="QM30"
:node-id="`${baseNodeId}stInertizingGasFlowCircuitInletValve`"
/> />
</v-col> </v-col>
<v-col cols="3"> <v-col cols="3">
<valve-control <valve-control
valve-name="QM40" valve-name="QM40"
node-id="ns=4;s=GVL_SCADA.stPolarisHMIInterface.stAtmoTemp.stInertAndPurgeOutletValve" :node-id="`${baseNodeId}stInertAndPurgeOutletValve`"
/>
</v-col>
</v-row>
<v-row>
<v-col cols="3">
<valve-control
valve-name="QM41"
:node-id="`${baseNodeId}stInertAndPurgeOutletPinchValve`"
/>
</v-col>
</v-row>
<v-row>
<v-col cols="3">
<p-v-card
pvTitle="PC Bottom Oxygen"
:node-id="`${baseNodeId}stProcessChamberBottomOxygenSafetySensor`"
/>
</v-col>
<v-col cols="3">
<p-v-card
pvTitle="PC Top Oxygen"
:node-id="`${baseNodeId}stProcessChamberTopOxygenSafetySensor`"
/>
</v-col>
<v-col cols="3">
<p-v-card
pvTitle="PC Pressure"
:node-id="`${baseNodeId}stProcessChamberRelativePressureSensor`"
/> />
</v-col> </v-col>
</v-row> </v-row>
</v-container> </v-container>
</template> </template>
<script> <script>
import ValveControl from '@/components/BaseComponents/ValveControl.vue' import ValveControl from "@/components/BaseComponents/ValveControl.vue";
import PVCard from "@/components/BaseComponents/PVCard.vue";
export default { export default {
name: 'AtmoManualView', name: "AtmoManualView",
components: { components: {
ValveControl, ValveControl,
} PVCard,
} },
data() {
return {
baseNodeId: "ns=4;s=GVL_SCADA.stPolarisHMIInterface.stAtmosphereControl.",
};
},
};
</script> </script>

View File

@@ -5,11 +5,16 @@
<gasflow detailsLink="/manual/gf" nodeId="ns=4;s=GVL_SCADA.stPolarisHMIInterface.stGasFlow" /> <gasflow detailsLink="/manual/gf" nodeId="ns=4;s=GVL_SCADA.stPolarisHMIInterface.stGasFlow" />
</v-col> </v-col>
<v-col cols="4"> <v-col cols="4">
<atmo detailsLink="/manual/atmo" nodeId="ns=4;s=GVL_SCADA.stPolarisHMIInterface.stAtmoTemp" /> <atmo detailsLink="/manual/atmo" nodeId="ns=4;s=GVL_SCADA.stPolarisHMIInterface.stAtmosphereControl" />
</v-col> </v-col>
<v-col cols="4"> <v-col cols="4">
<laser-control nodeId="ns=4;s=GVL_SCADA.stLaserHMIInterface" /> <laser-control nodeId="ns=4;s=GVL_SCADA.stLaserHMIInterface" />
</v-col> </v-col>
<v-col cols="4">
<control-button nodeId="ns=4;s=GVL_SCADA.stPolarisHMIInterface.stButtonRequestOpenProcessChamber">
Open Door
</control-button>
</v-col>
</v-row> </v-row>
</v-container> </v-container>
</template> </template>
@@ -19,6 +24,9 @@
import Gasflow from '@/components/Gasflow.vue'; import Gasflow from '@/components/Gasflow.vue';
import Atmo from '@/components/Atmo.vue'; import Atmo from '@/components/Atmo.vue';
import LaserControl from '@/components/LaserControl.vue'; import LaserControl from '@/components/LaserControl.vue';
import ControlButton from '@/components/BaseComponents/ControlButton.vue';
const AtmoScope = "ns=4;s=GVL_SCADA.stPolarisHMIInterface.stAtmosphereControl";
export default { export default {
name: 'ManualView', name: 'ManualView',
@@ -26,6 +34,7 @@
Gasflow, Gasflow,
Atmo, Atmo,
LaserControl, LaserControl,
ControlButton
}, },
} }
</script> </script>