소스 검색

revise reservoir log bug

chenzk 1 개월 전
부모
커밋
ba87258635
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      CyberX8_RT/Devices/Reservoir/StandardHotReservoirDevice.cs

+ 5 - 3
CyberX8_RT/Devices/Reservoir/StandardHotReservoirDevice.cs

@@ -376,7 +376,9 @@ namespace CyberX8_RT.Devices.Reservoir
                     StandardHotMetalDevice hotMetalDevice = _metalDevices[i];
                     if (hotMetalDevice != null)
                     {
-                        LOG.WriteLog(eEvent.INFO_METAL, hotMetalDevice.Name, $"CA Flow:{hotMetalDevice.MetalDeviceData.CellFlow} L/min");
+                        LOG.WriteLog(eEvent.INFO_METAL, hotMetalDevice.Name, $"CA Flow:{hotMetalDevice.MetalDeviceData.CellFlow} L/min" +
+                            $" PumpEnable : {hotMetalDevice.MetalDeviceData.CellPump}  " +
+                            $" Circulation : {hotMetalDevice.MetalDeviceData.Circulation}  ");
                     }
                 }
                 LOG.WriteLog(eEvent.INFO_RESERVOIR, Module, $"{Module} PH :{_reservoirData.PHValue},  " +
@@ -449,7 +451,7 @@ namespace CyberX8_RT.Devices.Reservoir
                             {
                                 //补水完成打印日志
                                 LOG.WriteLog(eEvent.INFO_RESERVOIR, Module, $"{Module} CADIReplen State :False,  " +
-                                $"SetPoint = {Recipe.CAFlowSetPoint}  " +
+                                $"SetPoint = {Recipe.ReservoirCALevel}  " +
                                 $"Level = {_reservoirData.Level}  " +
                                 $"HighLimit = {Recipe.CALevelErrorHigh}  " +
                                 $"LowLimit = {Recipe.CALevelErrorLow}  ");
@@ -1548,7 +1550,7 @@ namespace CyberX8_RT.Devices.Reservoir
             if (result)
             {
                 LOG.WriteLog(eEvent.INFO_RESERVOIR, Module, $"{Module} CADIReplen State :True,  " +
-                $"SetPoint = {Recipe.CAFlowSetPoint}  " +
+                $"SetPoint = {Recipe.ReservoirCALevel}  " +
                 $"Level = {_reservoirData.Level}  " +
                 $"HighLimit = {Recipe.CALevelErrorHigh}  " +
                 $"LowLimit = {Recipe.CALevelErrorLow}  ");