|
@@ -11,6 +11,7 @@ using MECF.Framework.Simulator.Core.Driver;
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.IO;
|
|
|
+using static MECF.Framework.Common.Simulator.MotorSimulator;
|
|
|
|
|
|
namespace CyberX8_Simulator.Devices
|
|
|
{
|
|
@@ -63,6 +64,7 @@ namespace CyberX8_Simulator.Devices
|
|
|
/// </summary>
|
|
|
private PeriodicJob _LoaderPeriodicJob;
|
|
|
private PeriodicJob _Wago2PeriodicJob;
|
|
|
+ private PeriodicJob _Wago4PeriodicJob;
|
|
|
|
|
|
private bool _rinse1FillValve = false;
|
|
|
private bool _rinse1DumpValve = false;
|
|
@@ -72,12 +74,14 @@ namespace CyberX8_Simulator.Devices
|
|
|
private bool _rinse3DumpValve = false;
|
|
|
private bool _rinse4FillValve = false;
|
|
|
private bool _rinse4DumpValve = false;
|
|
|
+ private bool _reservoir4PumpOn = false;
|
|
|
private int _srd1currentVacuumValue;
|
|
|
private int _srd2currentVacuumValue;
|
|
|
private int _port;
|
|
|
//delegate
|
|
|
#region Delegate
|
|
|
public delegate void VariableValueChanged(object obj);
|
|
|
+ public delegate void UpdateVariableValueWagoDatasChanged(string sourceName, string targetName, bool value,bool invert);
|
|
|
#endregion
|
|
|
|
|
|
#region 事件
|
|
@@ -97,7 +101,6 @@ namespace CyberX8_Simulator.Devices
|
|
|
InitializeData(port);
|
|
|
_port = port;
|
|
|
}
|
|
|
-
|
|
|
private void UpdataDataCausedByOtherModule(string sourceName,string name, bool value, bool invert)
|
|
|
{
|
|
|
value = invert ? !value : value;
|
|
@@ -154,8 +157,11 @@ namespace CyberX8_Simulator.Devices
|
|
|
case "c_QDRD4_DUMP":
|
|
|
_rinse4DumpValve = value;
|
|
|
break;
|
|
|
- default:
|
|
|
+ case "c_METAL4_PUMP_ON":
|
|
|
+ _reservoir4PumpOn = value;
|
|
|
break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
}
|
|
|
}
|
|
|
//DI Data
|
|
@@ -311,6 +317,10 @@ namespace CyberX8_Simulator.Devices
|
|
|
{
|
|
|
_Wago2PeriodicJob = new PeriodicJob(100, OnTimer1, $"Wago {config.Module} timer", true);
|
|
|
}
|
|
|
+ if (config.Module == "Wago4" && _Wago2PeriodicJob == null)
|
|
|
+ {
|
|
|
+ _Wago2PeriodicJob = new PeriodicJob(100, OnTimer3, $"Wago {config.Module} timer", true);
|
|
|
+ }
|
|
|
//加载DO
|
|
|
int i = 0;
|
|
|
DONameIndexDic = new Dictionary<string, int>();
|
|
@@ -428,7 +438,7 @@ namespace CyberX8_Simulator.Devices
|
|
|
if (AINameIndexDic.ContainsKey("r_PUMP1_FLOW")) AIShorts[AINameIndexDic["r_PUMP1_FLOW"]] = 3277;
|
|
|
|
|
|
//Facility
|
|
|
- if (AINameIndexDic.ContainsKey("r_DI_WATER_PRESSURE")) AIShorts[AINameIndexDic["r_DI_WATER_PRESSURE"]] = 16000;
|
|
|
+ if (AINameIndexDic.ContainsKey("r_DI_WATER_PRESSURE")) AIShorts[AINameIndexDic["r_DI_WATER_PRESSURE"]] = 12000;
|
|
|
if (AINameIndexDic.ContainsKey("r_HCW_FLOW")) AIShorts[AINameIndexDic["r_HCW_FLOW"]] = 16300;
|
|
|
if (AINameIndexDic.ContainsKey("r_N2_1B_PRESSURE")) AIShorts[AINameIndexDic["r_N2_1B_PRESSURE"]] = 5400;
|
|
|
if (AINameIndexDic.ContainsKey("r_N2_1A_PRESSURE")) AIShorts[AINameIndexDic["r_N2_1A_PRESSURE"]] = 8900;
|
|
@@ -438,6 +448,8 @@ namespace CyberX8_Simulator.Devices
|
|
|
if (AINameIndexDic.ContainsKey("r_CDA_HIGH_PRESSURE")) AIShorts[AINameIndexDic["r_CDA_HIGH_PRESSURE"]] = 10000;
|
|
|
if (AINameIndexDic.ContainsKey("r_CDA_LOW_PRESSURE")) AIShorts[AINameIndexDic["r_CDA_LOW_PRESSURE"]] = 10000;
|
|
|
if (AINameIndexDic.ContainsKey("r_CDA_EXTERNAL_PRESSURE")) AIShorts[AINameIndexDic["r_CDA_EXTERNAL_PRESSURE"]] = 10000;
|
|
|
+ if (AINameIndexDic.ContainsKey("r_pH2")) AIShorts[AINameIndexDic["r_pH2"]] = 15000;
|
|
|
+ if (AINameIndexDic.ContainsKey("r_MBS2_FLOW")) AIShorts[AINameIndexDic["r_MBS2_FLOW"]] = 16000;
|
|
|
|
|
|
}
|
|
|
#region 公共方法
|
|
@@ -762,6 +774,15 @@ namespace CyberX8_Simulator.Devices
|
|
|
PumpFlowSimulator();
|
|
|
return true;
|
|
|
}
|
|
|
+ /// <summary>
|
|
|
+ /// Wago4定时器
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ private bool OnTimer3()
|
|
|
+ {
|
|
|
+ Pump4FlowSimulator();
|
|
|
+ return true;
|
|
|
+ }
|
|
|
#region 模拟方法
|
|
|
/// <summary>
|
|
|
/// Loader LeakTest模拟
|
|
@@ -846,21 +867,16 @@ namespace CyberX8_Simulator.Devices
|
|
|
{
|
|
|
AIShorts[AINameIndexDic["r_QDRD4_WATER_LEVEL"]] -= 2;
|
|
|
}
|
|
|
+
|
|
|
+ //reservoir4 pump flow
|
|
|
+ AIShorts[AINameIndexDic["r_PUMP4_FLOW"]] = _reservoir4PumpOn ? (short)6000 : (short)3277;
|
|
|
+
|
|
|
}
|
|
|
/// <summary>
|
|
|
- /// metal pump流量模拟
|
|
|
+ /// metal1/2/3 pump流量模拟
|
|
|
/// </summary>
|
|
|
private void PumpFlowSimulator()
|
|
|
{
|
|
|
- if (DOBytes[DONameIndexDic["c_METAL4_PUMP_ON"]] == 1)
|
|
|
- {
|
|
|
- AIShorts[AINameIndexDic["r_PUMP4_FLOW"]] = 6000;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- AIShorts[AINameIndexDic["r_PUMP3_FLOW"]] = 3277;
|
|
|
- }
|
|
|
-
|
|
|
if (DOBytes[DONameIndexDic["c_METAL3_PUMP_ON"]] == 1)
|
|
|
{
|
|
|
AIShorts[AINameIndexDic["r_PUMP3_FLOW"]] = 6000;
|
|
@@ -887,6 +903,20 @@ namespace CyberX8_Simulator.Devices
|
|
|
{
|
|
|
AIShorts[AINameIndexDic["r_PUMP1_FLOW"]] = 3277;
|
|
|
}
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// metal4 pump流量模拟
|
|
|
+ /// </summary>
|
|
|
+ private void Pump4FlowSimulator()
|
|
|
+ {
|
|
|
+ if (DONameIndexDic.ContainsKey("c_METAL4_PUMP_ON") && DOBytes[DONameIndexDic["c_METAL4_PUMP_ON"]] == 1)
|
|
|
+ {
|
|
|
+ SimulatorCommManager.Instance.CheckDataChanged("c_METAL4_PUMP_ON",true,false);
|
|
|
+ }
|
|
|
+ else if (DONameIndexDic.ContainsKey("c_METAL4_PUMP_ON") && DOBytes[DONameIndexDic["c_METAL4_PUMP_ON"]] == 0)
|
|
|
+ {
|
|
|
+ SimulatorCommManager.Instance.CheckDataChanged("c_METAL4_PUMP_ON", false, false);
|
|
|
+ }
|
|
|
}
|
|
|
#endregion
|
|
|
}
|