From 3f15104ee016e22c21f2908d70d398f9e8bd17c5 Mon Sep 17 00:00:00 2001 From: wangsr Date: Sat, 9 Dec 2023 17:15:59 +0800 Subject: [PATCH] =?UTF-8?q?add=20-=20=E8=BE=93=E9=80=81=E5=89=8D=E5=90=8E?= =?UTF-8?q?=E7=AB=AF=E8=BF=9E=E6=8E=A5=20=E5=87=86=E5=A4=87=E5=AF=B9?= =?UTF-8?q?=E7=82=B9=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AutoControl/AutoControl.cs | 2 +- .../LjDeliver/DeliverInitAction.cs | 44 +- .../LjDeliver/Entity/DeliverEntity.cs | 207 +- .../ManualControl/ManualControlAction.cs | 14 +- .../Data/MCProject/nodeForm/LjDeliver.xml | 2325 +++++++++++------ 5 files changed, 1729 insertions(+), 863 deletions(-) diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/AutoControl/AutoControl.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/AutoControl/AutoControl.cs index 6b6ea21..d249d97 100644 --- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/AutoControl/AutoControl.cs +++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/AutoControl/AutoControl.cs @@ -165,7 +165,7 @@ namespace Mesnac.Action.ChemicalWeighing.AutoControl if (ButtonE.WetManualGel == runtime.Sender) { - if (MessageBox.Show("请使用手动加料?", "请使用手动加料", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) + if (MessageBox.Show("请使用手动加料", "请使用手动加料", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) { return; } diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/DeliverInitAction.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/DeliverInitAction.cs index 19dd47d..65b74e7 100644 --- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/DeliverInitAction.cs +++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/DeliverInitAction.cs @@ -2,15 +2,20 @@ using DevExpress.Utils.FormShadow; using Mesnac.Action.Base; using Mesnac.Action.ChemicalWeighing.LjDeliver.Entity; +using Mesnac.Controls.Base; using Mesnac.Controls.ChemicalWeighing; +using Mesnac.Controls.Default; +using Mesnac.Controls.Feeding; using System; using System.Collections.Generic; +using System.Diagnostics; using System.Linq; using System.Reflection; using System.Text; using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; +using Timer = System.Windows.Forms.Timer; namespace Mesnac.Action.ChemicalWeighing.LjDeliver { @@ -19,6 +24,16 @@ namespace Mesnac.Action.ChemicalWeighing.LjDeliver List Controls; HslBottleEntity bottleE = new HslBottleEntity(); + SwitchLightEntity SwitchlightE = new SwitchLightEntity(); + JzfEntity JzfE = new JzfEntity(); + ThreeWayValveEntity ThreeWayValveE = new ThreeWayValveEntity(); + LjSwitchEntity LjSwitchE = new LjSwitchEntity(); + RSCREWBIGEntity RSCREWBIGE = new RSCREWBIGEntity(); + MCLabelEntity LabelE = new MCLabelEntity(); + + private Timer timer; + + public void Run(RuntimeParameter runtime) { @@ -26,13 +41,36 @@ namespace Mesnac.Action.ChemicalWeighing.LjDeliver Controls = GetAllControls(); - ControlsHelper.ControlImport(bottleE, Controls); + SetAllControls(); //wangsr(); + timer = new Timer(); + timer.Interval = 1000; + timer.Enabled = true; + timer.Tick += GetPlcValue;//添加事件 + } + private void SetAllControls() + { + ControlsHelper.ControlImport(bottleE, Controls); + ControlsHelper.ControlImport(SwitchlightE, Controls); + ControlsHelper.ControlImport(JzfE, Controls); + ControlsHelper.ControlImport(ThreeWayValveE, Controls); + ControlsHelper.ControlImport(LjSwitchE, Controls); + ControlsHelper.ControlImport(RSCREWBIGE, Controls); + ControlsHelper.ControlImport(LabelE, Controls); + } + private void GetPlcValue(object sender, EventArgs e) + { + if (GetAllDbMCControlsByOption(DbOptionTypes.QueryAndModify).Count == 0) + { + timer.Stop(); + timer.Dispose(); + } + } @@ -61,7 +99,9 @@ namespace Mesnac.Action.ChemicalWeighing.LjDeliver - //测试程序 + /// + /// 测试程序 + /// private void wangsr() { Random rd = new Random(); diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/DeliverEntity.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/DeliverEntity.cs index a37d8ee..e441f26 100644 --- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/DeliverEntity.cs +++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/DeliverEntity.cs @@ -1,4 +1,5 @@ using Mesnac.Controls.ChemicalWeighing; +using Mesnac.Controls.Default; using System; using System.Collections.Generic; using System.Linq; @@ -7,7 +8,211 @@ using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing.LjDeliver.Entity { - public class HslBottleEntity + internal class MCLabelEntity + { + public MCLabel PR1ASI01 { get; set; } + public MCLabel PR1BSI01 { get; set; } + public MCLabel PR1CSI01 { get; set; } + public MCLabel PR1DSI01 { get; set; } + public MCLabel PR1ESI01 { get; set; } + public MCLabel PR1FSI01 { get; set; } + public MCLabel PR1GSI01 { get; set; } + public MCLabel PR1HSI01 { get; set; } + public MCLabel PR1ISI01 { get; set; } + public MCLabel PR1JSI01 { get; set; } + public MCLabel PR1KSI01 { get; set; } + public MCLabel PR1LSI01 { get; set; } + public MCLabel PR1MSI01 { get; set; } + public MCLabel PR1NSI01 { get; set; } + public MCLabel PR1OSI01 { get; set; } + public MCLabel HR1ASI01 { get; set; } + public MCLabel HR1BSI01 { get; set; } + public MCLabel HR1CSI01 { get; set; } + public MCLabel HR1DSI01 { get; set; } + public MCLabel HR1ESI01 { get; set; } + public MCLabel HR1FSI01 { get; set; } + public MCLabel HR1GSI01 { get; set; } + public MCLabel HR1HSI01 { get; set; } + public MCLabel HR1ISI01 { get; set; } + public MCLabel HR1JSI01 { get; set; } + public MCLabel HR1KSI01 { get; set; } + public MCLabel HR1LSI01 { get; set; } + public MCLabel HR1MSI01 { get; set; } + public MCLabel HR1NSI01 { get; set; } + public MCLabel HR1OSI01 { get; set; } + public MCLabel HR1ASI02 { get; set; } + public MCLabel HR1BSI02 { get; set; } + public MCLabel HR1CSI02 { get; set; } + public MCLabel HR1DSI02 { get; set; } + public MCLabel HR1ESI02 { get; set; } + public MCLabel HR1FSI02 { get; set; } + public MCLabel HR1GSI02 { get; set; } + public MCLabel HR1HSI02 { get; set; } + public MCLabel HR1ISI02 { get; set; } + public MCLabel HR1JSI02 { get; set; } + public MCLabel HR1KSI02 { get; set; } + public MCLabel HR1LSI02 { get; set; } + public MCLabel HR1MSI02 { get; set; } + public MCLabel HR1NSI02 { get; set; } + public MCLabel HR1OSI02 { get; set; } + + } + + internal class RSCREWBIGEntity + { + public RSCREWBIG DM1ASF01 { get; set; } + public RSCREWBIG DM1BSF01 { get; set; } + public RSCREWBIG DM1CSF01 { get; set; } + public RSCREWBIG DM1DSF01 { get; set; } + public RSCREWBIG DM1ESF01 { get; set; } + public RSCREWBIG DM1FSF01 { get; set; } + public RSCREWBIG DM1GSF01 { get; set; } + public RSCREWBIG DM1HSF01 { get; set; } + public RSCREWBIG DM1ISF01 { get; set; } + public RSCREWBIG DM1JSF01 { get; set; } + public RSCREWBIG DM1KSF01 { get; set; } + public RSCREWBIG DM1LSF01 { get; set; } + public RSCREWBIG DM1MSF01 { get; set; } + public RSCREWBIG DM1NSF01 { get; set; } + public RSCREWBIG DM1OSF01 { get; set; } + } + + internal class LjSwitchEntity + { + public LjSwith BU1DBT01 { get; set; } + public LjSwith BU1DBT02 { get; set; } + public LjSwith BU1DBT03 { get; set; } + public LjSwith BU1DBT04 { get; set; } + public LjSwith BU1DBT06 { get; set; } + public LjSwith BU1DBT07 { get; set; } + public LjSwith BU2DBT01 { get; set; } + public LjSwith BU2DBT02 { get; set; } + public LjSwith BU2DBT03 { get; set; } + public LjSwith BU2DBT04 { get; set; } + public LjSwith BU2DBT06 { get; set; } + public LjSwith BU2DBT07 { get; set; } + public LjSwith BU3DBT01 { get; set; } + public LjSwith BU3DBT02 { get; set; } + public LjSwith BU3DBT03 { get; set; } + public LjSwith BU3DBT04 { get; set; } + public LjSwith BU3DBT06 { get; set; } + public LjSwith BU3DBT07 { get; set; } + public LjSwith AS1DBT01 { get; set; } + public LjSwith AS1DBT02 { get; set; } + public LjSwith AS1DBT03 { get; set; } + public LjSwith AS1DBT04 { get; set; } + public LjSwith AS1DBT05 { get; set; } + public LjSwith AS1DBT06 { get; set; } + public LjSwith AS1DBT07 { get; set; } + public LjSwith AS2DBT01 { get; set; } + public LjSwith AS2DBT02 { get; set; } + public LjSwith AS2DBT03 { get; set; } + public LjSwith AS2DBT04 { get; set; } + public LjSwith AS2DBT05 { get; set; } + public LjSwith AS2DBT06 { get; set; } + public LjSwith AS2DBT07 { get; set; } + public LjSwith AS3DBT01 { get; set; } + public LjSwith AS3DBT02 { get; set; } + public LjSwith AS3DBT03 { get; set; } + public LjSwith AS3DBT04 { get; set; } + public LjSwith AS3DBT05 { get; set; } + public LjSwith AS3DBT06 { get; set; } + public LjSwith AS3DBT07 { get; set; } + public LjSwith AS1PCP01 { get; set; } + public LjSwith AS1PCP02 { get; set; } + public LjSwith AS1PCP03 { get; set; } + public LjSwith AS1ASI01 { get; set; } + public LjSwith AS1BSI01 { get; set; } + public LjSwith AS1CSI01 { get; set; } + public LjSwith AS1DSI01 { get; set; } + public LjSwith AS1ESI01 { get; set; } + public LjSwith AS1FSI01 { get; set; } + public LjSwith AS1GSI01 { get; set; } + public LjSwith AS1HSI01 { get; set; } + public LjSwith AS1ISI01 { get; set; } + public LjSwith AS1JSI01 { get; set; } + public LjSwith AS1KSI01 { get; set; } + public LjSwith AS1LSI01 { get; set; } + public LjSwith AS1MSI01 { get; set; } + public LjSwith AS1NSI01 { get; set; } + public LjSwith AS1OSI01 { get; set; } + } + + internal class ThreeWayValveEntity + { + public ThreeWayValve DV1PCP01 { get; set; } + public ThreeWayValve DV1PCP02 { get; set; } + public ThreeWayValve DV1PCP03 { get; set; } + public ThreeWayValve DV1PCP04 { get; set; } + public ThreeWayValve DV1PCP05 { get; set; } + public ThreeWayValve DV1PCP06 { get; set; } + public ThreeWayValve DV1PCP07 { get; set; } + public ThreeWayValve DV1PCP08 { get; set; } + public ThreeWayValve DV1PCP09 { get; set; } + public ThreeWayValve DV1PCP10 { get; set; } + public ThreeWayValve DV1PCP11 { get; set; } + public ThreeWayValve DV1PCP12 { get; set; } + public ThreeWayValve DV1PCP13 { get; set; } + public ThreeWayValve DV1PCP14 { get; set; } + public ThreeWayValve DV1PCP15 { get; set; } + public ThreeWayValve DV1PCP16 { get; set; } + public ThreeWayValve DV1PCP17 { get; set; } + public ThreeWayValve DV1PCP18 { get; set; } + public ThreeWayValve DV1PCP19 { get; set; } + public ThreeWayValve DV1PCP20 { get; set; } + } + + internal class JzfEntity + { + public MCLabel SPV1DBT01 { get; set; } + public MCLabel SPV1DBT02 { get; set; } + public MCLabel SPV2DBT01 { get; set; } + public MCLabel SPV2DBT02 { get; set; } + public MCLabel SPV3DBT01 { get; set; } + public MCLabel SPV3DBT02 { get; set; } + } + + internal class SwitchLightEntity + { + public SwitchLight HSiloA { get; set; } + public SwitchLight HSiloB { get; set; } + public SwitchLight HSiloC { get; set; } + public SwitchLight HSiloD { get; set; } + public SwitchLight HSiloE { get; set; } + public SwitchLight HSiloF { get; set; } + public SwitchLight HSiloG { get; set; } + public SwitchLight HSiloH { get; set; } + public SwitchLight HSiloI { get; set; } + public SwitchLight HSiloJ { get; set; } + public SwitchLight HSiloK { get; set; } + public SwitchLight HSiloL { get; set; } + public SwitchLight HSiloM { get; set; } + public SwitchLight HSiloN { get; set; } + public SwitchLight HSiloO { get; set; } + public SwitchLight LSiloA { get; set; } + public SwitchLight LSiloB { get; set; } + public SwitchLight LSiloC { get; set; } + public SwitchLight LSiloD { get; set; } + public SwitchLight LSiloE { get; set; } + public SwitchLight LSiloF { get; set; } + public SwitchLight LSiloG { get; set; } + public SwitchLight LSiloH { get; set; } + public SwitchLight LSiloI { get; set; } + public SwitchLight LSiloJ { get; set; } + public SwitchLight LSiloK { get; set; } + public SwitchLight LSiloL { get; set; } + public SwitchLight LSiloM { get; set; } + public SwitchLight LSiloN { get; set; } + public SwitchLight LSiloO { get; set; } + public SwitchLight Atank1 { get; set; } + public SwitchLight Atank2 { get; set; } + public SwitchLight Atank3 { get; set; } + public SwitchLight Atank4 { get; set; } + public SwitchLight Atank5 { get; set; } + public SwitchLight Atank6 { get; set; } + } + + internal class HslBottleEntity { public HslBottle Bottle1 { get; set; } public HslBottle Bottle2 { get; set; } diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/ManualControl/ManualControlAction.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/ManualControl/ManualControlAction.cs index 1938007..189c59c 100644 --- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/ManualControl/ManualControlAction.cs +++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/ManualControl/ManualControlAction.cs @@ -1021,7 +1021,7 @@ namespace Mesnac.Action.ChemicalWeighing.ManualControl } } } - next1: + next1: PlcControl("DB2119.40.0", valueSet); PlcControl("DB2119.44.0", valueFast); PlcControl("DB2119.46.0", valuePoint); @@ -1048,7 +1048,7 @@ namespace Mesnac.Action.ChemicalWeighing.ManualControl } } } - next2: + next2: PlcControl("DB2119.40.0", valueSet); PlcControl("DB2119.44.0", valueFast); PlcControl("DB2119.46.0", valuePoint); @@ -1121,7 +1121,7 @@ namespace Mesnac.Action.ChemicalWeighing.ManualControl } } } - next3: + next3: PlcControl("DB2119.62.0", valueSet); PlcControl("DB2119.66.0", valueFast); PlcControl("DB2119.68.0", valuePoint); @@ -1148,7 +1148,7 @@ namespace Mesnac.Action.ChemicalWeighing.ManualControl } } } - next4: + next4: PlcControl("DB2119.62.0", valueSet); PlcControl("DB2119.66.0", valueFast); PlcControl("DB2119.68.0", valuePoint); @@ -1221,7 +1221,7 @@ namespace Mesnac.Action.ChemicalWeighing.ManualControl } } } - next5: + next5: PlcControl("DB2119.84.0", valueSet); PlcControl("DB2119.88.0", valueFast); PlcControl("DB2119.90.0", valuePoint); @@ -1248,7 +1248,7 @@ namespace Mesnac.Action.ChemicalWeighing.ManualControl } } } - next6: + next6: PlcControl("DB2119.84.0", valueSet); PlcControl("DB2119.88.0", valueFast); PlcControl("DB2119.90.0", valuePoint); @@ -1455,7 +1455,7 @@ namespace Mesnac.Action.ChemicalWeighing.ManualControl #region 下发请求 - if(DownloadRequest == runtime.Sender) + if (DownloadRequest == runtime.Sender) { bool mixok1 = PlcConnect.Instance.ReadBool("DB3000.0.0").Content; Time(1, mixok1 ? 1 : 0); diff --git a/Main/MCEdit/Data/MCProject/nodeForm/LjDeliver.xml b/Main/MCEdit/Data/MCProject/nodeForm/LjDeliver.xml index 29fcaf6..71ae173 100644 --- a/Main/MCEdit/Data/MCProject/nodeForm/LjDeliver.xml +++ b/Main/MCEdit/Data/MCProject/nodeForm/LjDeliver.xml @@ -1,6 +1,512 @@ + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 1529, 428 + HR1OSI02 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 1442, 430 + HR1NSI02 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 1383, 430 + HR1MSI02 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 1324, 430 + HR1LSI02 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 1265, 430 + HR1KSI02 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 1206, 430 + HR1JSI02 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 937, 431 + HR1FSI02 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 665, 431 + HR1BSI02 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 606, 430 + HR1ASI02 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 1147, 430 + HR1ISI02 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 1088, 430 + HR1HSI02 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 1028, 430 + HR1GSI02 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 878, 431 + HR1ESI02 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 783, 431 + HR1DSI02 + 11, 12 + + + + + + Red + DarkGray + + + False + + + + None + True + True + 0 + White + 724, 431 + HR1CSI02 + 11, 12 + + + + + + + False + + + + None + True + True + MiddleCenter + White + 1041, 92 + SpecialLabelBlue508 + 3, 77 + + + + + + + False + + + + None + True + True + MiddleCenter + White + 1101, 92 + SpecialLabelBlue507 + 3, 77 + + + + + + + + + + + 1087, 80 + DV1PCP19 + 22, 12 + + + + + + + + + + + 1028, 81 + DV1PCP06 + 22, 12 + + + + + + + + + + + 576, 109 + DV1PCP04 + 22, 12 + + + + + + + False + + + + None + True + True + MiddleCenter + Aqua + 600, 98 + SpecialLabelBlue509 + 730, 1 + + + + + + + False + + + + None + True + True + MiddleCenter + Aqua + 600, 99 + SpecialLabelBlue510 + 1, 28 + + + + + + + + + + + 1263, 82 + DV1PCP20 + 22, 12 + + + + + + + False + + + + None + True + True + MiddleCenter + White + 588, 86 + SpecialLabelBlue511 + 752, 3 + + + + + + + False + + + + None + True + True + MiddleCenter + White + 588, 87 + SpecialLabelBlue512 + 3, 30 + + + + + + + + + + + 462, 142 + DV1PCP16 + 22, 12 + + + + + + + False + + + + None + True + True + MiddleCenter + White + 472, 145 + SpecialLabelBlue513 + 106, 3 + @@ -178,29 +684,39 @@ HslConveyer2147483646 84, 30 - - ParametersWithPc.FC4_Valve.DV1PCP11_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP11_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP12_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP11_AlarmLeftPosition + + + + + + + + + 1383, 29 - ThreeWayValve2147483561 + DV1PCP18 22, 12 - - ParametersWithPc.FC4_Valve.DV1PCP11_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP11_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP12_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP11_AlarmLeftPosition + + + + + + + + + 1204, 29 - ThreeWayValve2147483562 + DV1PCP17 22, 12 - - ParametersWithPc.FC4_Valve.AS1PCP03_Alarm - ParametersWithPc.FC4_Valve.AS1PCP03_Set + + + + + 567, 372 - LjSwith403 + AS1PCP03 14, 12 @@ -221,15 +737,16 @@ SpecialLabelBlue690 3, 83 - + ylNormal 1534, 466 - RSCREWBIG16 + DM1OSF01 36, 10 - + - ParametersWithPc.FC3_Analog.HR1JSI01_Value + + Red DarkGray @@ -241,15 +758,16 @@ None True True - PR1ASI01 - Red - 1521, 300 - MCLabel283 - 53, 12 + 0 + White + 1529, 299 + HR1OSI01 + 11, 12 - + - ParametersWithPc.FC3_Analog.PR1JSI01_Value + + Red DarkGray @@ -261,29 +779,33 @@ None True True - PR1ASI01 - Red - 1521, 253 - MCLabel284 - 53, 12 + 0 + White + 1529, 252 + PR1OSI01 + 11, 12 - - ParametersWithPc.FC16_Level.LSiloJ - 1541, 423 - SwitchLight90 + + + + 1541, 412 + LSiloO 10, 10 - - ParametersWithPc.FC16_Level.HSiloJ + + + 1541, 275 - SwitchLight91 + HSiloO 10, 10 - - ParametersWithPc.FC4_Valve.AS1JSI01_Alarm - ParametersWithPc.FC4_Valve.AS1JSI01_Set + + + + + 1560, 237 - LjSwith402 + AS1OSI01 14, 12 @@ -569,15 +1091,6 @@ SpecialLabelBlue675 981, 3 - - ParametersWithPc.FC4_Valve.DV1PCP11_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP11_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP12_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP11_AlarmLeftPosition - 1265, 102 - ThreeWayValve2147483563 - 22, 12 - @@ -592,9 +1105,9 @@ True MiddleCenter White - 1277, 109 + 1277, 89 SpecialLabelBlue674 - 3, 60 + 3, 80 @@ -610,98 +1123,21 @@ True MiddleCenter White - 1337, 109 + 1337, 86 SpecialLabelBlue673 - 3, 60 - - - ParametersWithPc.FC4_Valve.DV1PCP11_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP11_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP12_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP11_AlarmLeftPosition - 1094, 102 - ThreeWayValve2147483564 - 22, 12 - - - - - - - False - - - - None - True - True - MiddleCenter - White - 1100, 106 - SpecialLabelBlue672 - 240, 3 - - - ParametersWithPc.FC4_Valve.DV1PCP04_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP04_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP04_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP04_AlarmLeftPosition - 1087, 64 - ThreeWayValve2147483566 - 22, 12 - - - - - - - False - - - - None - True - True - MiddleCenter - White - 1043, 68 - SpecialLabelBlue670 - 55, 3 + 3, 83 - - - - - - False - - - - None - True - True - MiddleCenter - White - 1041, 68 - SpecialLabelBlue671 - 3, 100 - - - ParametersWithPc.FC4_Valve.DV1PCP05_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP05_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP05_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP05_AlarmLeftPosition + + + + + + + + + 1145, 30 - ThreeWayValve2147483567 - 22, 12 - - - ParametersWithPc.FC4_Valve.DV1PCP04_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP04_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP04_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP04_AlarmLeftPosition - 1087, 30 - ThreeWayValve2147483568 + DV1PCP05 22, 12 @@ -722,24 +1158,6 @@ SpecialLabelBlue669 3, 138 - - - - - - False - - - - None - True - True - MiddleCenter - White - 1100, 36 - SpecialLabelBlue668 - 3, 132 - @@ -794,33 +1212,34 @@ SpecialLabelBlue665 3, 136 - + ylNormal 1446, 472 - RSCREWBIG12 + DM1NSF01 43, 10 - + ylNormal 1386, 470 - RSCREWBIG13 + DM1MSF01 43, 10 - + ylNormal 1328, 470 - RSCREWBIG14 + DM1LSF01 43, 10 - + ylNormal 1269, 470 - RSCREWBIG15 + DM1KSF01 43, 10 - + - ParametersWithPc.FC3_Analog.HR1JSI01_Value + + Red DarkGray @@ -832,15 +1251,16 @@ None True True - PR1ASI01 - Red - 1430, 231 - MCLabel275 - 53, 12 + 0 + White + 1442, 229 + HR1NSI01 + 11, 12 - + - ParametersWithPc.FC3_Analog.PR1JSI01_Value + + Red DarkGray @@ -852,65 +1272,75 @@ None True True - PR1ASI01 - Red - 1430, 184 - MCLabel276 - 53, 12 + 0 + White + 1442, 182 + PR1NSI01 + 11, 12 - - ParametersWithPc.FC16_Level.LSiloG - 1272, 426 - SwitchLight82 + + + + 1272, 415 + LSiloK 13, 13 - - ParametersWithPc.FC16_Level.LSiloH - 1332, 426 - SwitchLight83 + + + + 1332, 415 + LSiloL 13, 13 - - ParametersWithPc.FC16_Level.LSiloI - 1392, 426 - SwitchLight84 + + + + 1392, 415 + LSiloM 13, 13 - - ParametersWithPc.FC16_Level.LSiloJ - 1450, 425 - SwitchLight85 + + + + 1450, 414 + LSiloN 13, 13 - - ParametersWithPc.FC16_Level.HSiloJ + + + 1450, 206 - SwitchLight86 + HSiloN 13, 13 - - ParametersWithPc.FC16_Level.HSiloI + + + 1392, 206 - SwitchLight87 + HSiloM 13, 13 - - ParametersWithPc.FC16_Level.HSiloH + + + 1332, 206 - SwitchLight88 + HSiloL 13, 13 - - ParametersWithPc.FC16_Level.HSiloG + + + 1272, 205 - SwitchLight89 + HSiloK 13, 13 - - ParametersWithPc.FC4_Valve.AS1JSI01_Alarm - ParametersWithPc.FC4_Valve.AS1JSI01_Set + + + + + 1469, 168 - LjSwith398 + AS1NSI01 14, 12 @@ -926,16 +1356,19 @@ Bottle14 53, 308 - - ParametersWithPc.FC4_Valve.AS1ISI01_Alarm - ParametersWithPc.FC4_Valve.AS1ISI01_Set + + + + + 1410, 168 - LjSwith399 + AS1MSI01 14, 12 - + - ParametersWithPc.FC3_Analog.HR1ISI01_Value + + Red DarkGray @@ -947,15 +1380,16 @@ None True True - PR1ASI01 - Red - 1371, 231 - MCLabel277 - 53, 12 + 0 + White + 1383, 229 + HR1MSI01 + 11, 12 - + - ParametersWithPc.FC3_Analog.PR1ISI01_Value + + Red DarkGray @@ -967,11 +1401,11 @@ None True True - PR1ASI01 - Red - 1371, 184 - MCLabel278 - 53, 12 + 0 + White + 1383, 182 + PR1MSI01 + 11, 12 100 @@ -986,16 +1420,18 @@ Bottle13 53, 308 - - ParametersWithPc.FC4_Valve.AS1HSI01_Alarm + + + 1351, 168 - LjSwith400 + AS1LSI01 14, 12 - + - ParametersWithPc.FC3_Analog.HR1HSI01_Value + + Red DarkGray @@ -1007,15 +1443,16 @@ None True True - PR1ASI01 - Red - 1312, 231 - MCLabel279 - 53, 12 + 0 + White + 1324, 229 + HR1LSI01 + 11, 12 - + - ParametersWithPc.FC3_Analog.LS1HSI01_Value + + Red DarkGray @@ -1027,11 +1464,11 @@ None True True - PR1ASI01 - Red - 1312, 184 - MCLabel280 - 53, 12 + 0 + White + 1324, 182 + PR1LSI01 + 11, 12 100 @@ -1046,16 +1483,19 @@ Bottle12 53, 308 - - ParametersWithPc.FC4_Valve.AS1GSI01_P1 - ParametersWithPc.FC4_Valve.AS1GSI01_Set + + + + + 1292, 168 - LjSwith401 + AS1KSI01 14, 12 - + - ParametersWithPc.FC3_Analog.PR1GSI01_Value + + Red DarkGray @@ -1067,15 +1507,16 @@ None True True - PR1ASI01 - Red - 1253, 231 - MCLabel281 - 53, 12 + 0 + White + 1265, 229 + HR1KSI01 + 11, 12 - + - ParametersWithPc.FC3_Analog.PR1GSI01_Value + + Red DarkGray @@ -1087,11 +1528,11 @@ None True True - PR1ASI01 - Red - 1253, 184 - MCLabel282 - 53, 12 + 0 + White + 1265, 182 + PR1KSI01 + 11, 12 100 @@ -1106,13 +1547,17 @@ Bottle11 53, 308 - - ParametersWithPc.FC4_Valve.DV1PCP15_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP15_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP15_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP15_AlarmLeftPosition - 877, 64 - ThreeWayValve2147483569 + + + + + + + + + + 877, 58 + DV1PCP15 22, 12 @@ -1147,26 +1592,34 @@ True MiddleCenter White - 949, 67 + 949, 61 SpecialLabelBlue663 - 3, 98 - - - ParametersWithPc.FC4_Valve.DV1PCP11_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP11_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP11_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP11_AlarmLeftPosition - 606, 104 - ThreeWayValve2147483571 + 3, 104 + + + + + + + + + + + 606, 112 + DV1PCP11 22, 12 - - ParametersWithPc.FC4_Valve.DV1PCP12_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP12_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP12_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP12_AlarmLeftPosition + + + + + + + + + 612, 131 - ThreeWayValve2147483572 + DV1PCP12 22, 12 @@ -1187,13 +1640,17 @@ SpecialLabelBlue662 55, 3 - - ParametersWithPc.FC4_Valve.DV1PCP03_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP03_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP03_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP03_AlarmLeftPosition + + + + + + + + + 722, 29 - ThreeWayValve2147483573 + DV1PCP03 22, 12 @@ -1210,9 +1667,9 @@ True MiddleCenter White - 620, 110 + 620, 115 SpecialLabelBlue661 - 3, 60 + 3, 50 @@ -1264,9 +1721,9 @@ True MiddleCenter White - 795, 106 + 795, 115 SpecialLabelBlue658 - 3, 60 + 3, 51 @@ -1300,7 +1757,7 @@ True MiddleCenter White - 513, 106 + 514, 115 SpecialLabelBlue657 284, 3 @@ -1318,7 +1775,7 @@ True MiddleCenter Aqua - 572, 87 + 572, 74 SpecialLabelBlue655 304, 1 @@ -1336,7 +1793,7 @@ True MiddleCenter White - 554, 67 + 554, 61 SpecialLabelBlue654 397, 3 @@ -1354,7 +1811,7 @@ True MiddleCenter Aqua - 489, 50 + 489, 46 SpecialLabelBlue653 923, 1 @@ -1376,18 +1833,22 @@ SpecialLabelBlue652 983, 3 - - ParametersWithPc.FC4_Valve.AS1PCP02_Alarm - ParametersWithPc.FC4_Valve.AS1PCP02_Set - 526, 142 - LjSwith397 + + + + + + 527, 128 + AS1PCP02 14, 12 - - ParametersWithPc.FC4_Valve.AS1PCP01_Alarm - ParametersWithPc.FC4_Valve.AS1PCP01_Set - 484, 113 - LjSwith396 + + + + + + 484, 62 + AS1PCP01 14, 12 @@ -1404,11 +1865,11 @@ None True True - 玉米粉 + 玉米粉等 Yellow - 197, 601 + 204, 604 MCLabel274 - 41, 12 + 53, 12 @@ -1424,11 +1885,11 @@ None True True - 小料 + 小料等 Yellow 209, 319 MCLabel273 - 29, 12 + 41, 12 @@ -1588,40 +2049,56 @@ SpecialLabelBlue647 22, 3 - - ParametersWithPc.FC4_Valve.DV1PCP14_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP14_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP14_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP14_AlarmLeftPosition + + + + + + + + + 545, 421 - ThreeWayValve2147483577 + DV1PCP14 22, 12 - - ParametersWithPc.FC4_Valve.DV1PCP13_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP13_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP13_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP13_AlarmLeftPosition + + + + + + + + + 545, 448 - ThreeWayValve2147483576 + DV1PCP13 22, 12 - - ParametersWithPc.FC4_Valve.DV1PCP08_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP08_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP08_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP08_AlarmLeftPosition + + + + + + + + + 503, 392 - ThreeWayValve2147483575 + DV1PCP08 22, 12 - - ParametersWithPc.FC4_Valve.DV1PCP07_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP07_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP07_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP07_AlarmLeftPosition + + + + + + + + + 503, 421 - ThreeWayValve2147483574 + DV1PCP07 22, 12 @@ -1638,9 +2115,9 @@ True MiddleCenter Aqua - 572, 87 + 572, 75 SpecialLabelBlue642 - 1, 791 + 1, 803 @@ -1656,9 +2133,9 @@ True MiddleCenter White - 554, 67 + 554, 61 SpecialLabelBlue643 - 3, 793 + 3, 799 @@ -1850,9 +2327,9 @@ True MiddleCenter White - 513, 108 + 513, 115 SpecialLabelBlue630 - 3, 474 + 3, 467 @@ -1868,9 +2345,9 @@ True MiddleCenter Aqua - 489, 51 + 489, 46 SpecialLabelBlue629 - 1, 261 + 1, 266 @@ -1952,11 +2429,11 @@ SpecialLabelBlue625 17, 1 - + TurnOff 237, 591 - Jzf16 + SPV2DBT02 13, 11 @@ -1995,11 +2472,11 @@ SpecialLabelBlue624 1, 39 - + TurnOff 237, 872 - Jzf13 + SPV3DBT02 13, 11 @@ -2038,25 +2515,27 @@ SpecialLabelBlue600 1, 39 - - ParametersWithPc.FC4_Valve.AS3DBT07_Alarm - ParametersWithPc.FC4_Valve.AS3DBT07_Set + + + + + 334, 871 - LjSwith383 + AS3DBT07 14, 12 - + TurnOff 216, 834 - Jzf14 + PR3DBT01 13, 11 - + TurnOff 237, 834 - Jzf15 + SPV3DBT01 13, 11 @@ -2095,18 +2574,22 @@ SpecialLabelBlue602 226, 3 - - ParametersWithPc.FC4_Valve.BU3DBT07_Alarm - ParametersWithPc.FC4_Valve.BU3DBT07_Set + + + + + 390, 834 - LjSwith384 + BU3DBT07 14, 12 - - ParametersWithPc.FC4_Valve.BU3DBT06_Alarm - ParametersWithPc.FC4_Valve.BU3DBT06_Set + + + + + 328, 834 - LjSwith385 + BU3DBT06 14, 12 @@ -2145,11 +2628,13 @@ SpecialLabelBlue604 3, 27 - - ParametersWithPc.FC4_Valve.AS3DBT06_Alarm - ParametersWithPc.FC4_Valve.AS3DBT06_Set + + + + + 301, 856 - LjSwith386 + AS3DBT06 14, 12 @@ -2206,32 +2691,40 @@ SpecialLabelBlue607 177, 1 - - ParametersWithPc.FC4_Valve.BU3DBT04_Alarm - ParametersWithPc.FC4_Valve.BU3DBT04_Set + + + + + 391, 725 - LjSwith387 + BU3DBT04 14, 12 - - ParametersWithPc.FC4_Valve.BU3DBT03_Alarm - ParametersWithPc.FC4_Valve.BU3DBT03_Set + + + + + 324, 725 - LjSwith388 + BU3DBT03 14, 12 - - ParametersWithPc.FC4_Valve.BU3DBT02_Alarm - ParametersWithPc.FC4_Valve.BU3DBT02_Set + + + + + 370, 730 - LjSwith389 + BU3DBT02 14, 12 - - ParametersWithPc.FC4_Valve.BU3DBT01_Alarm - ParametersWithPc.FC4_Valve.BU3DBT01_Set + + + + + 343, 731 - LjSwith390 + BU3DBT01 14, 12 @@ -2360,16 +2853,18 @@ SpecialLabelBlue614 3, 12 - - ParametersWithPc.FC16_Level.Atank6 + + + 385, 760 - SwitchLight80 + Atank6 13, 13 - - ParametersWithPc.FC16_Level.Atank5 + + + 326, 761 - SwitchLight81 + Atank5 13, 13 @@ -2377,39 +2872,49 @@ Xie19 32, 12 - - ParametersWithPc.FC4_Valve.AS3DBT05_Alarm - ParametersWithPc.FC4_Valve.AS3DBT05_Set + + + + + 411, 809 - LjSwith391 + AS3DBT05 14, 12 - - ParametersWithPc.FC4_Valve.AS3DBT04_Alarm - ParametersWithPc.FC4_Valve.AS3DBT04_Set + + + + + 301, 809 - LjSwith392 + AS3DBT04 14, 12 - - ParametersWithPc.FC4_Valve.AS3DBT02_Alarm - ParametersWithPc.FC4_Valve.AS3DBT02_Set + + + + + 427, 762 - LjSwith393 + AS3DBT02 14, 12 - - ParametersWithPc.FC4_Valve.AS3DBT01_Alarm - ParametersWithPc.FC4_Valve.AS3DBT01_Set + + + + + 291, 762 - LjSwith394 + AS3DBT01 14, 12 - - ParametersWithPc.FC4_Valve.AS3DBT03_Alarm - ParametersWithPc.FC4_Valve.AS3DBT03_Set + + + + + 271, 809 - LjSwith395 + AS3DBT03 14, 12 @@ -2581,11 +3086,11 @@ Trucks21 113, 37 - + TurnOff 237, 306 - Jzf11 + SPV1DBT02 13, 11 @@ -2624,25 +3129,27 @@ SpecialLabelBlue596 1, 39 - - ParametersWithPc.FC4_Valve.AS2DBT07_Alarm - ParametersWithPc.FC4_Valve.AS2DBT07_Set + + + + + 334, 590 - LjSwith370 + AS2DBT07 14, 12 - + TurnOff 216, 553 - Jzf6 + PR2DBT01 13, 11 - + TurnOff 237, 553 - Jzf7 + SPV2DBT01 13, 11 @@ -2681,18 +3188,22 @@ SpecialLabelBlue550 182, 3 - - ParametersWithPc.FC4_Valve.BU2DBT07_Alarm - ParametersWithPc.FC4_Valve.BU2DBT07_Set + + + + + 390, 553 - LjSwith371 + BU2DBT07 14, 12 - - ParametersWithPc.FC4_Valve.BU2DBT06_Alarm - ParametersWithPc.FC4_Valve.BU2DBT06_Set + + + + + 328, 553 - LjSwith372 + BU2DBT06 14, 12 @@ -2731,11 +3242,13 @@ SpecialLabelBlue552 3, 27 - - ParametersWithPc.FC4_Valve.AS2DBT06_Alarm - ParametersWithPc.FC4_Valve.AS2DBT06_Set + + + + + 301, 575 - LjSwith373 + AS2DBT06 14, 12 @@ -2792,32 +3305,40 @@ SpecialLabelBlue555 177, 1 - - ParametersWithPc.FC4_Valve.BU2DBT04_Alarm - ParametersWithPc.FC4_Valve.BU2DBT04_Set + + + + + 391, 444 - LjSwith374 + BU2DBT04 14, 12 - - ParametersWithPc.FC4_Valve.BU2DBT03_Alarm - ParametersWithPc.FC4_Valve.BU2DBT03_Set + + + + + 324, 444 - LjSwith375 + BU2DBT03 14, 12 - - ParametersWithPc.FC4_Valve.BU2DBT02_Alarm - ParametersWithPc.FC4_Valve.BU2DBT02_Set + + + + + 370, 449 - LjSwith376 + BU2DBT02 14, 12 - - ParametersWithPc.FC4_Valve.BU2DBT01_Alarm - ParametersWithPc.FC4_Valve.BU2DBT01_Set + + + + + 343, 450 - LjSwith377 + BU2DBT01 14, 12 @@ -2946,16 +3467,18 @@ SpecialLabelBlue562 3, 12 - - ParametersWithPc.FC16_Level.Atank4 + + + 385, 479 - SwitchLight78 + Atank4 13, 13 - - ParametersWithPc.FC16_Level.Atank3 + + + 326, 480 - SwitchLight79 + Atank3 13, 13 @@ -2963,39 +3486,49 @@ Xie18 32, 12 - - ParametersWithPc.FC4_Valve.AS2DBT05_Alarm - ParametersWithPc.FC4_Valve.AS2DBT05_Set + + + + + 411, 528 - LjSwith378 + AS2DBT05 14, 12 - - ParametersWithPc.FC4_Valve.AS2DBT04_Alarm - ParametersWithPc.FC4_Valve.AS2DBT04_Set + + + + + 301, 528 - LjSwith379 + AS2DBT04 14, 12 - - ParametersWithPc.FC4_Valve.AS2DBT02_Alarm - ParametersWithPc.FC4_Valve.AS2DBT02_Set + + + + + 427, 481 - LjSwith380 + AS2DBT02 14, 12 - - ParametersWithPc.FC4_Valve.AS2DBT01_Alarm - ParametersWithPc.FC4_Valve.AS2DBT01_Set + + + + + 291, 481 - LjSwith381 + AS2DBT01 14, 12 - - ParametersWithPc.FC4_Valve.AS2DBT03_Alarm - ParametersWithPc.FC4_Valve.AS2DBT03_Set + + + + + 271, 528 - LjSwith382 + AS2DBT03 14, 12 @@ -3167,25 +3700,27 @@ Trucks20 113, 37 - - ParametersWithPc.FC4_Valve.AS1DBT07_Alarm - ParametersWithPc.FC4_Valve.AS1DBT07_Set + + + + + 334, 306 - LjSwith369 + AS1DBT07 14, 12 - + TurnOff 216, 269 - Jzf2 + PR1DBT01 13, 11 - + TurnOff 237, 269 - Jzf1 + SPV1DBT01 13, 11 @@ -3224,18 +3759,22 @@ SpecialLabelBlue543 144, 3 - - ParametersWithPc.FC4_Valve.BU1DBT07_Alarm - ParametersWithPc.FC4_Valve.BU1DBT07_Set + + + + + 390, 269 - LjSwith368 + BU1DBT07 14, 12 - - ParametersWithPc.FC4_Valve.BU1DBT06_Alarm - ParametersWithPc.FC4_Valve.BU1DBT06_Set + + + + + 328, 269 - LjSwith367 + BU1DBT06 14, 12 @@ -3274,11 +3813,13 @@ SpecialLabelBlue542 3, 27 - - ParametersWithPc.FC4_Valve.AS1DBT06_Alarm - ParametersWithPc.FC4_Valve.AS1DBT06_Set + + + + + 301, 291 - LjSwith366 + AS1DBT06 14, 12 @@ -3335,32 +3876,40 @@ SpecialLabelBlue538 177, 1 - - ParametersWithPc.FC4_Valve.BU1DBT04_Alarm - ParametersWithPc.FC4_Valve.BU1DBT04_Set + + + + + 391, 160 - LjSwith365 + BU1DBT04 14, 12 - - ParametersWithPc.FC4_Valve.BU1DBT03_Alarm - ParametersWithPc.FC4_Valve.BU1DBT03_Set + + + + + 324, 160 - LjSwith364 + BU1DBT03 14, 12 - - ParametersWithPc.FC4_Valve.BU1DBT02_Alarm - ParametersWithPc.FC4_Valve.BU1DBT02_Set + + + + + 370, 165 - LjSwith363 + BU1DBT02 14, 12 - - ParametersWithPc.FC4_Valve.BU1DBT01_Alarm - ParametersWithPc.FC4_Valve.BU1DBT01_Set + + + + + 343, 166 - LjSwith362 + BU1DBT01 14, 12 @@ -3489,69 +4038,70 @@ SpecialLabelBlue528 3, 12 - + ylNormal 667, 469 - RSCREWBIG11 + DM1BSF01 43, 10 - + ylNormal 1210, 473 - RSCREWBIG9 + DM1JSF01 43, 10 - + ylNormal 1150, 471 - RSCREWBIG8 + DM1ISF01 43, 10 - + ylNormal 1092, 471 - RSCREWBIG7 + DM1HSF01 43, 10 - + ylNormal 1033, 471 - RSCREWBIG6 + DM1GSF01 43, 10 - + ylNormal 941, 471 - RSCREWBIG5 + DM1FSF01 43, 10 - + ylNormal 882, 470 - RSCREWBIG4 + DM1ESF01 43, 10 - + ylNormal 783, 470 - RSCREWBIG3 + DM1DSF01 43, 10 - + ylNormal 726, 469 - RSCREWBIG2 + DM1CSF01 43, 10 - + ylNormal 608, 470 - RSCREWBIG1 + DM1ASF01 43, 10 - + - ParametersWithPc.FC3_Analog.HR1JSI01_Value + + Red DarkGray @@ -3563,15 +4113,16 @@ None True True - PR1ASI01 - Red - 1194, 231 - MCLabel234 - 53, 12 + 0 + White + 1206, 229 + HR1JSI01 + 11, 12 - + - ParametersWithPc.FC3_Analog.PR1JSI01_Value + + Red DarkGray @@ -3583,75 +4134,86 @@ None True True - PR1ASI01 - Red - 1194, 185 - MCLabel235 - 53, 12 + 0 + White + 1206, 183 + PR1JSI01 + 11, 12 - - ParametersWithPc.FC16_Level.LSiloG - 1040, 426 - SwitchLight54 + + + + 1040, 415 + LSiloG 13, 13 - - ParametersWithPc.FC16_Level.LSiloH - 1094, 426 - SwitchLight55 + + + + 1094, 415 + LSiloH 13, 13 - - ParametersWithPc.FC16_Level.LSiloI - 1154, 426 - SwitchLight56 + + + + 1154, 415 + LSiloI 13, 13 - - ParametersWithPc.FC16_Level.LSiloJ - 1213, 426 - SwitchLight57 + + + + 1213, 415 + LSiloJ 13, 13 - - ParametersWithPc.FC16_Level.HSiloJ + + + 1213, 206 - SwitchLight58 + HSiloJ 13, 13 - - ParametersWithPc.FC16_Level.HSiloI + + + 1154, 206 - SwitchLight59 + HSiloI 13, 13 - - ParametersWithPc.FC16_Level.HSiloH + + + 1096, 206 - SwitchLight60 + HSiloH 13, 13 - - ParametersWithPc.FC16_Level.HSiloG + + + 1039, 205 - SwitchLight61 + HSiloG 13, 13 - - ParametersWithPc.FC16_Level.LSiloF - 944, 426 - SwitchLight62 + + + + 944, 415 + LSiloF 13, 13 - - ParametersWithPc.FC16_Level.HSiloF + + + 944, 206 - SwitchLight63 + HSiloF 13, 13 - + - ParametersWithPc.FC3_Analog.HR1FSI01_Value + + Red DarkGray @@ -3663,51 +4225,58 @@ None True True - PR1ASI01 - Red - 925, 232 - MCLabel236 - 53, 12 + 0 + White + 937, 230 + HR1FSI01 + 11, 12 - - ParametersWithPc.FC16_Level.LSiloD - 791, 426 - SwitchLight64 + + + + 791, 415 + LSiloD 13, 13 - - ParametersWithPc.FC16_Level.LSiloE - 886, 426 - SwitchLight65 + + + + 886, 415 + LSiloE 13, 13 - - ParametersWithPc.FC16_Level.HSiloE + + + 886, 206 - SwitchLight66 + HSiloE 13, 13 - - ParametersWithPc.FC16_Level.HSiloD + + + 791, 206 - SwitchLight67 + HSiloD 13, 13 - - ParametersWithPc.FC16_Level.LSiloC - 731, 426 - SwitchLight68 + + + + 731, 415 + LSiloC 13, 13 - - ParametersWithPc.FC16_Level.HSiloC + + + 731, 206 - SwitchLight69 + HSiloC 13, 13 - + - ParametersWithPc.FC3_Analog.HR1BSI01_Value + + Red DarkGray @@ -3719,15 +4288,16 @@ None True True - PR1ASI01 - Red - 653, 232 - MCLabel237 - 53, 12 + 0 + White + 665, 230 + HR1BSI01 + 11, 12 - + - ParametersWithPc.FC3_Analog.HR1ASI01_Value + + Red DarkGray @@ -3736,56 +4306,63 @@ - None + QueryAndModify True True - PR1ASI01 - Red - 594, 231 - MCLabel238 - 53, 12 + 0 + White + 606, 229 + HR1ASI01 + 11, 12 - - ParametersWithPc.FC16_Level.LSiloB - 674, 426 - SwitchLight70 + + + + 674, 415 + LSiloB 13, 13 - - ParametersWithPc.FC16_Level.HSiloB + + + 674, 206 - SwitchLight71 + HSiloB 13, 13 - - ParametersWithPc.FC16_Level.HSiloA + + + 612, 206 - SwitchLight72 + HSiloA 13, 13 - - ParametersWithPc.FC16_Level.LSiloA - 612, 426 - SwitchLight73 + + + + 612, 415 + LSiloA 13, 13 - - ParametersWithPc.FC16_Level.Atank2 + + ParametersWithPc.FC16_Level. 385, 195 - SwitchLight76 + Atank2 13, 13 - - ParametersWithPc.FC16_Level.Atank1 + + + 326, 196 - SwitchLight77 + Atank1 13, 13 - - ParametersWithPc.FC4_Valve.AS1JSI01_Alarm - ParametersWithPc.FC4_Valve.AS1JSI01_Set + + + + + 1233, 169 - LjSwith313 + AS1JSI01 14, 12 @@ -3801,16 +4378,19 @@ Bottle10 53, 308 - - ParametersWithPc.FC4_Valve.AS1ISI01_Alarm - ParametersWithPc.FC4_Valve.AS1ISI01_Set + + + + + 1174, 169 - LjSwith314 + AS1ISI01 14, 12 - + - ParametersWithPc.FC3_Analog.HR1ISI01_Value + + Red DarkGray @@ -3822,15 +4402,16 @@ None True True - PR1ASI01 - Red - 1135, 231 - MCLabel239 - 53, 12 + 0 + White + 1147, 229 + HR1ISI01 + 11, 12 - + - ParametersWithPc.FC3_Analog.PR1ISI01_Value + + Red DarkGray @@ -3842,11 +4423,11 @@ None True True - PR1ASI01 - Red - 1135, 185 - MCLabel240 - 53, 12 + 0 + White + 1147, 183 + PR1ISI01 + 11, 12 100 @@ -3861,16 +4442,18 @@ Bottle9 53, 308 - - ParametersWithPc.FC4_Valve.AS1HSI01_Alarm + + + 1115, 169 - LjSwith315 + AS1HSI01 14, 12 - + - ParametersWithPc.FC3_Analog.HR1HSI01_Value + + Red DarkGray @@ -3882,15 +4465,16 @@ None True True - PR1ASI01 - Red - 1076, 231 - MCLabel241 - 53, 12 + 0 + White + 1088, 229 + HR1HSI01 + 11, 12 - + - ParametersWithPc.FC3_Analog.LS1HSI01_Value + + Red DarkGray @@ -3902,11 +4486,11 @@ None True True - PR1ASI01 - Red - 1076, 185 - MCLabel242 - 53, 12 + 0 + White + 1088, 183 + PR1HSI01 + 11, 12 100 @@ -3921,16 +4505,19 @@ Bottle8 53, 308 - - ParametersWithPc.FC4_Valve.AS1GSI01_P1 - ParametersWithPc.FC4_Valve.AS1GSI01_Set + + + + + 1056, 169 - LjSwith316 + AS1GSI01 14, 12 - + - ParametersWithPc.FC3_Analog.PR1GSI01_Value + + Red DarkGray @@ -3942,15 +4529,16 @@ None True True - PR1ASI01 - Red - 1016, 231 - MCLabel243 - 53, 12 + 0 + White + 1028, 229 + HR1GSI01 + 11, 12 - + - ParametersWithPc.FC3_Analog.PR1GSI01_Value + + Red DarkGray @@ -3962,11 +4550,11 @@ None True True - PR1ASI01 - Red - 1017, 185 - MCLabel244 - 53, 12 + 0 + White + 1029, 183 + PR1GSI01 + 11, 12 100 @@ -3981,16 +4569,19 @@ Bottle7 53, 308 - - ParametersWithPc.FC4_Valve.AS1FSI01_Alarm - ParametersWithPc.FC4_Valve.AS1FSI01_Set + + + + + 964, 167 - LjSwith317 + AS1FSI01 14, 12 - + - ParametersWithPc.FC3_Analog.LS1FSI01_Value + + Red DarkGray @@ -4002,11 +4593,11 @@ None True True - PR1ASI01 - Red - 925, 183 - MCLabel245 - 53, 12 + 0 + White + 937, 181 + PR1FSI01 + 11, 12 100 @@ -4021,16 +4612,19 @@ Bottle6 53, 308 - - ParametersWithPc.FC4_Valve.AS1ESI01_Alarm - ParametersWithPc.FC4_Valve.AS1ESI01_Set + + + + + 905, 167 - LjSwith318 + AS1ESI01 14, 12 - + - ParametersWithPc.FC3_Analog.HR1ESI01_Value + + Red DarkGray @@ -4042,15 +4636,16 @@ None True True - PR1ASI01 - Red - 866, 232 - MCLabel246 - 53, 12 + 0 + White + 878, 230 + HR1ESI01 + 11, 12 - + - ParametersWithPc.FC3_Analog.PR1ESI01_Value + + Red DarkGray @@ -4062,11 +4657,11 @@ None True True - PR1ASI01 - Red - 866, 183 - MCLabel247 - 53, 12 + 0 + White + 878, 181 + PR1ESI01 + 11, 12 100 @@ -4081,16 +4676,19 @@ Bottle5 53, 308 - - ParametersWithPc.FC4_Valve.AS1DSI01_Alarm - ParametersWithPc.FC4_Valve.AS1DSI01_Set + + + + + 810, 167 - LjSwith319 + AS1DSI01 14, 12 - + - ParametersWithPc.FC3_Analog.HR1DSI01_Value + + Red DarkGray @@ -4102,15 +4700,16 @@ None True True - PR1ASI01 - Red - 771, 232 - MCLabel248 - 53, 12 + 0 + White + 783, 230 + HR1DSI01 + 11, 12 - + - ParametersWithPc.FC3_Analog.PR1DSI01_Value + + Red DarkGray @@ -4122,11 +4721,11 @@ None True True - PR1ASI01 - Red - 771, 184 - MCLabel249 - 53, 12 + 0 + White + 783, 182 + PR1DSI01 + 11, 12 100 @@ -4141,16 +4740,19 @@ Bottle4 53, 308 - - ParametersWithPc.FC4_Valve.AS1CSI01_Alarm - ParametersWithPc.FC4_Valve.AS1CSI01_Set + + + + + 751, 167 - LjSwith320 + AS1CSI01 14, 12 - + - ParametersWithPc.FC3_Analog.HR1CSI01_Value + + Red DarkGray @@ -4162,15 +4764,16 @@ None True True - PR1ASI01 - Red - 712, 232 - MCLabel250 - 53, 12 + 0 + White + 724, 230 + HR1CSI01 + 11, 12 - + - ParametersWithPc.FC3_Analog.PR1CSI01_Value + + Red DarkGray @@ -4182,11 +4785,11 @@ None True True - PR1ASI01 - Red - 712, 184 - MCLabel251 - 53, 12 + 0 + White + 724, 182 + PR1CSI01 + 11, 12 100 @@ -4201,16 +4804,19 @@ Bottle3 53, 308 - - ParametersWithPc.FC4_Valve.AS1BSI01_Alarm - ParametersWithPc.FC4_Valve.AS1BSI01_Set + + + + + 692, 168 - LjSwith321 + AS1BSI01 14, 12 - + - ParametersWithPc.FC3_Analog.PR1BSI01_Value + + Red DarkGray @@ -4222,11 +4828,11 @@ None True True - PR1ASI01 - Red - 653, 184 - MCLabel252 - 53, 12 + 0 + White + 665, 182 + PR1BSI01 + 11, 12 100 @@ -4241,16 +4847,19 @@ Bottle2 53, 308 - - ParametersWithPc.FC4_Valve.AS1ASI01_Alarm - ParametersWithPc.FC4_Valve.AS1ASI01_Set + + + + + 634, 167 - LjSwith322 + AS1ASI01 14, 12 - + - ParametersWithPc.FC3_Analog.PR1ASI01_Value + + Red DarkGray @@ -4262,11 +4871,11 @@ None True True - PR1ASI01 - Red - 594, 184 - MCLabel253 - 53, 12 + 0 + White + 606, 182 + PR1ASI01 + 11, 12 100 @@ -4281,59 +4890,61 @@ Bottle1 53, 308 - - ParametersWithPc.FC4_Valve.DV1PCP10_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP10_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP10_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP10_AlarmLeftPosition + + + + + + + + + 504, 185 - ThreeWayValve2147483581 + DV1PCP10 22, 12 - - ParametersWithPc.FC4_Valve.DV1PCP09_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP09_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP09_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP09_AlarmLeftPosition + + + + + + + + + 504, 212 - ThreeWayValve2147483580 + DV1PCP09 22, 12 - - ParametersWithPc.FC4_Valve.PV1GDC01_Alarm - ParametersWithPc.FC4_Valve.PV1GDC01_Set - 185, 169 - LjSwith347 - 14, 12 - - - ParametersWithPc.FC5_Motor.DM1GDP01_Alarm - ParametersWithPc.FC5_Motor.DM1GDP01_Running - 217, 167 - LjSwith348 - 14, 12 - 1663, 43 Dou27 30, 40 - - ParametersWithPc.FC4_Valve.DV1PCP02_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP02_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP02_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP02_AlarmLeftPosition + + + + + + + + + 462, 156 - ThreeWayValve2147483579 + DV1PCP02 22, 12 - - ParametersWithPc.FC4_Valve.DV1PCP01_RightPosition - ParametersWithPc.FC4_Valve.DV1PCP01_LeftPosition - ParametersWithPc.FC4_Valve.DV1PCP01_AlarmRightPosition - ParametersWithPc.FC4_Valve.DV1PCP01_AlarmLeftPosition + + + + + + + + + 462, 185 - ThreeWayValve2147483578 + DV1PCP01 22, 12 @@ -4341,39 +4952,49 @@ Xie17 32, 12 - - ParametersWithPc.FC4_Valve.AS1DBT05_Alarm - ParametersWithPc.FC4_Valve.AS1DBT05_Set + + + + + 411, 244 - LjSwith353 + AS1DBT05 14, 12 - - ParametersWithPc.FC4_Valve.AS1DBT04_Alarm - ParametersWithPc.FC4_Valve.AS1DBT04_Set + + + + + 301, 244 - LjSwith354 + AS1DBT04 14, 12 - - ParametersWithPc.FC4_Valve.AS1DBT02_Alarm - ParametersWithPc.FC4_Valve.AS1DBT02_Set + + + + + 427, 197 - LjSwith355 + AS1DBT02 14, 12 - - ParametersWithPc.FC4_Valve.AS1DBT01_Alarm - ParametersWithPc.FC4_Valve.AS1DBT01_Set + + + + + 291, 197 - LjSwith358 + AS1DBT01 14, 12 - - ParametersWithPc.FC4_Valve.AS1DBT03_Alarm - ParametersWithPc.FC4_Valve.AS1DBT03_Set + + + + + 271, 244 - LjSwith359 + AS1DBT03 14, 12