1.解决隔热罩判断下位置代码误写错问题

This commit is contained in:
HCL 2023-06-02 09:30:34 +08:00
parent c56c0b533e
commit cb31f1e152
1 changed files with 1 additions and 2 deletions

View File

@ -652,8 +652,7 @@ namespace Aitex.Core.RT.Device.Devices
{
if (_diPMATMSW != null && _diPSUEnable != null && _aiActualSpeed != null && _diConfinementRingDown != null && _aiCurPos != null && _aiDownPos != null)
{
if (!_diPSUEnable.Value && _diPMATMSW.Value && _aiActualSpeed.FloatValue == 0 && _diConfinementRingDown.Value &&
Math.Abs(_aiActualSpeed.FloatValue - _aiDownPos.FloatValue) < 0.5)
if (!_diPSUEnable.Value && _diPMATMSW.Value && _aiActualSpeed.FloatValue == 0 && _diConfinementRingDown.Value && Math.Abs(_aiCurPos.FloatValue - _aiDownPos.FloatValue) < 0.5)
{
if (!_doReactorATMTransferReady.Value)
{