GasFlowRoutine.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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 Venus_Core;
  6. using Aitex.Core.RT.OperationCenter;
  7. using System.Linq;
  8. namespace Venus_RT.Modules.PMs
  9. {
  10. enum GasStep
  11. {
  12. kStartGas,
  13. kEnd,
  14. }
  15. class GasFlowRoutine : PMRoutineBase, IRoutine
  16. {
  17. public bool _gasStatus = false;
  18. private double[] _mfcSetPoint;
  19. private ValveType[] vlvs;
  20. public GasFlowRoutine(JetPMBase chamber) : base(chamber)
  21. {
  22. Name = "Gas Flow";
  23. switch (chamber.ChamberType)
  24. {
  25. case JetChamber.VenusSE:
  26. case JetChamber.VenusDE:
  27. _mfcSetPoint = new double[12];
  28. vlvs = new ValveType[] {
  29. ValveType.PV11, ValveType.PV21, ValveType.PV31,
  30. ValveType.PV41, ValveType.PV51, ValveType.PV61,
  31. ValveType.PV71, ValveType.PV81, ValveType.PV91,
  32. ValveType.PVA1, ValveType.PVB1, ValveType.PVC1
  33. };
  34. break;
  35. default:
  36. _mfcSetPoint = new double[8];
  37. vlvs = new ValveType[] { ValveType.PV11, ValveType.PV21, ValveType.PV31, ValveType.PV41 };
  38. break;
  39. }
  40. }
  41. public RState Start(params object[] objs)
  42. {
  43. //if (!_chamber.IsFastPumpOpened)
  44. //{
  45. // StopFlow();
  46. // Stop("Pump 阀没有打开");
  47. // return RState.Failed;
  48. //}
  49. if (!CheckTurboPump())
  50. {
  51. return RState.Failed;
  52. }
  53. if (_chamber.GetPVPosition() <= 0)
  54. {
  55. Stop("钟摆阀没有打开");
  56. return RState.Failed;
  57. }
  58. Reset();
  59. // open process final valve and flow
  60. Notify("Open valve and flow mfc");
  61. if (RtInstance.ConfigType == ConfigType.Kepler2200)
  62. {
  63. }
  64. else
  65. {
  66. _chamber.OpenValve(ValveType.GasFinal, true);
  67. }
  68. int i = 0;
  69. foreach (object o in objs)
  70. {
  71. _mfcSetPoint[i++] = (double)o;
  72. }
  73. if (RtInstance.ConfigType == ConfigType.Kepler2200 && _mfcSetPoint.Length==8)
  74. {
  75. double sum = 0;
  76. for (int j = 0; j < 7; j++)
  77. {
  78. sum += _mfcSetPoint[j];
  79. }
  80. if (sum > 0)
  81. {
  82. _chamber.OpenValve(ValveType.GasFinal, true);
  83. }
  84. }
  85. else
  86. {
  87. _chamber.OpenValve(ValveType.GasFinal, true);
  88. }
  89. _gasStatus = true;
  90. Reset();
  91. return Runner.Start(Module, Name);
  92. }
  93. public RState Monitor()
  94. {
  95. Runner.Run(GasStep.kStartGas, FlowMfc, CheckRange, 10 * 24 * 60 * 60 * 1000)
  96. .End(GasStep.kEnd, NullFun, _delay_50ms);
  97. return Runner.Status;
  98. }
  99. public void Abort()
  100. {
  101. StopFlow();
  102. }
  103. public bool FlowMfc()
  104. {
  105. for (int index = 0; index < _mfcSetPoint.Length; index++)
  106. {
  107. if (_mfcSetPoint[index] > 0)
  108. OpenPVNVlv(index, true);
  109. _chamber.FlowGas(index, _mfcSetPoint[index]);
  110. }
  111. return true;
  112. }
  113. private void OpenPVNVlv(int mfcIndex, bool on)
  114. {
  115. if (mfcIndex < vlvs.Length)
  116. {
  117. _chamber.OpenValve(vlvs[mfcIndex], on);
  118. }
  119. }
  120. private bool CheckRange()
  121. {
  122. if (_chamber.HasGasOutOfRange)
  123. {
  124. Stop("流气率越界");
  125. _gasStatus = false;
  126. return true;
  127. }
  128. return false;
  129. }
  130. public void StopFlow()
  131. {
  132. Notify("Close valve and stop to flow MFC");
  133. _chamber.OpenValve(ValveType.GasFinal, false);
  134. _chamber.StopAllGases();
  135. for (int i = 0; i < vlvs.Length; i++)
  136. {
  137. OpenPVNVlv(i, false);
  138. }
  139. }
  140. }
  141. }