| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 | using Aitex.Core.RT.Routine;using Aitex.Core.RT.SCCore;using Venus_RT.Devices;using MECF.Framework.Common.Routine;using System.Diagnostics;using System.Collections.Generic;using Venus_Core;namespace Venus_RT.Modules.PMs{    class GasBoxLeakCheckRoutine : PMRoutineBase, IRoutine    {        private enum LeakCheckStep        {            kPumpToBasePressure,            kPumpingDelay,            kLeakCheckDelay,            kEnd,        }        public double LeakRate { get; private set; }        private readonly double _GasFlow = 1.0;        private int _basePressure = 100;        private int _leakcheckPumpTime = 180;        private int _leakcheckHoldTime = 300;        private double _startPressure = 0;        private double _endPressure = 0;        private double _leakRate = 30.0;        private double _leakCheckBasePressure = 1;        private List<int> _gasLineNums = new List<int>();        Stopwatch _leakCheckTimer = new Stopwatch();        public GasBoxLeakCheckRoutine(JetPM chamber) : base(chamber)        {            Name = "GasBox Leakcheck";        }        public RState Start(params object[] objs)        {            if (CheckLidLoadLock() &&                CheckSlitDoor() &&                CheckTurboPump())            {                Reset();                _basePressure = SC.GetValue<int>($"{Module}.Pump.PumpBasePressure");                _leakcheckPumpTime = SC.GetValue<int>($"{Module}.Pump.LeakCheckPumpingTime");                _leakcheckHoldTime = SC.GetValue<int>($"{Module}.Pump.LeakCheckHoldTime");                _leakRate = SC.GetValue<double>($"{Module}.Pump.LeakRate");                _leakCheckBasePressure = SC.GetValue<double>($"{Module}.Pump.LeakCheckBasePressure");                // Extract line numbers which need do Leakcheck from config file                _gasLineNums.Clear();                var lineNums = SC.GetStringValue($"{Module}.Pump.LeakCheckGasLineNums").Split(',');                int nNum;                foreach(string num in lineNums)                {                    if(int.TryParse(num, out nNum))                    {                        if(nNum > 0 && nNum <= 8 && !_gasLineNums.Contains(nNum))                        {                            _gasLineNums.Add(nNum);                        }                    }                }                if(_gasLineNums.Count == 0)                {                    Stop($"No Gasline need do LeakCheck, please check the config item{Module}.Pump.LeakCheckGasLineNums");                    return RState.Failed;                }                PreSetValves();                Reset();                return Runner.Start(Module, Name);            }            return RState.Failed;        }        public RState Monitor()        {            Runner.Wait((int)LeakCheckStep.kPumpToBasePressure, ()=> { return _chamber.ChamberPressure <= _basePressure; })                .Run((int)LeakCheckStep.kPumpingDelay,          LeakCheckPumping,                                   PumpingDelay)                .Run((int)LeakCheckStep.kLeakCheckDelay,        StartLeakCheck,                                     _leakcheckHoldTime * 1000)                .End((int)LeakCheckStep.kEnd,                   CalcLeakCheckResult,                                _delay_50ms);            return Runner.Status;        }        public void Abort()        {            CloseAllValves();        }        private bool LeakCheckPumping()        {            foreach(var num in _gasLineNums)            {                _chamber.FlowGas(num, _GasFlow);            }            _chamber.OpenValve(ValveType.PV11, true);            _chamber.OpenValve(ValveType.PV21, true);            _chamber.OpenValve(ValveType.PV31, true);            _chamber.OpenValve(ValveType.PV41, true);            _leakCheckTimer.Restart();            return true;        }        private bool PumpingDelay()        {            if (_leakCheckTimer.ElapsedMilliseconds >= _leakcheckPumpTime * 1000)            {                if (_chamber.ChamberPressure <= _leakCheckBasePressure)                    return true;                else                {                    Runner.Stop($"GasBox Leakcheck失败, 腔体压力 [{_chamber.ChamberPressure}]mTor, 高于LeakCheck Base Pressure: [{_leakCheckBasePressure}] mTor");                }            }            return false;        }        private bool StartLeakCheck()        {            _startPressure = _chamber.ChamberPressure;            Notify($"PM 压力开始值 {_startPressure} mt");            _chamber.TurnPendulumValve(false);            return true;        }        private bool CalcLeakCheckResult()        {            _endPressure = _chamber.ChamberPressure;            LeakRate = (_endPressure - _startPressure) * 60.0 / _leakcheckHoldTime;            if (LeakRate < _leakRate)            {                Notify($"GasBox Leakcheck完成, 压力结束值: {_startPressure} mt, 漏率:{LeakRate} mt/min");            }            else            {                Stop($"GasBox Leakcheck失败, 腔体漏率 [{LeakRate}] mt/min, 高于 [{_leakRate}] mt/min");            }            _chamber.StopAllGases();            _chamber.TurnPendulumValve(true);            _chamber.OpenValve(ValveType.PV11, false);            _chamber.OpenValve(ValveType.PV21, false);            _chamber.OpenValve(ValveType.PV31, false);            _chamber.OpenValve(ValveType.PV41, false);            return true;        }        private void PreSetValves()        {            _chamber.OpenValve(ValveType.FastPump, false);            _chamber.OpenValve(ValveType.SoftPump, false);            _chamber.OpenValve(ValveType.TurboPumpPumping, true);            _chamber.OpenValve(ValveType.Guage, true);            _chamber.OpenValve(ValveType.GasFinal, true);            _chamber.TurnPendulumValve(true);            _chamber.StopAllGases();            _chamber.OpenValve(ValveType.PV11, false);            _chamber.OpenValve(ValveType.PV21, false);            _chamber.OpenValve(ValveType.PV31, false);            _chamber.OpenValve(ValveType.PV41, false);        }    }}
 |