LLEntity.cs 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888
  1. using System;
  2. using Aitex.Core.Util;
  3. using Aitex.Core.RT.Fsm;
  4. using Aitex.Core.RT.Log;
  5. using MECF.Framework.Common.Equipment;
  6. using MECF.Framework.Common.SubstrateTrackings;
  7. using Venus_RT.Modules.TM;
  8. using Venus_RT.Devices;
  9. using Venus_Core;
  10. using Aitex.Core.RT.DataCenter;
  11. using Aitex.Core.RT.OperationCenter;
  12. using Aitex.Core.RT.Device;
  13. using Aitex.Core.RT.SCCore;
  14. using Aitex.Core.RT.Event;
  15. using System.Diagnostics;
  16. using System.Linq;
  17. using System.Windows.Interop;
  18. using System.Collections.Generic;
  19. namespace Venus_RT.Modules
  20. {
  21. class LLEntity : Entity, IEntity, IModuleEntity
  22. {
  23. public enum LLStatus
  24. {
  25. Not_Ready,
  26. Ready_For_TM,
  27. Ready_For_EFEM,
  28. }
  29. public enum STATE
  30. {
  31. Unknown,
  32. Init,
  33. Initializing,
  34. Idle,
  35. Error,
  36. Pumping,
  37. Venting,
  38. Purging,
  39. Cooling,
  40. LeakCheck,
  41. Prepare_For_TM,
  42. Prepare_For_EFEM,
  43. Ready_For_TM,
  44. Ready_For_EFEM,
  45. WaitCooling,
  46. AutoCooling,
  47. }
  48. public enum MSG
  49. {
  50. Home,
  51. Online,
  52. Offline,
  53. Pump,
  54. Vent,
  55. AutoPump,
  56. AutoVent,
  57. Purge,
  58. CyclePurge,
  59. LeakCheck,
  60. Prepare_TM,
  61. Prepare_EFEM,
  62. TM_Exchange_Ready,
  63. EFEM_Exchange_Ready,
  64. Error,
  65. Abort,
  66. AutoCooling,
  67. }
  68. public ModuleName Module { get; private set; }
  69. public LLStatus Status { get; private set; }
  70. public bool Check(int msg, out string reason, params object[] args)
  71. {
  72. throw new NotImplementedException();
  73. }
  74. public bool IsIdle
  75. {
  76. get { return fsm.State == (int)STATE.Idle; }
  77. }
  78. public bool IsError
  79. {
  80. get { return fsm.State == (int)STATE.Error; }
  81. }
  82. public bool IsInit
  83. {
  84. get { return fsm.State == (int)STATE.Unknown || fsm.State == (int)STATE.Init; }
  85. }
  86. public bool IsBusy
  87. {
  88. get { return !IsInit && !IsError && !IsIdle; }
  89. }
  90. public bool IsOnline { get; internal set; }
  91. public bool IsInclude
  92. {
  93. get;
  94. private set;
  95. } = true;
  96. public bool IsVac { get { return _JetTM.IsModuleVaccum(Module); } }
  97. public bool IsATM { get { return _JetTM.IsModuleATM(Module); } }
  98. public override int TimeToReady
  99. {
  100. get
  101. {
  102. switch ((STATE)fsm.State)
  103. {
  104. case STATE.Pumping:
  105. case STATE.Venting:
  106. return base.TimeToReady;
  107. }
  108. return int.MaxValue / 2;
  109. }
  110. }
  111. private readonly JetTM _JetTM;
  112. private readonly MFPumpRoutine _pumpingRoutine;
  113. private readonly MFVentRoutine _ventingRoutine;
  114. private readonly MFLeakCheckRoutine _leakCheckRoutine;
  115. private readonly MFPurgeRoutine _purgeRoutine;
  116. private readonly MFCoolingRoutine _coolingRoutine;
  117. private readonly int _slotNumber = 4;
  118. //private bool startControlPressureFlag = true;
  119. private int _controlPressureCheckPoint = 100;
  120. private int _controlPressureSetPoint = 90;
  121. private int _controlFlowSetPoint = 90;
  122. private bool _isEnableControlPressure;
  123. private Stopwatch _coolingStopWatch=new Stopwatch();
  124. private double _coolingMFCFlow;
  125. private int _coolingTime;
  126. CoolingStatu[] _coolingStatus;
  127. //private bool _coolingFlag = false;
  128. private int _PressureAlarmUpperLimit;
  129. //private int _PressureAlarmLowerLimitDuration;
  130. private int _PressureAlarmUpperLimitCounter;
  131. private int _RealPressureAlarmUpperLimitCounter;
  132. public LLEntity(ModuleName module)
  133. {
  134. Module = module;
  135. _JetTM = DEVICE.GetDevice<JetTM>("TM");
  136. _pumpingRoutine = new MFPumpRoutine(_JetTM, Module);
  137. _ventingRoutine = new MFVentRoutine(_JetTM, Module);
  138. _leakCheckRoutine = new MFLeakCheckRoutine(_JetTM, Module);
  139. _purgeRoutine = new MFPurgeRoutine(_JetTM, Module);
  140. _coolingRoutine=new MFCoolingRoutine(_JetTM, Module);
  141. _slotNumber = SC.GetValue<int>($"{module.ToString()}.SlotNumber");
  142. WaferManager.Instance.SubscribeLocation(Module, _slotNumber);
  143. InitFsmMap();
  144. _coolingStatus=new CoolingStatu[_slotNumber];
  145. for (int i = 0; i < _slotNumber; i++)
  146. {
  147. _coolingStatus[i] = CoolingStatu.Init;
  148. }
  149. GetCoolingInfo();
  150. _PressureAlarmUpperLimit = SC.GetValue<int>($"{Module}.PressureAlarmUpperLimit");
  151. int _PressureAlarmLowerLimitDuration = SC.GetValue<int>($"{Module}.PressureAlarmUpperLimitDuration")*1000;
  152. _PressureAlarmUpperLimitCounter = _PressureAlarmLowerLimitDuration / 50;
  153. }
  154. private void GetCoolingInfo()
  155. {
  156. if (RtInstance.ConfigType == ConfigType.Kepler2200)
  157. {
  158. _coolingMFCFlow = SC.GetValue<double>($"{Module.ToString()}.Cooling.MFCFlow");
  159. _coolingTime = SC.GetValue<int>($"{Module.ToString()}.Cooling.CoolingTime");
  160. }
  161. }
  162. protected override bool Init()
  163. {
  164. OP.Subscribe($"{Module}.Home", (cmd, args) => CheckToPostMessage((int)MSG.Home));
  165. OP.Subscribe($"{Module}.{RtOperation.Pump}", (cmd, args) => CheckToPostMessage((int)MSG.Pump));
  166. OP.Subscribe($"{Module}.{RtOperation.Vent}", (cmd, args) => CheckToPostMessage((int)MSG.Vent));
  167. OP.Subscribe($"{Module}.{RtOperation.Purge}", (cmd, args) => CheckToPostMessage((int)MSG.Purge));
  168. OP.Subscribe($"{Module}.{RtOperation.Abort}", (cmd, args) => CheckToPostMessage((int)MSG.Abort));
  169. OP.Subscribe($"{Module}.{RtOperation.LeakCheck}", (cmd, args) => CheckToPostMessage((int)MSG.LeakCheck));
  170. OP.Subscribe($"{Module}.{RtOperation.Online}", (cmd, args) => CheckToPostMessage((int)MSG.Online));
  171. OP.Subscribe($"{Module}.{RtOperation.Offline}", (cmd, args) => CheckToPostMessage((int)MSG.Offline));
  172. OP.Subscribe($"{Module}.{RtOperation.Include}", (cmd, args) => FnSetInclude());
  173. OP.Subscribe($"{Module}.{RtOperation.Exclude}", (cmd, args) => FnSetExclude());
  174. OP.Subscribe($"{Module}.{RtOperation.ControlPressure}", (cmd, args) => StartControlPressure());
  175. OP.Subscribe($"{Module}.{RtOperation.AbortControlPressure}", (cmd, args) => StopControlPressure());
  176. DATA.Subscribe($"{Module}.FsmState", () => (((STATE)fsm.State).ToString()), SubscriptionAttribute.FLAG.IgnoreSaveDB);
  177. DATA.Subscribe($"{Module}.FsmPrevState", () => (((PMState)fsm.PrevState).ToString()), SubscriptionAttribute.FLAG.IgnoreSaveDB);
  178. DATA.Subscribe($"{Module}.FsmLastMessage", () => (((MSG)fsm.LastMsg).ToString()), SubscriptionAttribute.FLAG.IgnoreSaveDB);
  179. DATA.Subscribe($"{Module}.IsOnline", () => IsOnline, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  180. DATA.Subscribe($"{Module}.IsInclude", () => IsInclude, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  181. DATA.Subscribe($"{Module}.IsBusy", () => IsBusy, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  182. DATA.Subscribe($"{Module}.IsEnableControlPressure", () => _isEnableControlPressure, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  183. DATA.Subscribe($"{Module}.CoolingTime", () => _coolingStopWatch.ElapsedMilliseconds/1000, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  184. return true;
  185. }
  186. private void InitFsmMap()
  187. {
  188. fsm = new StateMachine<LLEntity>(Module.ToString(), (int)STATE.Init, 50);
  189. fsm.EnableRepeatedMsg(true);
  190. EnterExitTransition<STATE, FSM_MSG>(STATE.Ready_For_TM, fnEnterTMReady, FSM_MSG.NONE, fnExitTMReady);
  191. EnterExitTransition<STATE, FSM_MSG>(STATE.Ready_For_EFEM, fnEnterEFEMReady, FSM_MSG.NONE, fnExitEFEMReady);
  192. AnyStateTransition(FSM_MSG.TIMER, fnMonitorPressure, FSM_STATE.SAME);
  193. AnyStateTransition(MSG.Error, fnError, STATE.Error);
  194. AnyStateTransition(MSG.Online, fnOnline, FSM_STATE.SAME);
  195. AnyStateTransition(MSG.Offline, fnOffline, FSM_STATE.SAME);
  196. AnyStateTransition(MSG.Home, fnHome, STATE.Initializing);
  197. // Home
  198. Transition(STATE.Initializing, FSM_MSG.TIMER, fnHoming, STATE.Idle);
  199. Transition(STATE.Idle, FSM_MSG.TIMER, fnMonitor, STATE.Idle);
  200. Transition(STATE.Init, FSM_MSG.TIMER, fnMonitor, STATE.Init);
  201. //vent sequence
  202. Transition(STATE.Idle, MSG.Vent, FnStartVent, STATE.Venting);
  203. Transition(STATE.Venting, FSM_MSG.TIMER, FnVentTimeout, STATE.Idle);
  204. Transition(STATE.Venting, MSG.Abort, FnAbortVent, STATE.Idle);
  205. Transition(STATE.Idle, MSG.AutoCooling, FnStartCooling, STATE.Cooling);
  206. Transition(STATE.Cooling, FSM_MSG.TIMER, FnCoolingTimeout, STATE.Idle);
  207. Transition(STATE.Cooling, MSG.Abort, FnAbortCooling, STATE.Idle);
  208. //Pump sequence
  209. Transition(STATE.Idle, MSG.Pump, FnStartPump, STATE.Pumping);
  210. Transition(STATE.Pumping, FSM_MSG.TIMER, FnPumpTimeout, STATE.Idle);
  211. Transition(STATE.Pumping, MSG.Abort, FnAbortPump, STATE.Idle);
  212. // Purge sequence
  213. Transition(STATE.Idle, MSG.Purge, FnStartPurge, STATE.Purging);
  214. Transition(STATE.Purging, FSM_MSG.TIMER, FnPurgeTimeout, STATE.Idle);
  215. Transition(STATE.Purging, MSG.Abort, FnAbortPurge, STATE.Idle);
  216. // Leak check sequence
  217. Transition(STATE.Idle, MSG.LeakCheck, FnStartLeakCheck, STATE.LeakCheck);
  218. Transition(STATE.LeakCheck, FSM_MSG.TIMER, FnLeakCheckTimeout, STATE.Idle);
  219. Transition(STATE.LeakCheck, MSG.Abort, FnAbortLeakCheck, STATE.Idle);
  220. // Prepare TM Transfer
  221. Transition(STATE.Idle, MSG.Prepare_TM, FnStartPrepareTM, STATE.Prepare_For_TM);
  222. Transition(STATE.Prepare_For_TM, FSM_MSG.TIMER, FnPreparaTMTimeout, STATE.Ready_For_TM);
  223. Transition(STATE.Prepare_For_TM, MSG.Prepare_TM, null, STATE.Prepare_For_TM);
  224. Transition(STATE.Prepare_For_TM, MSG.Abort, FnAbortPreparaTM, STATE.Idle);
  225. Transition(STATE.Ready_For_TM, MSG.TM_Exchange_Ready, FnTMExchange, STATE.Idle);
  226. Transition(STATE.Ready_For_TM, MSG.Prepare_TM, null, STATE.Ready_For_TM);
  227. Transition(STATE.Ready_For_TM, MSG.Abort, null, STATE.Idle);
  228. Transition(STATE.Idle, MSG.AutoVent, FnTryAutoVent, STATE.Venting);
  229. Transition(STATE.Ready_For_TM, MSG.AutoVent, FnTryAutoVent, STATE.Venting);
  230. // Prepare EFEM Transfer
  231. Transition(STATE.Idle, MSG.Prepare_EFEM, FnStartPrepareEFEM, STATE.Prepare_For_EFEM);
  232. Transition(STATE.Prepare_For_EFEM, FSM_MSG.TIMER, FnPrepareEFEMTimeout, STATE.Ready_For_EFEM);
  233. Transition(STATE.Prepare_For_EFEM, MSG.Abort, FnAbortPrepareEFEM, STATE.Idle);
  234. Transition(STATE.Ready_For_EFEM, MSG.EFEM_Exchange_Ready, null, STATE.Idle);
  235. Transition(STATE.Ready_For_EFEM, MSG.Prepare_EFEM, null, STATE.Ready_For_EFEM);
  236. Transition(STATE.Ready_For_EFEM, MSG.Abort, null, STATE.Idle);
  237. Transition(STATE.Ready_For_EFEM, MSG.AutoPump, FnTryAutoPump, STATE.Pumping);
  238. Running = true;
  239. }
  240. public int Invoke(string function, params object[] args)
  241. {
  242. switch (function)
  243. {
  244. case "Home":
  245. case "Vent":
  246. case "Pump":
  247. case "AutoCooling":
  248. if (Enum.TryParse(function, out MSG message))
  249. {
  250. if (CheckToPostMessage((int)message))
  251. return (int)message;
  252. }
  253. break;
  254. }
  255. return (int)FSM_MSG.NONE;
  256. }
  257. public bool CheckAcked(int msg)
  258. {
  259. return fsm.CheckExecuted(msg);
  260. }
  261. public bool CheckToPostMessage(int msg, params object[] args)
  262. {
  263. if (!fsm.FindTransition(fsm.State, msg))
  264. {
  265. LOG.Write(eEvent.WARN_FSM_WARN, Module, $"{Module} is in {(STATE)fsm.State} state,can not do {(MSG)msg}");
  266. return false;
  267. }
  268. Running = true;
  269. fsm.PostMsg(msg, args);
  270. return true;
  271. }
  272. public (int processed, int unprocessed) GetWaferProcessStatus()
  273. {
  274. int processedCount = 0;
  275. int unprocessCount = 0;
  276. for (int i = 0; i < _slotNumber; i++)
  277. {
  278. var wafer = WaferManager.Instance.GetWafer(Module, i);
  279. if (!wafer.IsEmpty)
  280. {
  281. if (wafer.ProcessState == Aitex.Core.Common.EnumWaferProcessStatus.Completed)
  282. {
  283. processedCount++;
  284. }
  285. else
  286. {
  287. unprocessCount++;
  288. }
  289. }
  290. }
  291. return (processedCount, unprocessCount);
  292. }
  293. private bool fnEnterTMReady(object[] param)
  294. {
  295. if (RouteManager.IsATMMode)
  296. {
  297. Status = LLStatus.Ready_For_TM;
  298. return true;
  299. }
  300. StartControlPressure();
  301. Status = LLStatus.Ready_For_TM;
  302. return true;
  303. }
  304. private bool fnExitTMReady(object[] param)
  305. {
  306. if (RouteManager.IsATMMode)
  307. {
  308. Status = LLStatus.Not_Ready;
  309. return true;
  310. }
  311. StopControlPressure();
  312. Status = LLStatus.Not_Ready;
  313. return true;
  314. }
  315. private bool fnEnterEFEMReady(object[] param)
  316. {
  317. Status = LLStatus.Ready_For_EFEM;
  318. return true;
  319. }
  320. private bool fnExitEFEMReady(object[] param)
  321. {
  322. Status = LLStatus.Not_Ready;
  323. return true;
  324. }
  325. private bool fnMonitor(object[] param)
  326. {
  327. _debugRoutine();
  328. return true;
  329. }
  330. private bool fnMonitorPressure(object[] param)
  331. {
  332. double pressure;
  333. if (Module == ModuleName.LLA)
  334. {
  335. pressure = _JetTM==null?0:_JetTM.LLAPressure;
  336. }
  337. else if (Module == ModuleName.LLB)
  338. {
  339. pressure = _JetTM == null ? 0 : _JetTM.LLBPressure;
  340. }
  341. else
  342. {
  343. return true;
  344. }
  345. if (pressure > _PressureAlarmUpperLimit)
  346. {
  347. _RealPressureAlarmUpperLimitCounter += 1;
  348. if (_RealPressureAlarmUpperLimitCounter > _PressureAlarmUpperLimitCounter)
  349. {
  350. PostMsg(MSG.Error);
  351. }
  352. }
  353. else
  354. {
  355. _RealPressureAlarmUpperLimitCounter = 0;
  356. }
  357. return true;
  358. }
  359. private bool fnError(object[] param)
  360. {
  361. IsOnline = false;
  362. return true;
  363. }
  364. private bool fnOnline(object[] param)
  365. {
  366. if (!IsInclude)
  367. {
  368. LOG.Write(eEvent.WARN_LL, Module, $"{Module} is excluded,can not be put online");
  369. return false;
  370. }
  371. IsOnline = true;
  372. return true;
  373. }
  374. private bool fnOffline(object[] param)
  375. {
  376. IsOnline = false;
  377. return true;
  378. }
  379. private bool FnSetInclude()
  380. {
  381. if (IsOnline == true)
  382. {
  383. LOG.Write(eEvent.WARN_LL, Module, $"{Module} is online,can not set Include");
  384. return false;
  385. }
  386. IsInclude = true;
  387. LOG.Write(eEvent.INFO_LL, Module, $"{Module} Set Include Success");
  388. return true;
  389. }
  390. private bool FnSetExclude()
  391. {
  392. if (IsOnline == true)
  393. {
  394. LOG.Write(eEvent.WARN_LL, Module, $"{Module} is online,can not set Exclude");
  395. return false;
  396. }
  397. IsInclude = false;
  398. LOG.Write(eEvent.INFO_LL, Module, $"{Module} Set Exclude Success");
  399. return true;
  400. }
  401. private bool fnAbort(object[] param)
  402. {
  403. return true;
  404. }
  405. private bool fnHome(object[] param)
  406. {
  407. //IsOnline = true;
  408. _RealPressureAlarmUpperLimitCounter = 0;
  409. return true;
  410. }
  411. private bool fnHoming(object[] param)
  412. {
  413. return true;
  414. }
  415. private bool FnStartVent(object[] param)
  416. {
  417. //_PressureAlarmUpperLimit = SC.GetValue<int>($"{Module}.PressureAlarmUpperLimit");
  418. // int _PressureAlarmLowerLimitDuration = SC.GetValue<int>($"{Module}.PressureAlarmUpperLimitDuration") * 1000;
  419. //_PressureAlarmUpperLimitCounter = _PressureAlarmLowerLimitDuration / 50;
  420. return _ventingRoutine.Start(false) == RState.Running;
  421. }
  422. private bool FnTryAutoVent(object[] param)
  423. {
  424. if (RouteManager.IsATMMode)
  425. {
  426. PostMsg(MSG.TM_Exchange_Ready, false);
  427. return false;
  428. }
  429. _coolingMFCFlow = SC.GetValue<double>($"{Module.ToString()}.Cooling.MFCFlow");
  430. _coolingTime = SC.GetValue<int>($"{Module.ToString()}.Cooling.CoolingTime");
  431. return _ventingRoutine.Start(false) == RState.Running;
  432. }
  433. private bool FnVentTimeout(object[] param)
  434. {
  435. RState ret = _ventingRoutine.Monitor();
  436. if (ret == RState.Failed || ret == RState.Timeout)
  437. {
  438. PostMsg(MSG.Error);
  439. return false;
  440. }
  441. if(ret == RState.End)
  442. {
  443. MarkStateTime();
  444. return true;
  445. }
  446. return false;
  447. }
  448. private bool FnAbortVent(object[] param)
  449. {
  450. _ventingRoutine.Abort();
  451. return true;
  452. }
  453. private bool FnStartPump(object[] param)
  454. {
  455. return _pumpingRoutine.Start() == RState.Running;
  456. }
  457. private bool FnPumpTimeout(object[] param)
  458. {
  459. RState ret = _pumpingRoutine.Monitor();
  460. if (ret == RState.Failed || ret == RState.Timeout)
  461. {
  462. PostMsg(MSG.Error);
  463. return false;
  464. }
  465. if (ret == RState.End)
  466. {
  467. MarkStateTime();
  468. return true;
  469. }
  470. return false;
  471. }
  472. private bool FnAbortPump(object[] param)
  473. {
  474. _pumpingRoutine.Abort();
  475. return true;
  476. }
  477. private bool FnTryAutoPump(object[] param)
  478. {
  479. if (_JetTM.LLPumpStatus != JetTM.LLPumpState.Idle || RouteManager.IsATMMode)
  480. {
  481. PostMsg(MSG.EFEM_Exchange_Ready);
  482. return false;
  483. }
  484. return _pumpingRoutine.Start() == RState.Running;
  485. }
  486. private bool FnStartPurge(object[] param)
  487. {
  488. return _purgeRoutine.Start() == RState.Running;
  489. }
  490. private bool FnPurgeTimeout(object[] param)
  491. {
  492. RState ret = _purgeRoutine.Monitor();
  493. if (ret == RState.Failed || ret == RState.Timeout)
  494. {
  495. PostMsg(MSG.Error);
  496. return false;
  497. }
  498. return ret == RState.End;
  499. }
  500. private bool FnAbortPurge(object[] param)
  501. {
  502. _purgeRoutine.Abort();
  503. return true;
  504. }
  505. private bool FnStartLeakCheck(object[] param)
  506. {
  507. return _leakCheckRoutine.Start() == RState.Running;
  508. }
  509. private bool FnLeakCheckTimeout(object[] param)
  510. {
  511. RState ret = _leakCheckRoutine.Monitor();
  512. if (ret == RState.Failed || ret == RState.Timeout)
  513. {
  514. PostMsg(MSG.Error);
  515. return false;
  516. }
  517. return ret == RState.End;
  518. }
  519. private bool FnAbortLeakCheck(object[] param)
  520. {
  521. _leakCheckRoutine.Abort();
  522. return true;
  523. }
  524. private bool FnStartPrepareTM(object[] param)
  525. {
  526. if (RouteManager.IsATMMode)
  527. return true;
  528. return _pumpingRoutine.Start() == RState.Running;
  529. }
  530. private bool FnPreparaTMTimeout(object[] param)
  531. {
  532. if (RouteManager.IsATMMode)
  533. {
  534. if (fsm.ElapsedTime > 10000)
  535. {
  536. LOG.Write(eEvent.ERR_TM, Module, $"Cannot transfer wafer as {Module} is not ATM.");
  537. PostMsg(MSG.Error);
  538. return true;
  539. }
  540. return _JetTM.IsModuleATM(Module);
  541. }
  542. RState ret = _pumpingRoutine.Monitor();
  543. if (ret == RState.Failed || ret == RState.Timeout)
  544. {
  545. PostMsg(MSG.Error);
  546. return false;
  547. }
  548. return ret == RState.End;
  549. }
  550. private bool FnAbortPreparaTM(object[] param)
  551. {
  552. _pumpingRoutine.Abort();
  553. return true;
  554. }
  555. private bool FnStartPrepareEFEM(object[] param)
  556. {
  557. if (RouteManager.IsATMMode)
  558. return true;
  559. return _ventingRoutine.Start(false) == RState.Running;
  560. }
  561. private bool FnPrepareEFEMTimeout(object[] param)
  562. {
  563. if (RouteManager.IsATMMode)
  564. {
  565. //if (fsm.ElapsedTime > 10000)
  566. //{
  567. //}
  568. //LOG.Write(eEvent.ERR_TM, Module, $"Cannot transfer wafer as {Module} is not ATM.");
  569. //PostMsg(MSG.Error);
  570. return _JetTM.IsModuleATM(Module);
  571. }
  572. RState ret = _ventingRoutine.Monitor();
  573. if (ret == RState.Failed || ret == RState.Timeout)
  574. {
  575. PostMsg(MSG.Error);
  576. return false;
  577. }
  578. return ret == RState.End;
  579. //if (ret == RState.End && _coolingFlag)
  580. //{
  581. // //if (_coolingStatus.Any(x => x == CoolingStatu.WaitCooling) && Singleton<RouteManager>.Instance.IsAutoRunning)
  582. // //{
  583. // // PostMsg(MSG.AutoCooling);
  584. // //}
  585. // return true;
  586. //}
  587. //else if (_coolingFlag == false)
  588. //{
  589. // return true;
  590. //}
  591. //else
  592. //{
  593. // return false;
  594. //}
  595. }
  596. private bool FnAbortPrepareEFEM(object[] param)
  597. {
  598. _ventingRoutine.Abort();
  599. return true;
  600. }
  601. private bool StartControlPressure()
  602. {
  603. _isEnableControlPressure = true;
  604. _controlPressureCheckPoint = SC.GetValue<int>($"{Module}.ControlPressureCheckPoint");
  605. _controlPressureSetPoint = SC.GetValue<int>($"{Module}.ControlPressureSetPoint");
  606. _controlFlowSetPoint = SC.GetValue<int>($"{Module}.{Module}_MFC1.DefaultSetPoint");
  607. _JetTM.TurnFastPumpValve(Module, true);
  608. //_JetTM.TurnSoftPumpValve(Module, true);
  609. _JetTM.TurnPurgeValve(Module, true);
  610. _JetTM.TurnN2Valve(true);
  611. if (Module == ModuleName.LLA)
  612. {
  613. _JetTM.SwitchLLAPressureMode(true);
  614. _JetTM.SetLLAPressure((int)_controlPressureSetPoint);
  615. }
  616. else if (Module == ModuleName.LLB)
  617. {
  618. _JetTM.SwitchLLBPressureMode(true);
  619. _JetTM.SetLLBPressure((int)_controlPressureSetPoint);
  620. }
  621. return true;
  622. }
  623. private bool StopControlPressure()
  624. {
  625. _isEnableControlPressure = false;
  626. _JetTM.TurnFastPumpValve(Module, false);
  627. _JetTM.TurnSoftPumpValve(Module, false);
  628. _JetTM.TurnPurgeValve(Module, false);
  629. if (Module == ModuleName.LLA)
  630. {
  631. _JetTM.SwitchLLAPressureMode(false);
  632. _JetTM.SetLLAPressure(0);
  633. }
  634. else if (Module == ModuleName.LLB)
  635. {
  636. _JetTM.SwitchLLBPressureMode(false);
  637. _JetTM.SetLLBPressure(0);
  638. }
  639. return true;
  640. }
  641. private bool FnStartCooling(object[] param)
  642. {
  643. _coolingStopWatch.Restart();
  644. _coolingTime = SC.GetValue<int>($"{Module}.Cooling.CoolingTime") * 1000;
  645. return _ventingRoutine.Start(true) == RState.Running;
  646. }
  647. private bool FnCoolingTimeout(object[] param)
  648. {
  649. RState ret = _ventingRoutine.Monitor();
  650. if (ret == RState.Failed || ret == RState.Timeout)
  651. {
  652. PostMsg(MSG.Error);
  653. _coolingStopWatch.Reset();
  654. return false;
  655. }
  656. if(_coolingStopWatch.ElapsedMilliseconds > _coolingTime && _JetTM.IsModuleATM(Module))
  657. {
  658. MarkStateTime();
  659. _ventingRoutine.Abort();
  660. _coolingStopWatch.Reset();
  661. return true;
  662. }
  663. if (ret == RState.End)
  664. {
  665. _coolingStopWatch.Reset();
  666. return true;
  667. }
  668. else
  669. {
  670. return false;
  671. }
  672. }
  673. private bool FnAbortCooling(object[] param)
  674. {
  675. _ventingRoutine.Abort();
  676. return true;
  677. }
  678. private bool FnTMExchange(object[] param)
  679. {
  680. return true;
  681. }
  682. //private bool FnEFEMExchange(object[] param)
  683. //{
  684. // int slot = (int)param[0];
  685. // _coolingStatus[slot] = CoolingStatu.Init;
  686. // return true;
  687. //}
  688. private void _debugRoutine()
  689. {
  690. int flag = 0;
  691. // Test Home routine
  692. if (flag == 1)
  693. {
  694. PostMsg(MSG.Home);
  695. }
  696. else if (flag == 2)
  697. {
  698. PostMsg(MSG.Vent);
  699. }
  700. else if (flag == 3)
  701. {
  702. PostMsg(MSG.Pump);
  703. }
  704. //else if (flag == 4)
  705. //{
  706. // PostMsg(MSG.PumpLoadLock);
  707. //}
  708. //else if (flag == 5)
  709. //{
  710. // PostMsg(MSG.VentLoadLock);
  711. //}
  712. //else if (flag == 6)
  713. //{
  714. // PostMsg(MSG.PurgeLoadLock);
  715. //}
  716. //else if (flag == 7)
  717. //{
  718. // PostMsg(MSG.LaunchPump);
  719. //}
  720. //else if (flag == 8)
  721. //{
  722. // PostMsg(MSG.LaunchTurboPump);
  723. //}
  724. //else if (flag == 9)
  725. //{
  726. // PostMsg(MSG.LoadLockLeakCheck);
  727. //}
  728. else if (flag == 10)
  729. {
  730. PostMsg(MSG.CyclePurge);
  731. }
  732. //else if (flag == 11)
  733. //{
  734. // PostMsg(MSG.GasLinePurge);
  735. //}
  736. //else if (flag == 12)
  737. //{
  738. // PostMsg(MSG.LeakCheck);
  739. //}
  740. //else if (flag == 13)
  741. //{
  742. // PostMsg(MSG.GasLeakCheck);
  743. //}
  744. //else if (flag == 14)
  745. //{
  746. // PostMsg(MSG.LLPlace);
  747. //}
  748. //else if (flag == 15)
  749. //{
  750. // PostMsg(MSG.LLPick);
  751. //}
  752. //else if (flag == 16)
  753. //{
  754. // PostMsg(MSG.RunRecipe, "7777");
  755. //}
  756. //else if (flag == 17)
  757. //{
  758. // PostMsg(MSG.MFCVerification, "MFC2", (double)50, 10);
  759. //}
  760. }
  761. }
  762. }