PMLeakCheckRoutine.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. using Aitex.Core.RT.Routine;
  2. using Aitex.Core.RT.SCCore;
  3. using Venus_RT.Devices;
  4. using MECF.Framework.Common.Routine;
  5. using System.Diagnostics;
  6. using Venus_Core;
  7. using System;
  8. using Venus_Unity;
  9. using MECF.Framework.Common.DBCore;
  10. namespace Venus_RT.Modules.PMs
  11. {
  12. class PMLeakCheckRoutine : PMRoutineBase, IRoutine
  13. {
  14. private enum LeakCheckStep
  15. {
  16. kPumpToBasePressure,
  17. kPumpingDelay,
  18. kLeakCheckDelay,
  19. kEnd,
  20. }
  21. public double LeakRate { get; private set; }
  22. private int _basePressure = 100;
  23. private int _leakcheckPumpTime = 180;
  24. private int _leakcheckHoldTime = 300;
  25. private double _startPressure = 0;
  26. private double _endPressure = 0;
  27. private double _leakRate = 30.0;
  28. private double _leakCheckBasePressure = 1;
  29. public string CurrentStep;
  30. private JetChamber jetChamber = JetChamber.None;
  31. Stopwatch _leakCheckTimer = new Stopwatch();
  32. PMLeakCheckResult pMLeakCheckResult;
  33. Stopwatch _routineTimer = new Stopwatch();
  34. PressureType _pressureType = PressureType.mTorr;
  35. public PMLeakCheckRoutine(JetPMBase chamber) : base(chamber)
  36. {
  37. jetChamber = (JetChamber)SC.GetValue<int>($"{chamber.Name}.ChamberType");
  38. Name = "PM Leakcheck";
  39. if (chamber.ChamberType == JetChamber.Kepler2200A || chamber.ChamberType == JetChamber.Kepler2200B)
  40. {
  41. _pressureType = PressureType.Pa;
  42. }
  43. }
  44. public RState Start(params object[] objs)
  45. {
  46. if (CheckLid() &&
  47. CheckSlitDoor() &&
  48. CheckTurboPump())
  49. {
  50. CurrentStep = "Pump To BasePressure";
  51. Reset();
  52. _basePressure = SC.GetValue<int>($"{Module}.Pump.PumpBasePressure");
  53. //_leakcheckPumpTime = SC.GetValue<int>($"{Module}.Pump.LeakCheckPumpingTime");
  54. //_leakcheckHoldTime = SC.GetValue<int>($"{Module}.Pump.LeakCheckHoldTime");
  55. //_leakRate = SC.GetValue<double>($"{Module}.Pump.LeakRate");
  56. _leakcheckPumpTime = (int)(objs[0]);
  57. _leakcheckHoldTime = (int)(objs[1]);
  58. _leakRate = (double)(objs[2]);
  59. _leakCheckBasePressure = SC.GetValue<double>($"{Module}.Pump.LeakCheckBasePressure");
  60. PreSetValves();
  61. pMLeakCheckResult = new PMLeakCheckResult();
  62. pMLeakCheckResult.CheckDate = DateTime.Now.ToString("yyyyMMddHHmm");
  63. pMLeakCheckResult.CheckMode = "ChamberOnly";
  64. _routineTimer.Restart();
  65. return Runner.Start(Module, Name);
  66. }
  67. return RState.Failed;
  68. }
  69. public RState Monitor()
  70. {
  71. Runner.Wait(LeakCheckStep.kPumpToBasePressure, PumpingToBasePressure)
  72. .Run(LeakCheckStep.kPumpingDelay, StartPumpDelay, PumpingDelay ,1000*60*60*10)
  73. .Run(LeakCheckStep.kLeakCheckDelay, StartLeakCheck, _leakcheckHoldTime * 1000)
  74. .End(LeakCheckStep.kEnd, CalcLeakCheckResult, _delay_50ms);
  75. return Runner.Status;
  76. }
  77. public void Abort()
  78. {
  79. CloseAllValves();
  80. }
  81. private bool PumpingToBasePressure()
  82. {
  83. if (_chamber.ProcessPressure <= _basePressure)
  84. {
  85. _leakCheckTimer.Restart();
  86. return true;
  87. }
  88. else
  89. return false;
  90. }
  91. private bool PumpingDelay()
  92. {
  93. if (_leakCheckTimer.ElapsedMilliseconds >= _leakcheckPumpTime * 1000)
  94. {
  95. if (_chamber.ProcessPressure <= _leakCheckBasePressure)
  96. return true;
  97. else
  98. {
  99. Runner.Stop($"PM Leakcheck失败, 工艺压力 [{_chamber.ProcessPressure}]{_pressureType}, 高于LeakCheck Base Pressure: [{_leakCheckBasePressure}] {_pressureType}");
  100. }
  101. }
  102. return false;
  103. }
  104. private bool StartPumpDelay()
  105. {
  106. _chamber.OpenValve(ValveType.GasFinal, false);
  107. CurrentStep = "Check Pump";
  108. return true;
  109. }
  110. private bool StartLeakCheck()
  111. {
  112. CurrentStep = "Leak Check";
  113. _startPressure = _chamber.ProcessPressure;
  114. pMLeakCheckResult.StartPressure = _startPressure;
  115. Notify($"PM 压力开始值 {_startPressure} {_pressureType}");
  116. _chamber.TurnPendulumValve(false);
  117. return true;
  118. }
  119. private bool CalcLeakCheckResult()
  120. {
  121. _endPressure = _chamber.ProcessPressure;
  122. pMLeakCheckResult.EndPressure = _endPressure;
  123. LeakRate = (_endPressure - _startPressure) * 60.0 / _leakcheckHoldTime;
  124. pMLeakCheckResult.LeakRate = LeakRate;
  125. if (LeakRate < _leakRate)
  126. {
  127. Notify($"PM Leakcheck完成, 压力结束值: {_startPressure} {_pressureType}, 漏率:{LeakRate} {_pressureType}/min");
  128. pMLeakCheckResult.Result = "Success";
  129. }
  130. else
  131. {
  132. Stop($"PM Leakcheck失败, 腔体漏率 [{LeakRate}] {_pressureType}/min, 高于 [{_leakRate}] {_pressureType}/min");
  133. pMLeakCheckResult.Result = "Fail";
  134. }
  135. LeakCheckDataRecorder.Add(_leakcheckHoldTime, Math.Round(_startPressure,1) , Math.Round(_endPressure, 1) , LeakRate, pMLeakCheckResult.Result, "ChamberOnly", _chamber.Name);
  136. _chamber.OpenValve(ValveType.GasFinal, true);
  137. _chamber.TurnPendulumValve(true);
  138. pMLeakCheckResult.LeakCheckTime = (int)_routineTimer.ElapsedMilliseconds / 1000;
  139. //SerializeHelper.Instance.WriteToJsonFile<PMLeakCheckResult>(pMLeakCheckResult, $"LeakCheck/PM/{DateTime.Now.ToString("yyyyMMddHHmm")}.json");
  140. return true;
  141. }
  142. private void PreSetValves()
  143. {
  144. _chamber.OpenValve(ValveType.FastPump, false);
  145. if (jetChamber != JetChamber.VenusDE)
  146. {
  147. _chamber.OpenValve(ValveType.SoftPump, false);
  148. }
  149. _chamber.OpenValve(ValveType.TurboPumpPumping, true);
  150. _chamber.OpenValve(ValveType.Guage, true);
  151. _chamber.OpenValve(ValveType.GasFinal, true);
  152. _chamber.TurnPendulumValve(true);
  153. }
  154. }
  155. }