|
@@ -403,6 +403,12 @@ namespace CyberX8_RT.Devices.Reservoir
|
|
|
_resRecipe.DIReplenTimeRate, _resRecipe.DIReplenCurrentRate, DIReplenOff);
|
|
|
if (result)
|
|
|
{
|
|
|
+ //补水完成打印日志
|
|
|
+ LOG.WriteLog(eEvent.INFO_RESERVOIR, Module, $"{Module} CADIReplen State :False," +
|
|
|
+ $"SetPoint ={Recipe.CAFlowSetPoint}" +
|
|
|
+ $"Level = {_reservoirData.Level}" +
|
|
|
+ $"HighLimit={Recipe.CALevelErrorHigh}" +
|
|
|
+ $"LowLimit={Recipe.CALevelErrorLow}");
|
|
|
_currentOperation = ReservoirOperation.None;
|
|
|
}
|
|
|
}
|
|
@@ -1479,6 +1485,11 @@ namespace CyberX8_RT.Devices.Reservoir
|
|
|
bool result = DIReplenOn(false);
|
|
|
if (result)
|
|
|
{
|
|
|
+ LOG.WriteLog(eEvent.INFO_RESERVOIR, Module, $"{Module} CADIReplen State :True," +
|
|
|
+ $"SetPoint ={Recipe.CAFlowSetPoint}" +
|
|
|
+ $"Level = {_reservoirData.Level}" +
|
|
|
+ $"HighLimit={Recipe.CALevelErrorHigh}" +
|
|
|
+ $"LowLimit={Recipe.CALevelErrorLow}");
|
|
|
_currentOperation = ReservoirOperation.AutoDiReplen;
|
|
|
_persistentValue.DiReplenTime = DateTime.Now;
|
|
|
}
|