123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- using Aitex.Core.RT.Routine;
- using Aitex.Core.RT.SCCore;
- using Venus_RT.Devices;
- using MECF.Framework.Common.Routine;
- using System.Diagnostics;
- using Venus_Core;
- namespace Venus_RT.Modules.PMs
- {
- class PMLeakCheckRoutine : PMRoutineBase, IRoutine
- {
- private enum LeakCheckStep
- {
- kPumpToBasePressure,
- kPumpingDelay,
- kLeakCheckDelay,
- kEnd,
- }
- public double LeakRate { get; private set; }
- 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;
- Stopwatch _leakCheckTimer = new Stopwatch();
- public PMLeakCheckRoutine(JetPM chamber) : base(chamber)
- {
- Name = "PM 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");
- PreSetValves();
- return Runner.Start(Module, Name);
- }
- return RState.Failed;
- }
- public RState Monitor()
- {
- Runner.Wait((int)LeakCheckStep.kPumpToBasePressure, PumpingToBasePressure)
- .Run((int)LeakCheckStep.kPumpingDelay, HOFs.WrapAction(_chamber.OpenValve, ValveType.GasFinal, false), PumpingDelay)
- .Run((int)LeakCheckStep.kLeakCheckDelay, StartLeakCheck, _leakcheckHoldTime * 1000)
- .End((int)LeakCheckStep.kEnd, CalcLeakCheckResult, _delay_50ms);
- return Runner.Status;
- }
- public void Abort()
- {
- CloseAllValves();
- }
- private bool PumpingToBasePressure()
- {
- if (_chamber.ChamberPressure <= _basePressure)
- {
- _leakCheckTimer.Restart();
- return true;
- }
- else
- return false;
- }
- private bool PumpingDelay()
- {
- if(_leakCheckTimer.ElapsedMilliseconds >= _leakcheckPumpTime * 1000)
- {
- if (_chamber.ChamberPressure <= _leakCheckBasePressure)
- return true;
- else
- {
- Runner.Stop($"PM 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($"PM Leakcheck完成, 压力结束值: {_startPressure} mt, 漏率:{LeakRate} mt/min");
- }
- else
- {
- Stop($"PM Leakcheck失败, 腔体漏率 [{LeakRate}] mt/min, 高于 [{_leakRate}] mt/min");
- }
- _chamber.OpenValve(ValveType.GasFinal, true);
- _chamber.TurnPendulumValve(true);
- 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);
- }
- }
- }
|