| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 | using System;using Aitex.Core.RT.Routine;using Aitex.Core.RT.SCCore;using VirgoCommon;using VirgoRT.Devices;namespace VirgoRT.Modules.PMs{    class RfPowerRoutine : PMRoutineBase, IRoutine    {        private enum RoutineStep        {            kRFPowerOn,            kRFPowerOFF,            MatchOn,            End,        };        private readonly bool _ON;        private double _rfPower;        private double _matchC1;        private double _matchC2;        private double _rfPowerOnTime;        public RfPowerRoutine(JetPM chamber, bool bON) : base(chamber)        {            Name = "RF Power";            _ON = bON;        }        public Result Start(params object[] objs)        {            if (!_chamber.IsFastPumpOpened)            {                Stop("Pump 阀没有打开");                return Result.FAIL;            }            //if (_chamber.TotalGasSetpoint <= 0)            //{            //    Stop("No gas flowing for RF power on");            //    return Result.FAIL;            //}            Reset();            if (_ON)            {                if (objs == null || objs.Length < 3)                    throw new ArgumentException("RF routine argument error");                _rfPower = Convert.ToDouble(objs[0]);                _rfPowerOnTime = Convert.ToDouble(objs[1]);                _matchC1 = Convert.ToDouble(objs[2]);                _matchC2 = Convert.ToDouble(objs[3]);            }            else            {                _rfPower = 0.0;                _matchC1 = 0.0;                _matchC2 = 0.0;                _rfPowerOnTime = 0.0;            }            return Result.RUN;        }        public Result Monitor()        {            try            {                if (_ON)                {                    RFPowerOn((int)RoutineStep.kRFPowerOn, "RF Power On");                }                else                {                    RFPowerOFF((int)RoutineStep.kRFPowerOFF, "RF Power OFF");                }                //MatchOn((int)RoutineStep.MatchOn, "Match On");                End((int)RoutineStep.End);            }            catch (RoutineBreakException)            {                return Result.RUN;            }            catch (RoutineFaildException)            {                return Result.FAIL;            }            catch (Exception ex)            {                Stop(ex.Message);                return Result.FAIL;            }            return Result.DONE;        }        public void RFPowerOn(int id, string name)        {            Tuple<bool, Result> ret = ExecuteAndWait(id, () =>            {                Notify($"放电开始, 设定值 {_rfPower}");                _chamber.GeneratorSetpower((float)_rfPower);                return _chamber.GeneratorPowerOn(true);            }, () =>            {                if (Elapsed >= _rfPowerOnTime)                {                    Notify("放电结束");                    _chamber.StopAllGases();                    _chamber.SetValveOnOff(ValveType.PROCESS, false);                    _chamber.GeneratorPowerOn(false);                    return true;                }                return false;            }, _rfPowerOnTime * 1000);            if (ret.Item1)            {                if (ret.Item2 == Result.FAIL)                {                    _chamber.StopAllGases();                    _chamber.SetValveOnOff(ValveType.PROCESS, false);                    _chamber.GeneratorPowerOn(false);                    throw new RoutineFaildException();                }                throw new RoutineBreakException();            }        }        public void RFPowerOFF(int id, string name)        {            Tuple<bool, Result> ret = ExecuteAndWait(id, () =>            {                Notify("放电停止");                return _chamber.GeneratorPowerOn(false);            }, () => true, 2000);            if (ret.Item1)            {                if (ret.Item2 == Result.FAIL)                {                    _chamber.StopAllGases();                    _chamber.SetValveOnOff(ValveType.PROCESS, false);                    throw new RoutineFaildException();                }                throw new RoutineBreakException();            }        }        public void MatchOn(int id, string name)        {            bool Func()            {                Notify($"Match C1设定值 {_matchC1}, Match C2设定值 {_matchC2}");                if (_chamber.SetMatchPosition((float)_matchC1, (float)_matchC2))                {                    return true;                }                return false;            }            bool? Check1()            {                return true;            }            Tuple<bool, Result> ret = ExecuteAndWait(id, Func, Check1, 0);            if (ret.Item1)            {                if (ret.Item2 == Result.FAIL)                {                    throw new RoutineFaildException();                }                throw new RoutineBreakException();            }        }        public override void Abort()        {            _chamber.GeneratorSetpower(0);            _chamber.GeneratorPowerOn(false);        }    }}
 |