GasBoxLeakCheckRoutine.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  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 System.Collections.Generic;
  7. using Venus_Core;
  8. using System;
  9. using Venus_Unity;
  10. using MECF.Framework.Common.DBCore;
  11. using System.Text;
  12. namespace Venus_RT.Modules.PMs
  13. {
  14. class GasBoxLeakCheckRoutine : PMRoutineBase, IRoutine
  15. {
  16. private enum LeakCheckStep
  17. {
  18. kPumpToBasePressure,
  19. kPumpingDelay,
  20. kLeakCheckDelay,
  21. kEnd,
  22. }
  23. public double LeakRate { get; private set; }
  24. private int _basePressure = 100;
  25. private int _leakcheckPumpTime = 180;
  26. private int _leakcheckHoldTime = 300;
  27. private double _startPressure = 0;
  28. private double _endPressure = 0;
  29. private double _leakRate = 30.0;
  30. private double _leakCheckBasePressure = 1;
  31. private List<int> _gasLineNums = new List<int>();
  32. Stopwatch _leakCheckTimer = new Stopwatch();
  33. bool isCheckVentLine;
  34. PMLeakCheckResult pMLeakCheckResult;
  35. Stopwatch _routineTimer = new Stopwatch();
  36. StringBuilder gasLines=new StringBuilder();
  37. public string CurrentStep;
  38. PressureType _pressureType = PressureType.mTorr;
  39. private bool _readPenningGuagePressureFlag;
  40. private double _penningGuagePressure;
  41. public GasBoxLeakCheckRoutine(JetPMBase chamber) : base(chamber)
  42. {
  43. Name = "GasBox Leakcheck";
  44. if (chamber.ChamberType == JetChamber.Kepler2200A || chamber.ChamberType == JetChamber.Kepler2200B)
  45. {
  46. _pressureType = PressureType.Pa;
  47. }
  48. }
  49. public RState Start(params object[] objs)
  50. {
  51. if (CheckLid() &&
  52. CheckSlitDoor() &&
  53. CheckTurboPump())
  54. {
  55. CurrentStep = "Pump To BasePressure";
  56. Reset();
  57. _basePressure = SC.GetValue<int>($"{Module}.Pump.PumpBasePressure");
  58. //_leakcheckPumpTime = SC.GetValue<int>($"{Module}.Pump.LeakCheckPumpingTime");
  59. //_leakcheckHoldTime = SC.GetValue<int>($"{Module}.Pump.LeakCheckHoldTime");
  60. //_leakRate = SC.GetValue<double>($"{Module}.Pump.LeakRate");
  61. _leakcheckPumpTime = (int)(objs[0]);
  62. _leakcheckHoldTime = (int)(objs[1]);
  63. _leakRate = (double)(objs[2]);
  64. _leakCheckBasePressure = SC.GetValue<double>($"{Module}.Pump.LeakCheckBasePressure");
  65. // Extract line numbers which need do Leakcheck from config file
  66. _gasLineNums.Clear();
  67. //var lineNums = SC.GetStringValue($"{Module}.Pump.LeakCheckGasLineNums").Split(',');
  68. var lineNums = objs[3].ToString().Split(',');
  69. int nNum;
  70. int allGas=8;
  71. if (_chamber.ChamberType == JetChamber.Kepler2200A || _chamber.ChamberType == JetChamber.Kepler2200B)
  72. {
  73. allGas = 8;
  74. }else if (_chamber.ChamberType == JetChamber.VenusSE || _chamber.ChamberType == JetChamber.VenusDE)
  75. {
  76. allGas = 10;
  77. }
  78. foreach (string num in lineNums)
  79. {
  80. if(int.TryParse(num, out nNum))
  81. {
  82. if(nNum > 0 && nNum <= allGas && !_gasLineNums.Contains(nNum))
  83. {
  84. _gasLineNums.Add(nNum);
  85. }
  86. }
  87. }
  88. isCheckVentLine = (bool)objs[4];
  89. pMLeakCheckResult = new PMLeakCheckResult();
  90. pMLeakCheckResult.CheckMode = objs[5].ToString();
  91. if (_gasLineNums.Count == 0 && isCheckVentLine==false)
  92. {
  93. Stop($"No Gasline need do LeakCheck, please check the config item{Module}.Pump.LeakCheckGasLineNums");
  94. return RState.Failed;
  95. }
  96. gasLines.Clear();
  97. PreSetValves();
  98. pMLeakCheckResult.CheckDate = DateTime.Now.ToString("yyyyMMddHHmm");
  99. _routineTimer.Restart();
  100. Reset();
  101. return Runner.Start(Module, Name);
  102. }
  103. return RState.Failed;
  104. }
  105. public RState Monitor()
  106. {
  107. Runner.Wait(LeakCheckStep.kPumpToBasePressure, ()=> { return _chamber.ProcessPressure <= _basePressure; })
  108. .Run(LeakCheckStep.kPumpingDelay, LeakCheckPumping, PumpingDelay, _delay_10d)
  109. .Run(LeakCheckStep.kLeakCheckDelay, StartLeakCheck, _leakcheckHoldTime * 1000)
  110. .End(LeakCheckStep.kEnd, CalcLeakCheckResult, _delay_50ms);
  111. return Runner.Status;
  112. }
  113. public void Abort()
  114. {
  115. CloseAllValves();
  116. }
  117. private bool LeakCheckPumping()
  118. {
  119. CurrentStep = "Check Pump";
  120. foreach (var num in _gasLineNums)
  121. {
  122. var _MfcN2Scale = SC.GetValue<int>($"{Module}.MfcGas{num}.MfcN2Scale");
  123. var _MfcScaleFactor = SC.GetValue<Double>($"{Module}.MfcGas{num}.MfcScaleFactor");
  124. var _GasFlow = _MfcN2Scale * _MfcScaleFactor;
  125. _chamber.FlowGas(num-1, _GasFlow);
  126. gasLines.Append($"Gas{num},");
  127. }
  128. if (_gasLineNums.Contains(1))
  129. {
  130. _chamber.OpenValve(ValveType.PV11, true);
  131. }
  132. if (_gasLineNums.Contains(2))
  133. {
  134. _chamber.OpenValve(ValveType.PV21, true);
  135. }
  136. if (_gasLineNums.Contains(3))
  137. {
  138. _chamber.OpenValve(ValveType.PV31, true);
  139. }
  140. if (_gasLineNums.Contains(4))
  141. {
  142. _chamber.OpenValve(ValveType.PV41, true);
  143. }
  144. if (_gasLineNums.Contains(5))
  145. {
  146. _chamber.OpenValve(ValveType.PV51, true);
  147. }
  148. if (_gasLineNums.Contains(6))
  149. {
  150. _chamber.OpenValve(ValveType.PV61, true);
  151. }
  152. if (_gasLineNums.Contains(7))
  153. {
  154. _chamber.OpenValve(ValveType.PV71, true);
  155. }
  156. if (_gasLineNums.Contains(8))
  157. {
  158. _chamber.OpenValve(ValveType.PV81, true);
  159. }
  160. if (_gasLineNums.Contains(9))
  161. {
  162. _chamber.OpenValve(ValveType.PV91, true);
  163. }
  164. if (_gasLineNums.Contains(10))
  165. {
  166. _chamber.OpenValve(ValveType.PVA1, true);
  167. }
  168. if (_gasLineNums.Contains(11))
  169. {
  170. _chamber.OpenValve(ValveType.PVB1, true);
  171. }
  172. if (_gasLineNums.Contains(12))
  173. {
  174. _chamber.OpenValve(ValveType.PVC1, true);
  175. }
  176. //2023/04/25添加vent line漏气检测
  177. if (isCheckVentLine == true)
  178. {
  179. _chamber.OpenValve(ValveType.PVN21, true);
  180. _chamber.OpenValve(ValveType.PVN22, true);
  181. _chamber.OpenValve(ValveType.N2, true);
  182. gasLines.Append("VentLine");
  183. }
  184. _leakCheckTimer.Restart();
  185. return true;
  186. }
  187. private bool PumpingDelay()
  188. {
  189. if (_leakCheckTimer.ElapsedMilliseconds > (_leakcheckPumpTime - 5) * 1000 && _readPenningGuagePressureFlag == false)
  190. {
  191. _penningGuagePressure = _chamber.PenningGuagePressure;
  192. pMLeakCheckResult.BasePressure = _penningGuagePressure;
  193. _readPenningGuagePressureFlag = true;
  194. }
  195. if (_leakCheckTimer.ElapsedMilliseconds >= _leakcheckPumpTime * 1000)
  196. {
  197. if (_chamber.ProcessPressure <= _leakCheckBasePressure)
  198. return true;
  199. else
  200. {
  201. Runner.Stop($"GasBox Leakcheck失败, 工艺压力 [{_chamber.ProcessPressure}]{_pressureType}, 高于LeakCheck Base Pressure: [{_leakCheckBasePressure}] {_pressureType}");
  202. }
  203. }
  204. return false;
  205. }
  206. private bool StartLeakCheck()
  207. {
  208. CurrentStep = "Leak Check";
  209. _startPressure = _chamber.ProcessPressure;
  210. pMLeakCheckResult.StartPressure = _startPressure;
  211. Notify($"PM 压力开始值 {_startPressure} {_pressureType}");
  212. _chamber.TurnPendulumValve(false);
  213. return true;
  214. }
  215. private bool CalcLeakCheckResult()
  216. {
  217. _endPressure = _chamber.ProcessPressure;
  218. pMLeakCheckResult.EndPressure = _endPressure;
  219. LeakRate = (_endPressure - _startPressure) * 60.0 / _leakcheckHoldTime;
  220. pMLeakCheckResult.LeakRate = LeakRate;
  221. if (LeakRate < _leakRate)
  222. {
  223. Notify($"GasBox Leakcheck完成, 压力结束值: {_startPressure} {_pressureType}, 漏率:{LeakRate} {_pressureType}/min");
  224. pMLeakCheckResult.Result = "Success";
  225. }
  226. else
  227. {
  228. Stop($"GasBox Leakcheck失败, 腔体漏率 [{LeakRate}] {_pressureType}/min, 高于 [{_leakRate}] {_pressureType}/min");
  229. pMLeakCheckResult.Result = "Fail";
  230. }
  231. if (RtInstance.ConfigType == ConfigType.Kepler2200)
  232. {
  233. LeakCheckDataRecorder.AddKepler2200(_leakcheckHoldTime, pMLeakCheckResult.BasePressure, Math.Round(_startPressure, 5), Math.Round(_endPressure, 5), LeakRate, pMLeakCheckResult.Result, pMLeakCheckResult.CheckMode, _chamber.Name, gasLines.ToString());
  234. }
  235. else
  236. {
  237. //LeakCheckDataRecorder.Add(_leakcheckHoldTime, Math.Round(_startPressure, 1), Math.Round(_endPressure, 1), LeakRate, pMLeakCheckResult.Result, "ChamberOnly", _chamber.Name);
  238. LeakCheckDataRecorder.Add(_leakcheckHoldTime, Math.Round(_startPressure, 5), Math.Round(_endPressure, 5), LeakRate, pMLeakCheckResult.Result, pMLeakCheckResult.CheckMode, _chamber.Name, gasLines.ToString());
  239. }
  240. _chamber.StopAllGases();
  241. _chamber.TurnPendulumValve(true);
  242. _chamber.OpenValve(ValveType.PV11, false);
  243. _chamber.OpenValve(ValveType.PV21, false);
  244. _chamber.OpenValve(ValveType.PV31, false);
  245. _chamber.OpenValve(ValveType.PV41, false);
  246. if (_gasLineNums.Contains(5))
  247. {
  248. _chamber.OpenValve(ValveType.PV51, false);
  249. }
  250. if (_gasLineNums.Contains(6))
  251. {
  252. _chamber.OpenValve(ValveType.PV61, false);
  253. }
  254. if (_gasLineNums.Contains(7))
  255. {
  256. _chamber.OpenValve(ValveType.PV71, false);
  257. }
  258. if (_gasLineNums.Contains(8))
  259. {
  260. _chamber.OpenValve(ValveType.PV81, false);
  261. }
  262. if (_gasLineNums.Contains(9))
  263. {
  264. _chamber.OpenValve(ValveType.PV91, false);
  265. }
  266. if (_gasLineNums.Contains(10))
  267. {
  268. _chamber.OpenValve(ValveType.PVA1, false);
  269. }
  270. if (_gasLineNums.Contains(11))
  271. {
  272. _chamber.OpenValve(ValveType.PVB1, false);
  273. }
  274. if (_gasLineNums.Contains(12))
  275. {
  276. _chamber.OpenValve(ValveType.PVC1, false);
  277. }
  278. if (_chamber.ChamberType==JetChamber.VenusSE|| _chamber.ChamberType == JetChamber.VenusDE)
  279. {
  280. _chamber.OpenValve(ValveType.PVN22, false);
  281. }
  282. pMLeakCheckResult.LeakCheckTime = (int)_routineTimer.ElapsedMilliseconds / 1000;
  283. //SerializeHelper.Instance.WriteToJsonFile<PMLeakCheckResult>(pMLeakCheckResult, $"LeakCheck/PM/{DateTime.Now.ToString("yyyyMMddHHmm")}.json");
  284. return true;
  285. }
  286. private void PreSetValves()
  287. {
  288. _chamber.OpenValve(ValveType.FastPump, false);
  289. if(_chamber.ChamberType!=JetChamber.VenusDE)
  290. {
  291. _chamber.OpenValve(ValveType.SoftPump, false);
  292. }
  293. _chamber.OpenValve(ValveType.SoftPump, false);
  294. _chamber.OpenValve(ValveType.TurboPumpPumping, true);
  295. _chamber.OpenValve(ValveType.Guage, true);
  296. _chamber.OpenValve(ValveType.GasFinal, true);
  297. _chamber.TurnPendulumValve(true);
  298. _chamber.StopAllGases();
  299. _chamber.OpenValve(ValveType.PV11, false);
  300. _chamber.OpenValve(ValveType.PV21, false);
  301. _chamber.OpenValve(ValveType.PV31, false);
  302. _chamber.OpenValve(ValveType.PV41, false);
  303. if (_gasLineNums.Contains(5))
  304. {
  305. _chamber.OpenValve(ValveType.PV51, false);
  306. }
  307. if (_gasLineNums.Contains(6))
  308. {
  309. _chamber.OpenValve(ValveType.PV61, false);
  310. }
  311. if (_gasLineNums.Contains(7))
  312. {
  313. _chamber.OpenValve(ValveType.PV71, false);
  314. }
  315. if (_gasLineNums.Contains(8))
  316. {
  317. _chamber.OpenValve(ValveType.PV81, false);
  318. }
  319. if (_gasLineNums.Contains(9))
  320. {
  321. _chamber.OpenValve(ValveType.PV91, false);
  322. }
  323. if (_gasLineNums.Contains(10))
  324. {
  325. _chamber.OpenValve(ValveType.PVA1, false);
  326. }
  327. if (_gasLineNums.Contains(11))
  328. {
  329. _chamber.OpenValve(ValveType.PVB1, false);
  330. }
  331. if (_gasLineNums.Contains(12))
  332. {
  333. _chamber.OpenValve(ValveType.PVC1, false);
  334. }
  335. }
  336. }
  337. }