ProcessDefine.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. using System;
  2. using System.Collections.Generic;
  3. //using System.
  4. using Venus_RT.Devices;
  5. using Venus_RT.Modules;
  6. using Aitex.Core.RT.Log;
  7. using Venus_Core;
  8. using Aitex.Core.RT.SCCore;
  9. using System.Reflection;
  10. using System.Diagnostics;
  11. //#pragma warning disable 0436
  12. namespace Venus_RT.Modules.PMs
  13. {
  14. class ProcessHelper
  15. {
  16. protected JetPMBase Chamber;
  17. private string Module;
  18. public RecipeHead m_RecipeHead;
  19. private static Dictionary<string, Func<ProcessUnitBase, RecipeStep, RState>> startHelper = new Dictionary<string, Func<ProcessUnitBase, RecipeStep, RState>>();
  20. private static Dictionary<string, Func<ProcessUnitBase, RecipeStep, RState>> checkerHelper = new Dictionary<string, Func<ProcessUnitBase, RecipeStep, RState>>();
  21. private static Dictionary<string, Action<ProcessUnitBase, RecipeStep>> endHelper = new Dictionary<string, Action<ProcessUnitBase, RecipeStep>>();
  22. public ProcessHelper(JetPMBase pm)
  23. {
  24. Chamber = pm;
  25. Module = pm.Module.ToString() ;
  26. Init();
  27. }
  28. private void Init()
  29. {
  30. startHelper [$"{Module}.PressureByPressureModeUnit"] = (ProcessUnitBase unit, RecipeStep step) => PressureByPressureModeUnit_Start(unit, step);
  31. checkerHelper [$"{Module}.PressureByPressureModeUnit"] = (ProcessUnitBase unit, RecipeStep step) => PressureByPressureModeUnit_Check(unit, step);
  32. endHelper [$"{Module}.PressureByPressureModeUnit"] = (ProcessUnitBase unit, RecipeStep step) => PressureByPressureModeUnit_End(unit, step);
  33. //startHelper [$"{Module}.PressureByValveModeUnit"] = (ProcessUnitBase unit, RecipeStep step) => PressureByValveModeUnit_Start(unit, step);
  34. //checkerHelper [$"{Module}.PressureByValveModeUnit"] = (ProcessUnitBase unit, RecipeStep step) => PressureByValveModeUnit_Check(unit, step);
  35. //endHelper [$"{Module}.PressureByValveModeUnit"] = (ProcessUnitBase unit, RecipeStep step) => PressureByValveModeUnit_End(unit, step);
  36. startHelper [$"{Module}.TCPUnit"] = (ProcessUnitBase unit, RecipeStep step) => TCPUnit_Start(unit, step);
  37. checkerHelper [$"{Module}.TCPUnit"] = (ProcessUnitBase unit, RecipeStep step) => TCPUnit_Check(unit, step);
  38. endHelper [$"{Module}.TCPUnit"] = (ProcessUnitBase unit, RecipeStep step) => TCPUnit_End(unit, step);
  39. startHelper [$"{Module}.BiasUnit"] = (ProcessUnitBase unit, RecipeStep step) => BiasUnit_Start(unit, step);
  40. checkerHelper [$"{Module}.BiasUnit"] = (ProcessUnitBase unit, RecipeStep step) => BiasUnit_Check(unit, step);
  41. endHelper [$"{Module}.BiasUnit"] = (ProcessUnitBase unit, RecipeStep step) => BiasUnit_End(unit, step);
  42. startHelper [$"{Module}.GasControlUnit"] = (ProcessUnitBase unit, RecipeStep step) => GasControlUnit_Start(unit, step);
  43. checkerHelper [$"{Module}.GasControlUnit"] = (ProcessUnitBase unit, RecipeStep step) => GasControlUnit_Check(unit, step);
  44. endHelper [$"{Module}.GasControlUnit"] = (ProcessUnitBase unit, RecipeStep step) => GasControlUnit_End(unit, step);
  45. startHelper [$"{Module}.ESCHVUnit"] = (ProcessUnitBase unit, RecipeStep step) => ESCHVUnit_Start(unit, step);
  46. checkerHelper [$"{Module}.ESCHVUnit"] = (ProcessUnitBase unit, RecipeStep step) => ESCHVUnit_Check(unit, step);
  47. endHelper [$"{Module}.ESCHVUnit"] = (ProcessUnitBase unit, RecipeStep step) => ESCHVUnit_End(unit, step);
  48. startHelper [$"{Module}.ProcessKitUnit"] = (ProcessUnitBase unit, RecipeStep step) => ProcessKitUnit_Start(unit, step);
  49. checkerHelper [$"{Module}.ProcessKitUnit"] = (ProcessUnitBase unit, RecipeStep step) => ProcessKitUnit_Check(unit, step);
  50. endHelper [$"{Module}.ProcessKitUnit"] = (ProcessUnitBase unit, RecipeStep step) => ProcessKitUnit_End(unit, step);
  51. }
  52. private RState PressureByPressureModeUnit_Start(ProcessUnitBase unit, RecipeStep step)
  53. {
  54. var ProcessUnit = unit as PressureByPressureModeUnit;
  55. if (ProcessUnit.PressureUnitMode == PressureUnitMode.Pressure)
  56. {
  57. if (Chamber.SetPVPressure(ProcessUnit.StartValue))
  58. {
  59. return RState.Running;
  60. }
  61. }
  62. else if (ProcessUnit.PressureUnitMode == PressureUnitMode.Valve)
  63. {
  64. if (Chamber.SetPVPostion(ProcessUnit.StartValue))
  65. {
  66. return RState.Running;
  67. }
  68. }
  69. return RState.Failed;
  70. }
  71. private RState PressureByPressureModeUnit_Check(ProcessUnitBase unit, RecipeStep step)
  72. {
  73. var ProcessUnit = unit as PressureByPressureModeUnit;
  74. if(ProcessUnit.EnableRamp)
  75. {
  76. if (ProcessUnit.PressureUnitMode == PressureUnitMode.Pressure)
  77. {
  78. if (Chamber.SetPVPressure(ProcessUnit.StartValue+ (int)((ProcessUnit.TargetValue - ProcessUnit.StartValue) * step.RampFactor())))
  79. return RState.Running;
  80. else
  81. return RState.Failed;
  82. }
  83. else if (ProcessUnit.PressureUnitMode == PressureUnitMode.Valve)
  84. {
  85. if (Chamber.SetPVPressure(ProcessUnit.StartValue + (int)((ProcessUnit.TargetValue - ProcessUnit.StartValue) * step.RampFactor())))
  86. return RState.Running;
  87. else
  88. return RState.Failed;
  89. }
  90. }
  91. if (ProcessUnit.PressureUnitMode == PressureUnitMode.Pressure)
  92. {
  93. if (step.Type == StepType.Stable && Chamber.ChamberPressure == ProcessUnit.StartValue)
  94. {
  95. return RState.End;
  96. }
  97. }
  98. else if (ProcessUnit.PressureUnitMode == PressureUnitMode.Valve )
  99. {
  100. if (step.Type == StepType.Stable && Chamber.GetPVPosition() == ProcessUnit.StartValue)
  101. {
  102. return RState.End;
  103. }
  104. }
  105. return RState.Running;
  106. }
  107. private void PressureByPressureModeUnit_End(ProcessUnitBase unit, RecipeStep step)
  108. {
  109. }
  110. #region Valve Mode已取消,合并到压力模式
  111. //private RState PressureByValveModeUnit_Start(ProcessUnitBase unit, RecipeStep step)
  112. //{
  113. // var ProcessUnit = unit as PressureByValveModeUnit;
  114. // if (Chamber.SetPVPostion(ProcessUnit.StartPosition))
  115. // {
  116. // return RState.Running;
  117. // }
  118. // return RState.Failed;
  119. //}
  120. //private RState PressureByValveModeUnit_Check(ProcessUnitBase unit, RecipeStep step)
  121. //{
  122. // var ProcessUnit = unit as PressureByValveModeUnit;
  123. // if (ProcessUnit.EnableRamp)
  124. // {
  125. // if (Chamber.SetPVPostion(ProcessUnit.StartPosition + (int)((ProcessUnit.TargetPosition - ProcessUnit.StartPosition) * step.RampFactor())))
  126. // return RState.Running;
  127. // else
  128. // return RState.Failed;
  129. // }
  130. // return RState.Running;
  131. //}
  132. //private void PressureByValveModeUnit_End(ProcessUnitBase unit, RecipeStep step)
  133. //{
  134. //}
  135. #endregion
  136. private RState TCPUnit_Start(ProcessUnitBase unit, RecipeStep step)
  137. {
  138. var ProcessUnit = unit as TCPUnit;
  139. if (ProcessUnit.RFPower > 5)
  140. {
  141. Chamber.GeneratorSetpower(ProcessUnit.RFPower);
  142. Chamber.GeneratorPowerOn(true);
  143. }
  144. else
  145. {
  146. Chamber.GeneratorSetpower(0);
  147. Chamber.GeneratorPowerOn(false);
  148. }
  149. Chamber.SetMatchPosition(ProcessUnit.TuneCapPreset, ProcessUnit.LoadCapPreset);
  150. return RState.Running;
  151. }
  152. private RState TCPUnit_Check(ProcessUnitBase unit, RecipeStep step)
  153. {
  154. var _scPowerAlarmTime= SC.GetValue<double>($"{Chamber.Name}.Rf.PowerAlarmTime");
  155. var ProcessUnit = unit as TCPUnit;
  156. if(ProcessUnit.MaxReflectedPower > 0 && Chamber.ReflectPower > ProcessUnit.MaxReflectedPower && step.ElapsedTime() > _scPowerAlarmTime*1000)
  157. {
  158. LOG.Write(eEvent.ERR_PROCESS, Chamber.Module, $"Step:{step.StepNo} failed, RF Reflect Power:{Chamber.ReflectPower} exceeds the Max Limit:{ProcessUnit.MaxReflectedPower}");
  159. return RState.Failed;
  160. }
  161. if (step.ElapsedTime() > m_RecipeHead.RFHoldTime * 1000)
  162. {
  163. Chamber.GeneratorSetpower(0);
  164. Chamber.GeneratorPowerOn(false);
  165. }
  166. return RState.Running;
  167. }
  168. private void TCPUnit_End(ProcessUnitBase unit, RecipeStep step)
  169. {
  170. //Chamber.GeneratorSetpower(0);
  171. //Chamber.GeneratorPowerOn(false);
  172. }
  173. private RState BiasUnit_Start(ProcessUnitBase unit, RecipeStep step)
  174. {
  175. var ProcessUnit = unit as BiasUnit;
  176. if (ProcessUnit.BiasRFPower > 5)
  177. {
  178. Chamber.GeneratorBiasSetpower(ProcessUnit.BiasRFPower);
  179. Chamber.GeneratorBiasPowerOn(true);
  180. }
  181. Chamber.SetBiasMatchPosition(ProcessUnit.BiasTuneCapPreset, ProcessUnit.BiasLoadCapPreset);
  182. if(ProcessUnit.BiasGeneratorMode == GeneratorMode.Pulsing)
  183. {
  184. Chamber.SetBiasPulseMode(true);
  185. Chamber.SetBiasPulseRateFreq(ProcessUnit.PulseRateFreq);
  186. Chamber.SetDiasPulseDutyCycle(ProcessUnit.PulseDutyCycle);
  187. }
  188. return RState.Running;
  189. }
  190. private RState BiasUnit_Check(ProcessUnitBase unit, RecipeStep step)
  191. {
  192. var _scPowerAlarmTime = SC.GetValue<double>($"{Chamber.Name}.BiasRf.PowerAlarmTime");
  193. var ProcessUnit = unit as BiasUnit;
  194. if (ProcessUnit.BiasMaxReflectedPower > 0 && Chamber.BiasReflectPower > ProcessUnit.BiasMaxReflectedPower && step.ElapsedTime() > _scPowerAlarmTime * 1000)
  195. {
  196. LOG.Write(eEvent.ERR_PROCESS, Chamber.Module, $"Step:{step.StepNo} failed, Bias Reflect Power:{Chamber.BiasReflectPower} exceeds the Max Limit:{ProcessUnit.BiasMaxReflectedPower}");
  197. return RState.Failed;
  198. }
  199. if (step.ElapsedTime() > m_RecipeHead.BiasRFHoldTime * 1000)
  200. {
  201. Chamber.GeneratorBiasSetpower(0);
  202. Chamber.GeneratorBiasPowerOn(false);
  203. }
  204. return RState.Running;
  205. }
  206. private void BiasUnit_End(ProcessUnitBase unit, RecipeStep step)
  207. {
  208. Chamber.GeneratorBiasSetpower(0);
  209. Chamber.GeneratorBiasPowerOn(false);
  210. }
  211. private RState GasControlUnit_Start(ProcessUnitBase unit, RecipeStep step)
  212. {
  213. Chamber.OpenValve(ValveType.GasFinal, true);
  214. var ProcessUnit = unit as GasControlUnit;
  215. Chamber.FlowGas(0, ProcessUnit.Gas1);
  216. if (ProcessUnit.Gas1 >= 1)
  217. {
  218. Chamber.OpenValve(ValveType.PV11, true);
  219. }
  220. Chamber.FlowGas(1, ProcessUnit.Gas2);
  221. if (ProcessUnit.Gas2 >= 1)
  222. {
  223. Chamber.OpenValve(ValveType.PV21, true);
  224. }
  225. Chamber.FlowGas(2, ProcessUnit.Gas3);
  226. if (ProcessUnit.Gas3 >= 1)
  227. {
  228. Chamber.OpenValve(ValveType.PV31,true);
  229. }
  230. Chamber.FlowGas(3, ProcessUnit.Gas4);
  231. if (ProcessUnit.Gas4 >= 1)
  232. {
  233. Chamber.OpenValve(ValveType.PV41, true);
  234. }
  235. Chamber.FlowGas(4, ProcessUnit.Gas5);
  236. Chamber.FlowGas(5, ProcessUnit.Gas6);
  237. Chamber.FlowGas(6, ProcessUnit.Gas7);
  238. Chamber.FlowGas(7, ProcessUnit.Gas8);
  239. return RState.Running;
  240. }
  241. private RState GasControlUnit_Check(ProcessUnitBase unit, RecipeStep step)
  242. {
  243. var ProcessUnit = unit as GasControlUnit;
  244. if(ProcessUnit.EnableRamp)
  245. {
  246. double rampFactor = step.RampFactor();
  247. Chamber.FlowGas(0, ProcessUnit.Gas1 + (ProcessUnit.Gas1Target - ProcessUnit.Gas1) * rampFactor);
  248. Chamber.FlowGas(1, ProcessUnit.Gas2 + (ProcessUnit.Gas2Target - ProcessUnit.Gas2) * rampFactor);
  249. Chamber.FlowGas(2, ProcessUnit.Gas3 + (ProcessUnit.Gas3Target - ProcessUnit.Gas3) * rampFactor);
  250. Chamber.FlowGas(3, ProcessUnit.Gas4 + (ProcessUnit.Gas4Target - ProcessUnit.Gas4) * rampFactor);
  251. Chamber.FlowGas(4, ProcessUnit.Gas5 + (ProcessUnit.Gas5Target - ProcessUnit.Gas5) * rampFactor);
  252. Chamber.FlowGas(5, ProcessUnit.Gas6 + (ProcessUnit.Gas6Target - ProcessUnit.Gas6) * rampFactor);
  253. Chamber.FlowGas(6, ProcessUnit.Gas7 + (ProcessUnit.Gas7Target - ProcessUnit.Gas7) * rampFactor);
  254. Chamber.FlowGas(7, ProcessUnit.Gas8 + (ProcessUnit.Gas8Target - ProcessUnit.Gas8) * rampFactor);
  255. }
  256. return RState.Running;
  257. }
  258. private void GasControlUnit_End(ProcessUnitBase unit, RecipeStep step)
  259. {
  260. Chamber.FlowGas(0, 0);
  261. Chamber.FlowGas(1, 0);
  262. Chamber.FlowGas(2, 0);
  263. Chamber.FlowGas(3, 0);
  264. Chamber.FlowGas(4, 0);
  265. Chamber.FlowGas(5, 0);
  266. Chamber.FlowGas(6, 0);
  267. Chamber.FlowGas(7, 0);
  268. }
  269. private RState ESCHVUnit_Start(ProcessUnitBase unit, RecipeStep step)
  270. {
  271. var ProcessUnit = unit as ESCHVUnit;
  272. Chamber.SetESCClampVoltage(ProcessUnit.ESCClampValtage);
  273. Chamber.SetBacksideHePressure(ProcessUnit.BacksideHelum);
  274. Chamber.SetBacksideHeThreshold(ProcessUnit.MinHeFlow, ProcessUnit.MaxHeFlow);
  275. return RState.Running;
  276. }
  277. private RState ESCHVUnit_Check(ProcessUnitBase unit, RecipeStep step)
  278. {
  279. if(Chamber.BackSideHeOutOfRange)
  280. {
  281. LOG.Write(eEvent.ERR_PROCESS, Chamber.Module, $"Step:{step.StepNo} failed, Backside Helium out of range.");
  282. return RState.Failed;
  283. }
  284. return RState.Running;
  285. }
  286. private void ESCHVUnit_End(ProcessUnitBase unit, RecipeStep step)
  287. {
  288. Chamber.SetESCClampVoltage(0);
  289. //Chamber.SetBacksideHePressure(0);
  290. Chamber.SetBacksideHeThreshold(0, 0);
  291. }
  292. private RState ProcessKitUnit_Start(ProcessUnitBase unit, RecipeStep step)
  293. {
  294. var ProcessUnit = unit as ProcessKitUnit;
  295. return RState.Running;
  296. }
  297. private RState ProcessKitUnit_Check(ProcessUnitBase unit, RecipeStep step)
  298. {
  299. var ProcessUnit = unit as ProcessKitUnit;
  300. return RState.Running;
  301. }
  302. private void ProcessKitUnit_End(ProcessUnitBase unit, RecipeStep step)
  303. {
  304. }
  305. public bool LoadMethods(ProcessUnitBase unit)
  306. {
  307. var className = $"{Module}.{unit.GetType().Name}";
  308. if(startHelper.ContainsKey(className) && checkerHelper.ContainsKey(className) && endHelper.ContainsKey(className))
  309. {
  310. unit.starter = startHelper[className];
  311. unit.checker = checkerHelper[className];
  312. unit.end = endHelper[className];
  313. return true;
  314. }
  315. return false;
  316. }
  317. private RState stepStarter(RecipeStep step)
  318. {
  319. step.StartStepTimer();
  320. switch (step.Type)
  321. {
  322. case StepType.EndPoint:
  323. Chamber.EPDStepStart(step.EPDConfig, step.StepNo);
  324. break;
  325. }
  326. return RState.Running;
  327. }
  328. private RState stepChecker(RecipeStep step)
  329. {
  330. switch(step.Type)
  331. {
  332. case StepType.Time:
  333. return step.ElapsedTime() >= step.Time * 1000 ? RState.End : RState.Running;
  334. case StepType.OverEtch:
  335. return step.ElapsedTime() >= (step.GetLastEPDStepTime() * step.OverEtchPercent / 100) ? RState.End : RState.Running;
  336. case StepType.EndPoint:
  337. if (step.ElapsedTime() > step.MaxEndPointTime * 1000)
  338. {
  339. LOG.Write(eEvent.INFO_PROCESS, Chamber.Module, $"Step:{step.StepNo} timeout, did not capture endpoint signal in {step.MaxEndPointTime} seconds");
  340. return RState.End;
  341. }
  342. else
  343. return Chamber.EPDCaptured ? RState.End : RState.Running;
  344. }
  345. return RState.Running;
  346. }
  347. private RState stepEnder(RecipeStep step)
  348. {
  349. if(step.Type == StepType.EndPoint)
  350. {
  351. Chamber.EPDStepStop();
  352. }
  353. //Chamber.GeneratorBiasPowerOn(false);
  354. //Chamber.GeneratorPowerOn(false);
  355. //Chamber.TurnPendulumValve(false);
  356. //Chamber.CloseValves();
  357. //Chamber.OpenValve(ValveType.TurboPumpPumping, true);
  358. //Chamber.OpenValve(ValveType.TurboPumpPurge, true);
  359. return RState.End;
  360. }
  361. public bool LoadStepFuns(RecipeStep step)
  362. {
  363. step.starter = stepStarter;
  364. step.checker = stepChecker;
  365. step.ender = stepEnder;
  366. return true;
  367. }
  368. }
  369. }