SRDUnloaderRoutine.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. using Aitex.Core.Common;
  2. using Aitex.Core.RT.Device;
  3. using Aitex.Core.RT.Log;
  4. using Aitex.Core.RT.Routine;
  5. using Aitex.Core.RT.SCCore;
  6. using CyberX8_Core;
  7. using CyberX8_RT.Devices.AXIS;
  8. using CyberX8_RT.Devices.Facilities;
  9. using CyberX8_RT.Devices.SRD;
  10. using MECF.Framework.Common.Equipment;
  11. using MECF.Framework.Common.RecipeCenter;
  12. using MECF.Framework.Common.Routine;
  13. using MECF.Framework.Common.SubstrateTrackings;
  14. using System;
  15. using System.Windows.Input;
  16. namespace CyberX8_RT.Modules.SRD
  17. {
  18. public class SRDUnloaderRoutine : RoutineBase, IRoutine
  19. {
  20. private enum SRDUnloaderStep
  21. {
  22. Unloader_FlippersOut,
  23. Unloader_ChuckVacuumOff,
  24. Unloader_ChuckATMOn,
  25. Unloader_CheckVacuum,
  26. Unloader_LiftUpOn,
  27. Unloader_CheckWaferPresent,
  28. Unloader_OpenDoor,
  29. End
  30. }
  31. #region 常量
  32. private const int RETRY_TIMES = 3;
  33. #endregion
  34. #region 内部变量
  35. /// <summary>
  36. /// Rotation Axis
  37. /// </summary>
  38. private JetAxisBase _rotationAxis;
  39. /// <summary>
  40. /// SRD Common
  41. /// </summary>
  42. private SrdCommonDevice _srdCommon;
  43. /// <summary>
  44. /// Total SRD
  45. /// </summary>
  46. private TotalSRDDevice _totalSRDDevice;
  47. /// <summary>
  48. /// System Facility
  49. /// </summary>
  50. private SystemFacilities _systemFacilities;
  51. /// <summary>
  52. /// 当前WaferSize
  53. /// </summary>
  54. private int _waferSize = 200;
  55. /// <summary>
  56. /// 当前Retry次数
  57. /// </summary>
  58. private int _currentRetryTimes = 0;
  59. /// <summary>
  60. /// 真空值
  61. /// </summary>
  62. private int _vacuumOffLimit = 0;
  63. /// <summary>
  64. /// Process Error状态
  65. /// </summary>
  66. private bool _isProcessError = false;
  67. #endregion
  68. #region 属性
  69. #endregion
  70. /// <summary>
  71. /// 构造函数
  72. /// </summary>
  73. /// <param name="module"></param>
  74. public SRDUnloaderRoutine(string module) : base(module)
  75. {
  76. }
  77. /// <summary>
  78. /// 中止
  79. /// </summary>
  80. public void Abort()
  81. {
  82. Runner.Stop("SRD Loader Abort");
  83. }
  84. /// <summary>
  85. /// 监控
  86. /// </summary>
  87. /// <returns></returns>
  88. public RState Monitor()
  89. {
  90. Runner.RunIf(SRDUnloaderStep.Unloader_FlippersOut, _isProcessError, FlippersOut, CheckFlippersOutEndStatus, CheckFlippersOutStopStatus)
  91. .Run(SRDUnloaderStep.Unloader_ChuckVacuumOff, ChuckVacuumOff, CheckChuckVacuumOffEndStatus, CheckChuckVacuumOffStopStatus)
  92. .Run(SRDUnloaderStep.Unloader_ChuckATMOn, ChuckATMOn, CheckChuckATMEndStatus, CheckChuckATMStopStatus)
  93. .WaitWithStopCondition(SRDUnloaderStep.Unloader_CheckVacuum, CheckVacuumEndStatus, CheckVacuumStopStatus)
  94. .Run(SRDUnloaderStep.Unloader_LiftUpOn, LiftUpOn, CheckLiftUpOnEndStatus, CheckLiftUpOnStopStatus)
  95. .Run(SRDUnloaderStep.Unloader_CheckWaferPresent, CheckWaferPresent, _delay_1ms)
  96. .Run(SRDUnloaderStep.Unloader_OpenDoor, OpenDoor, CheckDoorOpenedEndStatus, CheckDoorOpenedStopStatus)
  97. .End(SRDUnloaderStep.End, NullFun, _delay_1ms);
  98. return Runner.Status;
  99. }
  100. /// <summary>
  101. /// 启动
  102. /// </summary>
  103. /// <param name="objs"></param>
  104. /// <returns></returns>
  105. public RState Start(params object[] objs)
  106. {
  107. _srdCommon = DEVICE.GetDevice<SrdCommonDevice>($"{Module}.Common");
  108. _totalSRDDevice = DEVICE.GetDevice<TotalSRDDevice>("SRD");
  109. _rotationAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Rotation");
  110. _systemFacilities = DEVICE.GetDevice<SystemFacilities>("System.Facilities");
  111. _vacuumOffLimit = SC.GetValue<int>("SRD.ChuckVacuumOffLimit");
  112. if (objs.Length >= 1)
  113. {
  114. _isProcessError = (bool)objs[0];
  115. }
  116. if (!_isProcessError && !CheckPreCondition())
  117. {
  118. return RState.Failed;
  119. }
  120. if (!GetWaferSize())
  121. {
  122. NotifyError(eEvent.ERR_SRD, "Wafer Size is invalid", 0);
  123. return RState.Failed;
  124. }
  125. return Runner.Start(Module, "SRD Unloader Start");
  126. }
  127. /// <summary>
  128. /// Check Pre Condition
  129. /// </summary>
  130. /// <returns></returns>
  131. private bool CheckPreCondition()
  132. {
  133. //Check Rotation Home
  134. if (!_rotationAxis.IsHomed)
  135. {
  136. NotifyError(eEvent.ERR_SRD, "Rotation is not homed", 0);
  137. return false;
  138. }
  139. //Check LiftUp
  140. if (_srdCommon.CommonData.LiftUp)
  141. {
  142. NotifyError(eEvent.ERR_SRD, "LiftUp is on", 0);
  143. return false;
  144. }
  145. //Check LiftUp Status
  146. if (_srdCommon.CommonData.LiftUpStatus)
  147. {
  148. NotifyError(eEvent.ERR_SRD, "LiftUp sensor is on", 0);
  149. return false;
  150. }
  151. //Check Wafer Present
  152. if (!_srdCommon.CommonData.WaferPresent)
  153. {
  154. NotifyError(eEvent.ERR_SRD, "WaferPresent sensor is off", 0);
  155. return false;
  156. }
  157. //Check LoaderDI
  158. if (!_systemFacilities.LoaderDiEnable)
  159. {
  160. NotifyError(eEvent.ERR_SRD, "Load DI Is Disable", 0);
  161. return false;
  162. }
  163. //Check Vacuum
  164. int vacuumOnLimit = SC.GetValue<int>("SRD.ChuckVacuumOnLimit");
  165. if (!_srdCommon.CommonData.ChuckVacuum)
  166. {
  167. if(_srdCommon.CommonData.VacuumValue >= vacuumOnLimit)
  168. {
  169. LOG.WriteLog(eEvent.ERR_SRD, Module, $"VacuumValue:{_srdCommon.CommonData.VacuumValue}, VacuumOn Limit:{vacuumOnLimit}");
  170. return false;
  171. }
  172. }
  173. else
  174. {
  175. LOG.WriteLog(eEvent.ERR_SRD, Module, $"Chuck Vacuum is off");
  176. return false;
  177. }
  178. //Check Flippers
  179. if (_srdCommon.CommonData.FlippersIn150 || _srdCommon.CommonData.FlippersIn200) //|| _srdCommon.CommonData.FlippersIn100
  180. {
  181. NotifyError(eEvent.ERR_SRD, "FlippersIn is on", 0);
  182. return false;
  183. }
  184. if (!_srdCommon.CommonData.Flipper1Out150Status || !_srdCommon.CommonData.Flipper2Out150Status || !_srdCommon.CommonData.Flipper3Out150Status
  185. || !_srdCommon.CommonData.Flipper1Out200Status || !_srdCommon.CommonData.Flipper2Out200Status || !_srdCommon.CommonData.Flipper3Out200Status)
  186. //|| !_srdCommon.CommonData.Flipper1Out100Status || !_srdCommon.CommonData.Flipper2Out100Status || !_srdCommon.CommonData.Flipper3Out100Status
  187. {
  188. NotifyError(eEvent.ERR_SRD, "Flippers are at In position", 0);
  189. return false;
  190. }
  191. return true;
  192. }
  193. /// <summary>
  194. /// ChuckATMOn
  195. /// </summary>
  196. /// <returns></returns>
  197. private bool ChuckATMOn()
  198. {
  199. bool result = _srdCommon.ChuckATMAction("", null);
  200. if (!result)
  201. {
  202. NotifyError(eEvent.ERR_SRD, "Chuck ATM Action is failed", 0);
  203. return result;
  204. }
  205. return true;
  206. }
  207. /// <summary>
  208. /// Chuck ATM On End
  209. /// </summary>
  210. /// <returns></returns>
  211. private bool CheckChuckATMEndStatus()
  212. {
  213. return _srdCommon.Status == RState.End && !_srdCommon.CommonData.ChuckATMOn;
  214. }
  215. /// <summary>
  216. /// Chuck ATM On Stop
  217. /// </summary>
  218. /// <returns></returns>
  219. private bool CheckChuckATMStopStatus()
  220. {
  221. if (_srdCommon.Status == RState.Failed || _srdCommon.Status == RState.Timeout)
  222. {
  223. NotifyError(eEvent.ERR_SRD, "Check ChuckATM is failed", 0);
  224. return true;
  225. }
  226. return false;
  227. }
  228. /// <summary>
  229. /// Check Vacuum End
  230. /// </summary>
  231. /// <returns></returns>
  232. private bool CheckVacuumEndStatus()
  233. {
  234. if(_srdCommon.Status == RState.End && CheckVacuumValue())
  235. {
  236. return true;
  237. }
  238. return false;
  239. }
  240. /// <summary>
  241. /// Check Vacuum Stop
  242. /// </summary>
  243. /// <returns></returns>
  244. private bool CheckVacuumStopStatus()
  245. {
  246. if (_srdCommon.Status == RState.Failed || _srdCommon.Status == RState.Timeout)
  247. {
  248. NotifyError(eEvent.ERR_SRD, "Check ChuckATM is failed", 0);
  249. return true;
  250. }
  251. else if (_srdCommon.Status == RState.End)
  252. {
  253. if (_currentRetryTimes < RETRY_TIMES)
  254. {
  255. _currentRetryTimes++;
  256. NotifyError(eEvent.WARN_SRD, $"Current Chuck ATM Retry Times is {_currentRetryTimes}", 0);
  257. _srdCommon.ChuckATMAction("", null);
  258. }
  259. else
  260. {
  261. NotifyError(eEvent.ERR_SRD, $"Chuck ATM Retry Times is over {RETRY_TIMES}. ChuckATM is failed!", 0);
  262. return true;
  263. }
  264. }
  265. return false;
  266. }
  267. /// <summary>
  268. /// Check Vacuum Value
  269. /// </summary>
  270. /// <returns></returns>
  271. private bool CheckVacuumValue()
  272. {
  273. if (_srdCommon.CommonData.VacuumValue >= _vacuumOffLimit)
  274. {
  275. //LOG.WriteLog(eEvent.INFO_SRD, Module, $"VacuumValue:{_srdCommon.CommonData.VacuumValue}, VacuumOn Limit:{_vacuumOffLimit}");
  276. return true;
  277. }
  278. else
  279. {
  280. LOG.WriteLog(eEvent.WARN_SRD, Module, $"VacuumValue:{_srdCommon.CommonData.VacuumValue}, VacuumOn Limit:{_vacuumOffLimit}");
  281. return false;
  282. }
  283. }
  284. /// <summary>
  285. /// LiftUpOff
  286. /// </summary>
  287. /// <param name="param"></param>
  288. /// <returns></returns>
  289. private bool LiftUpOn()
  290. {
  291. bool result = _srdCommon.LiftUpOnAction("", null);
  292. if (!result)
  293. {
  294. NotifyError(eEvent.ERR_SRD, "Lift Up On Action is failed", 0);
  295. return result;
  296. }
  297. return true;
  298. }
  299. /// <summary>
  300. /// 检验LiftUpOff结束状态
  301. /// </summary>
  302. /// <param name="param"></param>
  303. /// <returns></returns>
  304. private bool CheckLiftUpOnEndStatus()
  305. {
  306. return _srdCommon.Status == RState.End && _srdCommon.CommonData.LiftUpStatus;
  307. }
  308. /// <summary>
  309. /// 检验LiftUpOff结束状态
  310. /// </summary>
  311. /// <param name="param"></param>
  312. /// <returns></returns>
  313. private bool CheckLiftUpOnStopStatus()
  314. {
  315. if (_srdCommon.Status == RState.Failed || _srdCommon.Status == RState.Timeout)
  316. {
  317. NotifyError(eEvent.ERR_SRD, "Check LiftUpOn is failed", 0);
  318. return true;
  319. }
  320. return false;
  321. }
  322. /// <summary>
  323. /// ChuckVacuumOn
  324. /// </summary>
  325. /// <param name="param"></param>
  326. /// <returns></returns>
  327. private bool ChuckVacuumOff()
  328. {
  329. bool result = _srdCommon.ChuckVacuumOffAction("", null);
  330. if (!result)
  331. {
  332. NotifyError(eEvent.ERR_SRD, "ChuckVacuumOff Action is failed", 0);
  333. return result;
  334. }
  335. return true;
  336. }
  337. /// <summary>
  338. /// 检验ChuckVacuumOn结束状态
  339. /// </summary>
  340. /// <param name="param"></param>
  341. /// <returns></returns>
  342. private bool CheckChuckVacuumOffEndStatus()
  343. {
  344. return _srdCommon.Status == RState.End && _srdCommon.CommonData.ChuckVacuum;
  345. }
  346. /// <summary>
  347. /// 检验ChuckVacuumOn结束状态
  348. /// </summary>
  349. /// <param name="param"></param>
  350. /// <returns></returns>
  351. private bool CheckChuckVacuumOffStopStatus()
  352. {
  353. if (_srdCommon.Status == RState.Failed || _srdCommon.Status == RState.Timeout)
  354. {
  355. NotifyError(eEvent.ERR_SRD, "Check ChuckVacuumOff is failed", 0);
  356. return true;
  357. }
  358. return false;
  359. }
  360. /// <summary>
  361. /// Check WaferPresent
  362. /// </summary>
  363. /// <returns></returns>
  364. private bool CheckWaferPresent()
  365. {
  366. if (!_srdCommon.CommonData.WaferPresent)
  367. {
  368. NotifyError(eEvent.ERR_SRD, "WaferPresent sensor is off", 0);
  369. return false;
  370. }
  371. return true;
  372. }
  373. /// <summary>
  374. /// Open Door
  375. /// </summary>
  376. /// <param name="param"></param>
  377. /// <returns></returns>
  378. private bool OpenDoor()
  379. {
  380. return _srdCommon.DoorOpenAction("", null);
  381. }
  382. /// <summary>
  383. /// 检验DoorOpened
  384. /// </summary>
  385. /// <param name="param"></param>
  386. /// <returns></returns>
  387. private bool CheckDoorOpenedEndStatus()
  388. {
  389. bool result = _srdCommon.Status == RState.End;
  390. if (result)
  391. {
  392. if (_srdCommon.CommonData.DoorOpened && !_srdCommon.CommonData.DoorClosed)
  393. {
  394. return true;
  395. }
  396. else
  397. {
  398. NotifyError(eEvent.ERR_SRD, $"Opened {_srdCommon.CommonData.DoorOpened}&&Closed {_srdCommon.CommonData.DoorClosed}", 0);
  399. return false;
  400. }
  401. }
  402. return false;
  403. }
  404. /// <summary>
  405. /// 检验Door
  406. /// </summary>
  407. /// <returns></returns>
  408. private bool CheckDoorOpenedStopStatus()
  409. {
  410. return _srdCommon.Status == RState.Failed || _srdCommon.Status == RState.Timeout;
  411. }
  412. /// <summary>
  413. /// Flippers Out
  414. /// </summary>
  415. /// <param name="param"></param>
  416. /// <returns></returns>
  417. private bool FlippersOut()
  418. {
  419. bool result = false;
  420. object[] objects = new object[1];
  421. objects[0] = _waferSize;
  422. result = _srdCommon.FlipperOutAction("", objects);
  423. if (!result)
  424. {
  425. NotifyError(eEvent.ERR_SRD, $"FlipperOut{_waferSize} Action is failed", 0);
  426. return result;
  427. }
  428. return true;
  429. }
  430. /// <summary>
  431. /// 检验FlippersOut结束状态
  432. /// </summary>
  433. /// <param name="param"></param>
  434. /// <returns></returns>
  435. private bool CheckFlippersOutEndStatus()
  436. {
  437. return _srdCommon.Status == RState.End;
  438. }
  439. /// <summary>
  440. /// 检验FlippersOut结束状态
  441. /// </summary>
  442. /// <param name="param"></param>
  443. /// <returns></returns>
  444. private bool CheckFlippersOutStopStatus()
  445. {
  446. if (_srdCommon.Status == RState.Failed || _srdCommon.Status == RState.Timeout)
  447. {
  448. NotifyError(eEvent.ERR_SRD, $"Check FlipperOut{_waferSize} Action is failed", 0);
  449. return true;
  450. }
  451. return false;
  452. }
  453. /// <summary>
  454. /// Get current WaferSize
  455. /// </summary>
  456. /// <returns></returns>
  457. private bool GetWaferSize()
  458. {
  459. WaferInfo waferInfo = WaferManager.Instance.GetWafer(ModuleNameString.ToEnum(Module), 0);
  460. if (waferInfo == null)
  461. {
  462. return false;
  463. }
  464. switch (waferInfo.Size)
  465. {
  466. case WaferSize.WS4:
  467. _waferSize = 100;
  468. break;
  469. case WaferSize.WS6:
  470. case WaferSize.WS150:
  471. case WaferSize.WS159:
  472. _waferSize = 150;
  473. break;
  474. case WaferSize.WS0:
  475. case WaferSize.WS8:
  476. _waferSize = 200;
  477. break;
  478. default:
  479. return false;
  480. }
  481. return true;
  482. }
  483. /// <summary>
  484. /// 关闭 Wafer N2
  485. /// </summary>
  486. /// <returns></returns>
  487. private bool N2Off()
  488. {
  489. if(!_srdCommon.CommonData.N2On) return true;
  490. bool result = _srdCommon.N2OffAction("", null);
  491. if (!result)
  492. {
  493. NotifyError(eEvent.ERR_SRD, $"N2 Off Action is failed", 0);
  494. }
  495. return result;
  496. }
  497. /// <summary>
  498. /// Water Off
  499. /// </summary>
  500. /// <param name="param"></param>
  501. /// <returns></returns>
  502. private bool WaterOff()
  503. {
  504. if (_srdCommon.CommonData.WaterOn)
  505. {
  506. bool result = _srdCommon.WaterOff();
  507. if (!result)
  508. {
  509. NotifyError(eEvent.ERR_SRD, "Water On is failed", 0);
  510. }
  511. return result;
  512. }
  513. return true;
  514. }
  515. }
  516. }