|
@@ -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} ");
|