[RT.EquipmentLibrary]

侧壁加热切回到Pyro前,检测上一步是不是Pyro,不是Pyro,对L3进行温度赋值
This commit is contained in:
hanqiangqiang 2024-03-07 17:34:10 +08:00
parent c0324fe390
commit a5063fca8d
1 changed files with 5 additions and 5 deletions

View File

@ -734,17 +734,17 @@ namespace Aitex.Core.RT.Device.Devices
case HeaterControlMode.Pyro:
L1LoopModeSetPoint = HeaterControlMode.Pyro;
L2LoopModeSetPoint = HeaterControlMode.Pyro;
if (L3LoopModeSetPoint != HeaterControlMode.Pyro)
{
L3TargetSPSetPoint = L3PVFeedBack;
}
L3LoopModeSetPoint = HeaterControlMode.Pyro;
TCPyroModeSetPoint = HeaterControlMode.Pyro;
break;
case HeaterControlMode.Power:
L1LoopModeSetPoint = HeaterControlMode.Power;
L2LoopModeSetPoint = HeaterControlMode.Power;
if (L3LoopModeSetPoint != HeaterControlMode.Pyro)
{
L3TargetSPSetPoint = L3PVFeedBack;
}
L3LoopModeSetPoint = HeaterControlMode.Power;
TCPyroModeSetPoint = HeaterControlMode.Power;
break;