MFVentRoutine.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. using Aitex.Core.RT.Routine;
  2. using Aitex.Core.RT.SCCore;
  3. using Venus_RT.Devices;
  4. using MECF.Framework.Common.Equipment;
  5. using Venus_Core;
  6. using System.Runtime.InteropServices.WindowsRuntime;
  7. namespace Venus_RT.Modules.TM
  8. {
  9. class MFVentRoutine : ModuleRoutineBase, IRoutine
  10. {
  11. private enum VentStep
  12. {
  13. Venting,
  14. OpenSoftVent,
  15. SwitchFastVent,
  16. CloseVentValves,
  17. Delay,
  18. CloseExhaustValve,
  19. PrepareCooling,
  20. StartCooling,
  21. Cooling,
  22. End,
  23. }
  24. private int _ventingTimeout;
  25. private int _SoftVentEndPressure;
  26. private readonly JetTM _JetTM;
  27. private int _ventTimeDelay = 1;
  28. private bool _needCooling = false;
  29. private double _coolingMFCFlow = 0;
  30. private bool _skipRepeatVent = false;
  31. private int _ExhaustValveOffDelayTime = 1000;
  32. public MFVentRoutine(JetTM jetTM, ModuleName mod) : base(mod)
  33. {
  34. _JetTM = jetTM;
  35. Name = "Vent ";
  36. }
  37. public RState Start(params object[] objs)
  38. {
  39. bool isLoadLock = (ModuleHelper.IsLoadLock(Module));
  40. if (objs.Length > 0 && isLoadLock)
  41. {
  42. _needCooling = (bool)objs[0];
  43. _coolingMFCFlow = SC.GetValue<double>($"{Module}.Cooling.MFCFlow");
  44. }
  45. _skipRepeatVent = false;
  46. if (isLoadLock && !_needCooling && IsPressureReady())
  47. _skipRepeatVent = true; ;
  48. _JetTM.TurnSoftPumpValve(Module, false);
  49. _JetTM.TurnFastPumpValve(Module, false);
  50. _JetTM.TurnPurgeValve(Module, false);
  51. if (_JetTM.CheckLidClosed(Module) &&
  52. _JetTM.CheckPumpValveClosed(Module) &&
  53. _JetTM.CheckPurgeValveClosed(Module))
  54. {
  55. Reset();
  56. _ventingTimeout = SC.GetValue<int>($"{Module}.VentingTimeout") * 1000;
  57. _SoftVentEndPressure = SC.GetValue<int>($"{Module}.SoftVentEndPressure");
  58. _ventTimeDelay = SC.GetValue<int>($"{Module}.OverVentTime");
  59. _ExhaustValveOffDelayTime= SC.GetValue<int>($"{Module}.ExhaustValveOffDelayTime");
  60. return Runner.Start(Module, Name);
  61. }
  62. return RState.Failed;
  63. }
  64. public RState Monitor()
  65. {
  66. if (_skipRepeatVent)
  67. {
  68. Notify($" pressure: {_JetTM.GetModulePressure(Module)} is ready, skip the the venting routine.");
  69. CloseVentValve();
  70. CloseExhaustValve();
  71. return RState.End;
  72. }
  73. Runner.Run(VentStep.OpenSoftVent, OpenSoftVentValve, IsSoftVentEnd)
  74. .Run(VentStep.SwitchFastVent, SwitchFastVentValve, IsPressureReady, _ventingTimeout)
  75. .Delay(VentStep.Delay, _ventTimeDelay)
  76. .Run(VentStep.CloseVentValves, CloseVentValve, _ExhaustValveOffDelayTime)
  77. .RunIf(VentStep.PrepareCooling, _needCooling, StopVent)
  78. .RunIf(VentStep.StartCooling, _needCooling, StartCooling, 3600000)
  79. .End(VentStep.CloseExhaustValve, CloseExhaustValve);
  80. return Runner.Status;
  81. }
  82. private bool OpenSoftVentValve()
  83. {
  84. _JetTM.TurnN2Valve(true);
  85. _JetTM.TurnPurgeValve(Module, true);
  86. switch (Module)
  87. {
  88. case ModuleName.LLA:
  89. _JetTM.SetLLAFlow(2000);
  90. break;
  91. case ModuleName.LLB:
  92. _JetTM.SetLLBFlow(2000);
  93. break;
  94. case ModuleName.TM:
  95. _JetTM.SetTMFlow(100);
  96. break;
  97. }
  98. return true;
  99. }
  100. private bool CloseExhaustValve()
  101. {
  102. _JetTM.TurnExhaustValve(Module, false);
  103. return true;
  104. }
  105. private bool IsSoftVentEnd()
  106. {
  107. return _JetTM.GetModulePressure(Module) > _SoftVentEndPressure;
  108. }
  109. private bool SwitchFastVentValve()
  110. {
  111. switch (Module)
  112. {
  113. case ModuleName.LLA:
  114. _JetTM.SetLLAFlow(0);
  115. break;
  116. case ModuleName.LLB:
  117. _JetTM.SetLLBFlow(0);
  118. break;
  119. case ModuleName.TM:
  120. _JetTM.SetTMFlow(0);
  121. break;
  122. }
  123. _JetTM.TurnPurgeValve(Module, false);
  124. _JetTM.TurnExhaustValve(Module, true);
  125. _JetTM.TurnVentValve(Module, true);
  126. return true;
  127. }
  128. private bool CloseVentValve()
  129. {
  130. _JetTM.TurnPurgeValve(Module, false);
  131. _JetTM.TurnVentValve(Module, false);
  132. return true;
  133. }
  134. private bool StopVent()
  135. {
  136. _JetTM.TurnVentValve(Module, false);
  137. _JetTM.TurnExhaustValve(Module, false);
  138. return true;
  139. }
  140. private bool StartCooling()
  141. {
  142. _JetTM.TurnPurgeValve(Module, true);
  143. _JetTM.TurnExhaustValve(Module, true);
  144. if (Module == ModuleName.LLA)
  145. {
  146. _JetTM.SetLLAFlow(_coolingMFCFlow);
  147. }
  148. else if (Module == ModuleName.LLB)
  149. {
  150. _JetTM.SetLLBFlow(_coolingMFCFlow);
  151. }
  152. return true;
  153. }
  154. private bool IsPressureReady()
  155. {
  156. return _JetTM.IsModuleATM(Module);
  157. }
  158. public void Abort()
  159. {
  160. CloseVentValve();
  161. if (_needCooling)
  162. {
  163. if (Module == ModuleName.LLA)
  164. {
  165. _JetTM.SetLLAFlow(0);
  166. }
  167. else if (Module == ModuleName.LLB)
  168. {
  169. _JetTM.SetLLBFlow(0);
  170. }
  171. _JetTM.TurnPurgeValve(Module, false);
  172. _JetTM.TurnExhaustValve(Module, false);
  173. Notify("Cooling done");
  174. }
  175. }
  176. }
  177. }