|
@@ -25,6 +25,7 @@ namespace CyberX8_RT.Modules.Reservoir
|
|
|
AutoDiReplen,
|
|
|
CellPump,
|
|
|
WaitCellPump,
|
|
|
+ WaitRegulatePumpOn,
|
|
|
CheckCellFlow,
|
|
|
ManualCellByPass,
|
|
|
AutoCellManual,
|
|
@@ -52,13 +53,14 @@ namespace CyberX8_RT.Modules.Reservoir
|
|
|
#endregion
|
|
|
#region 内部变量
|
|
|
List<StandardHotMetalDevice> _metalDevices = new List<StandardHotMetalDevice>();
|
|
|
- private double _hedFlowLowLimit;
|
|
|
+ private double _cellFlowLowLimit;
|
|
|
private StandardHotReservoirDevice _reservoirDevice;
|
|
|
private ResRecipe _recipe;
|
|
|
private CellPowerSupplier _cellPowerSupplier;
|
|
|
private TemperatureController _temperatureController;
|
|
|
private int _autoHedDelay = 0;
|
|
|
private bool _isRegulatePump;
|
|
|
+ private int _cellFlowFaultHoldOffTime = 5000;
|
|
|
/// <summary>
|
|
|
/// CMM Check Flow延时
|
|
|
/// </summary>
|
|
@@ -112,6 +114,7 @@ namespace CyberX8_RT.Modules.Reservoir
|
|
|
.Run(InitializeStep.CellPump, CellsPumpOn, _delay_1ms)
|
|
|
.WaitWithStopConditionIf(InitializeStep.WaitCellPump, !_isRegulatePump, CheckPumpOnEndStatus, CheckPumpOnStopStatus)
|
|
|
.WaitIf(InitializeStep.WaitCellPump, _isRegulatePump, CheckRegulatePumpOn,_delay_3m)
|
|
|
+ .DelayIf(InitializeStep.WaitRegulatePumpOn,_isRegulatePump, _cellFlowFaultHoldOffTime)
|
|
|
.Run(InitializeStep.CheckCellFlow, CheckCellFlow, _delay_1ms)
|
|
|
//Manual cell Bypass同时disable HED
|
|
|
.RunIf(InitializeStep.ManualCellByPass, _reservoirDevice.OperationMode == MANUAL, CellsByPassEnableHed, _delay_1ms)
|
|
@@ -261,11 +264,25 @@ namespace CyberX8_RT.Modules.Reservoir
|
|
|
}
|
|
|
}
|
|
|
/// <summary>
|
|
|
- /// 检验HED Flow
|
|
|
+ /// 检验Cell Flow
|
|
|
/// </summary>
|
|
|
/// <returns></returns>
|
|
|
private bool CheckCellFlow()
|
|
|
{
|
|
|
+ double toatalCellFlow = 0;
|
|
|
+ for (int i = 0; i < _metalDevices.Count; i++)
|
|
|
+ {
|
|
|
+ StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
|
|
|
+ if (hotMetalDevice!=null && hotMetalDevice.MetalDeviceData!=null)
|
|
|
+ {
|
|
|
+ toatalCellFlow += hotMetalDevice.MetalDeviceData.CellFlow;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (toatalCellFlow < _cellFlowLowLimit)
|
|
|
+ {
|
|
|
+ LOG.WriteLog(eEvent.WARN_RESERVOIR, Module, $"{Module} Cell flow:{toatalCellFlow} is less than config item CellFlowLowLimit:{_cellFlowLowLimit}");
|
|
|
+ return false;
|
|
|
+ }
|
|
|
return true;
|
|
|
}
|
|
|
/// <summary>
|
|
@@ -646,7 +663,7 @@ namespace CyberX8_RT.Modules.Reservoir
|
|
|
_cellPowerSupplier = (CellPowerSupplier)objs[1];
|
|
|
}
|
|
|
_temperatureController = (TemperatureController)objs[2];
|
|
|
- _hedFlowLowLimit = SC.GetValue<double>($"Reservoir.{Module}.HEDFlowLowLimit");
|
|
|
+ _cellFlowLowLimit = SC.GetValue<double>($"Reservoir.{Module}.CellFlowLowLimit");
|
|
|
if (!CheckPreCondition())
|
|
|
{
|
|
|
return RState.Failed;
|
|
@@ -677,7 +694,7 @@ namespace CyberX8_RT.Modules.Reservoir
|
|
|
LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, "recipe is null");
|
|
|
return false;
|
|
|
}
|
|
|
- if (_recipe.CMMEnable && !_cellPowerSupplier.IsConnected)
|
|
|
+ if (_recipe.CMMEnable && _cellPowerSupplier != null && !_cellPowerSupplier.IsConnected)
|
|
|
{
|
|
|
LOG.WriteLog(eEvent.ERR_RESERVOIR, Module, "PowerSupplier is not connected");
|
|
|
return false;
|