|
@@ -20,7 +20,7 @@ using System.Windows.Documents;
|
|
|
|
|
|
namespace CyberX8_RT.Modules.Rinse
|
|
|
{
|
|
|
- public class RinseSecondStepRoutine:RoutineBase,IRoutine
|
|
|
+ public class RinseSecondStepRoutine : RoutineBase, IRoutine
|
|
|
{
|
|
|
private enum RinseSecondStep
|
|
|
{
|
|
@@ -128,7 +128,7 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
/// <param name="module"></param>
|
|
|
public RinseSecondStepRoutine(string module) : base(module)
|
|
|
{
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 启动
|
|
@@ -142,6 +142,8 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
_resistivitySample.Clear();
|
|
|
_readResistivityCount = 0;
|
|
|
_recipe = objects[0] as QdrRecipe;
|
|
|
+ _fillingDetectStartWaterLevel = 0;
|
|
|
+ _rinseCycleTwo_RinsesCompleted = 0;
|
|
|
_concurrentFillTimeSeconds = SC.GetValue<int>("QDR.ConcurrentFillTimeSeconds");
|
|
|
_fillingStartedDelta = SC.GetValue<double>("QDR.FillingStartedDelta");
|
|
|
_sensorReadingFull = SC.GetValue<int>("QDR.SensorReadingFull");
|
|
@@ -152,12 +154,12 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
//配置项规范性验证
|
|
|
if (_checkIsFillingTimeSeconds + _checkIsFullTimeSeconds > _concurrentFillTimeSeconds)
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_RINSE, $"configuration item 'QDR.NominalCheckFillWaterTimeSeconds' plus 'QDR.NominalCheckFillFullTimeSeconds' is large than QDR.ConcurrentFillTimeSeconds", 0);
|
|
|
+ NotifyError(eEvent.ERR_RINSE, $"configuration item 'QDR.NominalCheckFillWaterTimeSeconds' plus 'QDR.NominalCheckFillFullTimeSeconds' is large than QDR.ConcurrentFillTimeSeconds", 0);
|
|
|
return RState.Failed;
|
|
|
}
|
|
|
if (_normalDrainTimeSeconds > _recipe.DumpTimeSeconds)
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_RINSE, $"configuration item 'QDR.NominalDrainTimeSeconds' is large than 'recipe.DumpTimeSeconds",0);
|
|
|
+ NotifyError(eEvent.ERR_RINSE, $"configuration item 'QDR.NominalDrainTimeSeconds' is large than 'recipe.DumpTimeSeconds", 0);
|
|
|
return RState.Failed;
|
|
|
}
|
|
|
return Runner.Start(Module, "Start Rinse Second Step");
|
|
@@ -172,24 +174,24 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
_currentStateMachine = Runner.CurrentStep.ToString();
|
|
|
_device.UpdateStateMachine(_currentStateMachine);
|
|
|
Runner.RunIf(RinseSecondStep.PrepareStart, _recipe.Step2N2BubbleOn, N2ValveOff, _delay_1ms)
|
|
|
- //2.6-StartSecondRinseCycle
|
|
|
+ //2.6-StartSecondRinseCycle
|
|
|
.LoopStart(RinseSecondStep.Recipe_StartSecondRinseCycle, "Rinse Second step", _recipe.Step2NumberOfRinse, NullFun, _delay_1ms)
|
|
|
- //2.7-PerformSecondRinseCycle
|
|
|
+ //2.7-PerformSecondRinseCycle
|
|
|
.LoopRun(RinseSecondStep.Recipe_PerformSecondRinseCycle, OpenN2ValveAndCloseDumpValve, _delay_1ms)
|
|
|
- //2.8-SecondRinseCycleStartFilling
|
|
|
+ //2.8-SecondRinseCycleStartFilling
|
|
|
.LoopRun(RinseSecondStep.Recipe_SecondRinseCycleStartFilling, () => _device.FillValveOn(), _delay_1ms)
|
|
|
.LoopRun(RinseSecondStep.Recipe_SecondRinseCycleRecordStartWaterLevel, CheckFillValveOn, _delay_1ms)
|
|
|
.LoopRunOnlyTimeOutFault(RinseSecondStep.Recipe_SecondRinseCycleStartFillingWait, CheckFillNormalStatus, _checkIsFillingTimeSeconds * 1000)
|
|
|
- //2.9-SecondRinseCycleWaitFillingDetected //3.0-SecondRinseCycleWaitFull
|
|
|
+ //2.9-SecondRinseCycleWaitFillingDetected //3.0-SecondRinseCycleWaitFull
|
|
|
.LoopRunOnlyTimeOutFault(RinseSecondStep.Recipe_SecondRinseCycleWaitFillingDetected, CheckFillFullStatus, _checkIsFullTimeSeconds * 1000)
|
|
|
- //.LoopRun(RinseSecondStep.Recipe_SecondRinseCycleWaitFull, CheckFillFullStatus, _delay_1s)
|
|
|
- //3.1-SecondRinseCycleWaitEndFillTime
|
|
|
+ //.LoopRun(RinseSecondStep.Recipe_SecondRinseCycleWaitFull, CheckFillFullStatus, _delay_1s)
|
|
|
+ //3.1-SecondRinseCycleWaitEndFillTime
|
|
|
.LoopDelay(RinseSecondStep.Recipe_SecondRinseCycleWaitEndFillTime, (_concurrentFillTimeSeconds - _checkIsFillingTimeSeconds - _checkIsFullTimeSeconds) * 1000)
|
|
|
- //3.2-SecondRinseCycleWaitDwell
|
|
|
+ //3.2-SecondRinseCycleWaitDwell
|
|
|
.LoopRunIf(RinseSecondStep.Recipe_SecondRinseCycleWaitDwell, ((_rinseCycleTwo_RinsesCompleted < _recipe.Step2NumberOfRinse - 1) && !_recipe.FinalRinseDry)
|
|
|
- || ((_rinseCycleTwo_RinsesCompleted < _recipe.Step2NumberOfRinse) && _recipe.FinalRinseDry),
|
|
|
+ || ((_rinseCycleTwo_RinsesCompleted < _recipe.Step2NumberOfRinse) && _recipe.FinalRinseDry),
|
|
|
StartDwell, _recipe.Step2DwellTimeSeconds * 1000)
|
|
|
- //3.3-SecondRinseCycleWaitDrain
|
|
|
+ //3.3-SecondRinseCycleWaitDrain
|
|
|
.LoopRunIf(RinseSecondStep.Recipe_SecondRinseCycleWaitDrain, ((_rinseCycleTwo_RinsesCompleted < _recipe.Step2NumberOfRinse - 1) && !_recipe.FinalRinseDry)
|
|
|
|| ((_rinseCycleTwo_RinsesCompleted < _recipe.Step2NumberOfRinse) && _recipe.FinalRinseDry),
|
|
|
StartOpenDumpValve, _delay_1ms)
|
|
@@ -202,24 +204,24 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
NullFun, (_recipe.DumpTimeSeconds - _normalDrainTimeSeconds) * 1000)
|
|
|
//3.7-SecondRinseCycleWaitResistivityStart 条件:(Final Rinse == false && RinseComplete == _recipe.Step2NumberOfRinse - 1)
|
|
|
.LoopRunIf(RinseSecondStep.Recipe_SecondRinseCycleWaitResistivityStart, (_rinseCycleTwo_RinsesCompleted == _recipe.Step2NumberOfRinse - 1) && !_recipe.FinalRinseDry,
|
|
|
- ResistivityStart, _recipe.ResistivityStartTimeSeconds*1000)
|
|
|
- //3.8-SecondRinseCycleResistivityAveraging 条件:(Final Rinse == false && RinseComplete == _recipe.Step2NumberOfRinse - 1)
|
|
|
+ ResistivityStart, _recipe.ResistivityStartTimeSeconds * 1000)
|
|
|
+ //3.8-SecondRinseCycleResistivityAveraging 条件:(Final Rinse == false && RinseComplete == _recipe.Step2NumberOfRinse - 1)
|
|
|
.LoopRunIf(RinseSecondStep.Recipe_SecondRinseCycleResistivityAveraging, (_rinseCycleTwo_RinsesCompleted == _recipe.Step2NumberOfRinse - 1) && !_recipe.FinalRinseDry,
|
|
|
ResistivityAveraging, _delay_1ms)
|
|
|
//3.9-SecondRinseCycleCheckResistivity 条件:(Final Rinse == false && RinseComplete == _recipe.Step2NumberOfRinse - 1)
|
|
|
- .LoopWaitIf(RinseSecondStep.Recipe_SecondRinseCycleCheckResistivity, (_rinseCycleTwo_RinsesCompleted == _recipe.Step2NumberOfRinse - 1) && !_recipe.FinalRinseDry,
|
|
|
- ResitivitySampleResitivity,_recipe.ResistivityDurationSeconds*1000)
|
|
|
- //4.0-SecondRinseCycleWaitDrain 条件:(Final Rinse == false && RinseComplete == _recipe.Step2NumberOfRinse - 1)
|
|
|
+ .LoopWaitIf(RinseSecondStep.Recipe_SecondRinseCycleCheckResistivity, (_rinseCycleTwo_RinsesCompleted == _recipe.Step2NumberOfRinse - 1) && !_recipe.FinalRinseDry,
|
|
|
+ ResitivitySampleResitivity, _recipe.ResistivityDurationSeconds * 1000)
|
|
|
+ //4.0-SecondRinseCycleWaitDrain 条件:(Final Rinse == false && RinseComplete == _recipe.Step2NumberOfRinse - 1)
|
|
|
.LoopRunIf(RinseSecondStep.Recipe_SecondRinseCycleWaitDrain2, (_rinseCycleTwo_RinsesCompleted == _recipe.Step2NumberOfRinse - 1) && !_recipe.FinalRinseDry,
|
|
|
StartOpenDumpValve, _delay_1ms)
|
|
|
.LoopRunIfOnlyTimeOutFault(RinseSecondStep.Recipe_SecondRinseCycleCheckDrain2, (_rinseCycleTwo_RinsesCompleted == _recipe.Step2NumberOfRinse - 1) && !_recipe.FinalRinseDry,
|
|
|
CheckWaterLevelEmpty, _normalDrainTimeSeconds * 1000)
|
|
|
//4.1-Recipe_SecondRinseCycleWaitDrain2ExtraTime 条件:(Final Rinse == false && RinseComplete == _recipe.Step2NumberOfRinse - 1)
|
|
|
.LoopRunIf(RinseSecondStep.Recipe_SecondRinseCycleWaitDrain2ExtraTime, (_rinseCycleTwo_RinsesCompleted == _recipe.Step2NumberOfRinse - 1) && !_recipe.FinalRinseDry && _recipe.DumpTimeSeconds - _normalDrainTimeSeconds > 0,
|
|
|
- NullFun, (_recipe.DumpTimeSeconds - _normalDrainTimeSeconds) * 1000)
|
|
|
+ NullFun, (_recipe.DumpTimeSeconds - _normalDrainTimeSeconds) * 1000)
|
|
|
.LoopEnd(RinseSecondStep.Recipe_SecondRinseCycleEnd, CountNumberofRinsesComplete, _delay_1ms)
|
|
|
.End(RinseSecondStep.Recipe_SecondRinseCycleComplete, ResetRinseComplete, _delay_1ms);
|
|
|
- return Runner.Status;
|
|
|
+ return Runner.Status;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// N2 Valve Off
|
|
@@ -263,14 +265,14 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
result = _device.N2ValveOn();
|
|
|
if (!result)
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_RINSE, "Open N2 Valve error", 0);
|
|
|
+ NotifyError(eEvent.ERR_RINSE, "Open N2 Valve error", 0);
|
|
|
return false;
|
|
|
}
|
|
|
}
|
|
|
result = _device.DrainValveOff();
|
|
|
if (!result)
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_RINSE, "Close Dump Valve error",0);
|
|
|
+ NotifyError(eEvent.ERR_RINSE, "Close Dump Valve error", 0);
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
@@ -283,6 +285,7 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
{
|
|
|
_startFillTime = DateTime.Now;
|
|
|
_fillingDetectStartWaterLevel = _device.RinseData.WaterLevel;
|
|
|
+ LOG.WriteLog(eEvent.INFO_RINSE, Module, $"Start Fill Valve WaterLevel {_fillingDetectStartWaterLevel}");
|
|
|
return true;
|
|
|
}
|
|
|
|
|
@@ -324,7 +327,7 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
bool result = _device.FillValveOff();
|
|
|
if (!result)
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_RINSE, "Fill Valve off error", 0);
|
|
|
+ NotifyError(eEvent.ERR_RINSE, "Fill Valve off error", 0);
|
|
|
return false;
|
|
|
}
|
|
|
if (_recipe.Step2N2BubbleOn)
|
|
@@ -332,7 +335,7 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
result = _device.N2ValveOff();
|
|
|
if (!result)
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_RINSE, "N2 Valve off error",0);
|
|
|
+ NotifyError(eEvent.ERR_RINSE, "N2 Valve off error", 0);
|
|
|
return false;
|
|
|
}
|
|
|
}
|
|
@@ -348,7 +351,7 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
bool result = _device.DrainValveOn();
|
|
|
if (!result)
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_RINSE, "Open Dump valve error", 0);
|
|
|
+ NotifyError(eEvent.ERR_RINSE, "Open Dump valve error", 0);
|
|
|
return false;
|
|
|
}
|
|
|
return result;
|
|
@@ -363,7 +366,7 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
bool reseult = currentWaterLevel < _sensorReadingEmpty;
|
|
|
if (!reseult)
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_RINSE, $"current water level: {currentWaterLevel} is large than sensorReadingEmpty: {_sensorReadingEmpty}",0);
|
|
|
+ NotifyError(eEvent.ERR_RINSE, $"current water level: {currentWaterLevel} is large than sensorReadingEmpty: {_sensorReadingEmpty}", 0);
|
|
|
}
|
|
|
return reseult;
|
|
|
}
|
|
@@ -379,8 +382,8 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
bool result = _device.WasteValveOn();
|
|
|
if (!result)
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_RINSE, "Close Metal Drain Valve error", 0);
|
|
|
-
|
|
|
+ NotifyError(eEvent.ERR_RINSE, "Close Metal Drain Valve error", 0);
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -394,7 +397,7 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
result = _device.FillValveOff();
|
|
|
if (!result)
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_RINSE, "Fill Valve Off error",0);
|
|
|
+ NotifyError(eEvent.ERR_RINSE, "Fill Valve Off error", 0);
|
|
|
return false;
|
|
|
}
|
|
|
if (_recipe.Step2N2BubbleOn)
|
|
@@ -402,7 +405,7 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
result = _device.N2ValveOff();
|
|
|
if (!result)
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_RINSE, "N2 Valve Off error",0);
|
|
|
+ NotifyError(eEvent.ERR_RINSE, "N2 Valve Off error", 0);
|
|
|
return false;
|
|
|
}
|
|
|
}
|
|
@@ -422,7 +425,7 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
{
|
|
|
_startSampleTime = DateTime.Now;
|
|
|
_sampeIntervalTime = DateTime.Now;
|
|
|
- _startSample = true;
|
|
|
+ _startSample = true;
|
|
|
}
|
|
|
return true;
|
|
|
}
|
|
@@ -438,16 +441,16 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
}
|
|
|
int sampleTotalCount = (int)Math.Ceiling(_recipe.ResistivityDurationSeconds / 0.1);
|
|
|
//每隔100毫秒采样
|
|
|
- if(DateTime.Now.Subtract(_sampeIntervalTime).TotalMilliseconds>=100)
|
|
|
+ if (DateTime.Now.Subtract(_sampeIntervalTime).TotalMilliseconds >= 100)
|
|
|
{
|
|
|
- _sampeIntervalTime= DateTime.Now;
|
|
|
+ _sampeIntervalTime = DateTime.Now;
|
|
|
_readResistivityCount++;
|
|
|
_resistivitySample.Add(GetResitivity());
|
|
|
}
|
|
|
//ResistivityDurationSeconds时长减去0.1s,避免超时
|
|
|
- if (DateTime.Now.Subtract(_startSampleTime).TotalMilliseconds>=_recipe.ResistivityDurationSeconds*1000-100)
|
|
|
+ if (DateTime.Now.Subtract(_startSampleTime).TotalMilliseconds >= _recipe.ResistivityDurationSeconds * 1000 - 100)
|
|
|
{
|
|
|
- bool result= CheckResistivity();
|
|
|
+ bool result = CheckResistivity();
|
|
|
//if (!result)
|
|
|
//{
|
|
|
// Runner.Stop("Sample Resitiviy abormal", true);
|
|
@@ -482,15 +485,15 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
/// <returns></returns>
|
|
|
private bool CheckResistivity()
|
|
|
{
|
|
|
- if(_recipe.ResistivityMegaOhms == 0)
|
|
|
+ if (_recipe.ResistivityMegaOhms == 0)
|
|
|
{
|
|
|
_resistivitySample.Clear();
|
|
|
return true;
|
|
|
}
|
|
|
double resistivityAverageValue = _resistivitySample.Average();
|
|
|
- if((_resistivitySample.Count == 1 && _resistivitySample[0]<_recipe.ResistivityMegaOhms)|| resistivityAverageValue < _recipe.ResistivityMegaOhms)
|
|
|
+ if ((_resistivitySample.Count == 1 && _resistivitySample[0] < _recipe.ResistivityMegaOhms) || resistivityAverageValue < _recipe.ResistivityMegaOhms)
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_RINSE, $"The detected resistivity value is abnormal,:{resistivityAverageValue}",0);
|
|
|
+ NotifyError(eEvent.ERR_RINSE, $"The detected resistivity value is abnormal,:{resistivityAverageValue}", 0);
|
|
|
}
|
|
|
_resistivitySample.Clear();
|
|
|
return true;
|
|
@@ -501,7 +504,7 @@ namespace CyberX8_RT.Modules.Rinse
|
|
|
_rinseCycleTwo_RinsesCompleted = 0;
|
|
|
return true;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// Abort
|
|
|
/// </summary>
|