|
@@ -6,13 +6,6 @@ using CyberX8_RT.Devices.LinMot;
|
|
|
using CyberX8_RT.Devices.Prewet;
|
|
|
using MECF.Framework.Common.Alarm;
|
|
|
using MECF.Framework.Common.Routine;
|
|
|
-using System;
|
|
|
-using System.Collections.Generic;
|
|
|
-using System.Linq;
|
|
|
-using System.Runtime.InteropServices;
|
|
|
-using System.Text;
|
|
|
-using System.Threading.Tasks;
|
|
|
-using static CyberX8_RT.Modules.Prewet.PrewetKeepWetStateMachine;
|
|
|
|
|
|
namespace CyberX8_RT.Modules.Prewet
|
|
|
{
|
|
@@ -54,7 +47,7 @@ namespace CyberX8_RT.Modules.Prewet
|
|
|
_linMotAxis.StopOperation("", null);
|
|
|
if (_prewetDevice != null)
|
|
|
{
|
|
|
- _prewetDevice.PumpDisableOperation("prewetPump Disable",null);
|
|
|
+ _prewetDevice.PumpValveClose();
|
|
|
}
|
|
|
Runner.Stop("Manual Abort");
|
|
|
}
|
|
@@ -118,12 +111,12 @@ namespace CyberX8_RT.Modules.Prewet
|
|
|
}
|
|
|
|
|
|
//bool pumpEnableResult = _prewetDevice.PumpEnableOperation("", null);
|
|
|
- bool pumpEnableResult = _prewetDevice.PumpEnable();
|
|
|
- if (!pumpEnableResult)
|
|
|
- {
|
|
|
- LOG.WriteLog(eEvent.ERR_PREWET, Module, "pump enable error");
|
|
|
- return false;
|
|
|
- }
|
|
|
+ //bool pumpEnableResult = _prewetDevice.PumpEnable();
|
|
|
+ //if (!pumpEnableResult)
|
|
|
+ //{
|
|
|
+ // LOG.WriteLog(eEvent.ERR_PREWET, Module, "pump enable error");
|
|
|
+ // return false;
|
|
|
+ //}
|
|
|
bool result = _linMotAxis.StartPosition("", new object[] { 1 });
|
|
|
if (!result)
|
|
|
{
|
|
@@ -149,30 +142,44 @@ namespace CyberX8_RT.Modules.Prewet
|
|
|
if(!result)
|
|
|
{
|
|
|
|
|
|
- string strFlow = $"pump flow status is {_prewetDevice.PrewetPumpData.PumpFlowData.Value} in warning";
|
|
|
- if (AlarmListManager.Instance.AddWarn(Module, "Pump Flow", strFlow))
|
|
|
- {
|
|
|
- LOG.WriteLog(eEvent.WARN_PREWET, Module, strFlow);
|
|
|
- }
|
|
|
- if (_prewetDevice.PrewetPumpData.PumpFlowData.IsError)
|
|
|
+ //Pressure
|
|
|
+ if (_prewetDevice.PrewetPumpData.PumpPressureData.IsError)
|
|
|
{
|
|
|
- LOG.WriteLog(eEvent.ERR_PREWET, Module, "pump flow status is in error");
|
|
|
+ _linMotAxis.StopOperation("", null);
|
|
|
+ _prewetDevice.PumpValveClose();
|
|
|
+ LOG.WriteLog(eEvent.ERR_PREWET, Module, $"Pump pressure {_prewetDevice.PrewetPumpData.PumpPressureData.Value} is in error");
|
|
|
return true;
|
|
|
}
|
|
|
- string strPressure = $"pump pressure status is {_prewetDevice.PrewetPumpData.PumpPressureData.Value} in warning";
|
|
|
- if (AlarmListManager.Instance.AddWarn(Module, "Pump Pressure", strPressure))
|
|
|
+ else if (_prewetDevice.PrewetPumpData.PumpPressureData.IsWarning)
|
|
|
{
|
|
|
- LOG.WriteLog(eEvent.WARN_PREWET, Module, strPressure);
|
|
|
+ string str = $"Pump pressure {_prewetDevice.PrewetPumpData.PumpPressureData.Value} is in warning";
|
|
|
+ if (AlarmListManager.Instance.AddWarn(Module, "Pump Pressure", str))
|
|
|
+ {
|
|
|
+ LOG.WriteLog(eEvent.WARN_PREWET, Module, str);
|
|
|
+ }
|
|
|
}
|
|
|
- if (_prewetDevice.PrewetPumpData.PumpPressureData.IsError)
|
|
|
+ //Flow
|
|
|
+ if (_prewetDevice.PrewetPumpData.PumpFlowData.IsError)
|
|
|
{
|
|
|
- LOG.WriteLog(eEvent.ERR_PREWET, Module, "pump pressure status is in error");
|
|
|
+ LOG.WriteLog(eEvent.ERR_PREWET, Module, $"Pump flow {_prewetDevice.PrewetPumpData.PumpFlowData.Value} is in error");
|
|
|
+ _linMotAxis.StopOperation("", null);
|
|
|
+ _prewetDevice.PumpValveClose();
|
|
|
return true;
|
|
|
}
|
|
|
+ else if (_prewetDevice.PrewetPumpData.PumpFlowData.IsWarning)
|
|
|
+ {
|
|
|
+ string str = $"Pump flow {_prewetDevice.PrewetPumpData.PumpFlowData.Value} is in warning";
|
|
|
+ if (AlarmListManager.Instance.AddWarn(Module, "Pump Flow", str))
|
|
|
+ {
|
|
|
+ LOG.WriteLog(eEvent.WARN_PREWET, Module, str);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
return false;
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
+ _prewetDevice.PumpValveClose();
|
|
|
return true;
|
|
|
}
|
|
|
}
|
|
@@ -198,10 +205,10 @@ namespace CyberX8_RT.Modules.Prewet
|
|
|
/// <returns></returns>
|
|
|
private bool KeepWetComplete()
|
|
|
{
|
|
|
- bool result = _prewetDevice.PumpDisableOperation("pump disable",null);
|
|
|
+ bool result = _prewetDevice.PumpValveClose();
|
|
|
if (!result)
|
|
|
{
|
|
|
- LOG.WriteLog(eEvent.ERR_PREWET, Module, "pump disable error");
|
|
|
+ LOG.WriteLog(eEvent.ERR_PREWET, Module, "pump valve close error");
|
|
|
return false;
|
|
|
}
|
|
|
result = _linMotAxis.SwitchOff();
|