EfemPickRoutine.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. using Aitex.Core.RT.Routine;
  2. using Aitex.Core.RT.SCCore;
  3. using Aitex.Sorter.Common;
  4. using CyberX8_RT.Devices;
  5. using MECF.Framework.Common.Routine;
  6. using MECF.Framework.Common.Equipment;
  7. using MECF.Framework.Common.SubstrateTrackings;
  8. using CyberX8_Core;
  9. using Aitex.Core.RT.Log;
  10. using Aitex.Core.Util;
  11. using MECF.Framework.Common.Schedulers;
  12. using System.Collections.Generic;
  13. using CyberX8_RT.Devices.EFEM;
  14. using CyberX8_RT.Modules.LPs;
  15. using CyberX8_RT.Modules.SRD;
  16. using System.Runtime.InteropServices;
  17. using CyberX8_RT.Modules.PUF;
  18. using Aitex.Core.RT.Device;
  19. using CyberX8_RT.Devices.AXIS;
  20. using MECF.Framework.Common.Utilities;
  21. using CyberX8_RT.Devices.PUF;
  22. using CyberX8_RT.Modules.Transporter;
  23. using MECF.Framework.Common.WaferHolder;
  24. using System;
  25. using Aitex.Core.UI.ControlDataContext;
  26. using Aitex.Core.Common;
  27. namespace CyberX8_RT.Modules.EFEM
  28. {
  29. class EfemPickRoutine : RoutineBase, IRoutine
  30. {
  31. private enum PickStep
  32. {
  33. WaitModuleReady,
  34. PufVacuumOff,
  35. Picking1,
  36. Picking2,
  37. End,
  38. }
  39. private int _moveTimeout = 20 * 1000;
  40. private ModuleName _targetModule = ModuleName.System;
  41. int _targetSlot;
  42. int _targetSlot2;
  43. string _targetPufSlot;
  44. Hand _hand;
  45. Hand _hand2;
  46. EfemBase _efem;
  47. bool _bDoublePick = false;
  48. private SRDEntity _srdModule;
  49. private PUFEntity _pufModule;
  50. private Queue<MoveItem> _moveQueue;
  51. public EfemPickRoutine(EfemBase efem) : base(ModuleName.EfemRobot.ToString())
  52. {
  53. _efem = efem;
  54. }
  55. public RState Start(params object[] objs)
  56. {
  57. _bDoublePick = false;
  58. _moveQueue = (Queue<MoveItem>)objs[0];
  59. _targetModule = _moveQueue.Peek().SourceModule;
  60. _targetSlot = _moveQueue.Peek().SourceSlot;
  61. _hand = _moveQueue.Peek().RobotHand;
  62. if(_moveQueue.Count >= 2)
  63. {
  64. _bDoublePick = true;
  65. }
  66. if (!CheckPreCondition())
  67. {
  68. return RState.Failed;
  69. }
  70. _moveTimeout = SC.GetValue<int>($"EFEM.MotionTimeout") * 1000;
  71. return Runner.Start(Module, $"Pick from {_targetModule}");
  72. }
  73. private Loadport GetLoadPort(ModuleName station)
  74. {
  75. LoadPortModule loadPortModule = Singleton<RouteManager>.Instance.EFEM.GetLoadportModule(station - ModuleName.LP1);
  76. return loadPortModule.LPDevice;
  77. }
  78. private bool CheckPreCondition()
  79. {
  80. //LoadPort状态判断
  81. if (ModuleHelper.IsLoadPort(_targetModule) && ModuleHelper.IsInstalled(_targetModule))
  82. {
  83. Loadport loadPort=GetLoadPort(_targetModule);
  84. if (loadPort == null)
  85. {
  86. return false;
  87. }
  88. if (!loadPort.IsLoaded)
  89. {
  90. NotifyError(eEvent.ERR_EFEM_ROBOT, $"LoadPort not load, cannot do the pick action",-1);
  91. return false;
  92. }
  93. }
  94. if (ModuleHelper.IsSRD(_targetModule) && ModuleHelper.IsInstalled(_targetModule))
  95. {
  96. _srdModule = Singleton<RouteManager>.Instance.GetModule<SRDEntity>(_targetModule.ToString());
  97. if (!_srdModule.IsHomed)
  98. {
  99. NotifyError(eEvent.ERR_EFEM_ROBOT, $"{_targetModule} is not homed, please home it first",-1);
  100. return false;
  101. }
  102. //判断arm是否在home位置上
  103. JetAxisBase jetAxisBase = DEVICE.GetDevice<JetAxisBase>($"{_targetModule}.Arm");
  104. double position = jetAxisBase.MotionData.MotorPosition;
  105. bool result = jetAxisBase.CheckPositionIsInStation(position, "Home");
  106. if (!result)
  107. {
  108. NotifyError(eEvent.ERR_EFEM_ROBOT, $"{_targetModule} armaxis {position} is not in homed place",-1);
  109. return false;
  110. }
  111. if (_srdModule.IsSrdDoorClosed)
  112. {
  113. NotifyError(eEvent.ERR_EFEM_ROBOT, $"{_targetModule} door closed, can not pick",-1);
  114. return false;
  115. }
  116. if (!_srdModule.IsSrdChuckVacuum)
  117. {
  118. NotifyError(eEvent.ERR_EFEM_ROBOT, $"{_targetModule} Vacuum on, can not pick",-1);
  119. return false;
  120. }
  121. }
  122. if (ModuleHelper.IsPUF(_targetModule) && ModuleHelper.IsInstalled(_targetModule))
  123. {
  124. _pufModule = Singleton<RouteManager>.Instance.GetModule<PUFEntity>(_targetModule.ToString());
  125. if (!_pufModule.IsHomed)
  126. {
  127. NotifyError(eEvent.ERR_EFEM_ROBOT, $"{_targetModule} is not homed, please home it first",-1);
  128. return false;
  129. }
  130. if (!_pufModule.IsInRobotStation)
  131. {
  132. NotifyError(eEvent.ERR_EFEM_ROBOT, $"{_targetModule} not in robot station, cannot do the pick action",-1);
  133. return false;
  134. }
  135. }
  136. if (WaferManager.Instance.CheckHasWafer(ModuleName.EfemRobot, (int)_hand))
  137. {
  138. NotifyError(eEvent.ERR_EFEM_ROBOT, $"Efem robot arm{_hand} already has a wafer, cannot do the pick action",-1);
  139. return false;
  140. }
  141. if (WaferManager.Instance.CheckNoWafer(_targetModule, _targetSlot))
  142. {
  143. if (ModuleHelper.IsPUF(_targetModule))
  144. {
  145. _targetPufSlot = _targetSlot == 0 ? "SideA" : "SideB";
  146. NotifyError(eEvent.ERR_EFEM_ROBOT, $"The target: {_targetModule}.{_targetPufSlot} has no wafer, cannot do the pick action",-1);
  147. }
  148. else
  149. {
  150. NotifyError(eEvent.ERR_EFEM_ROBOT, $"The target slot: {_targetModule}.{_targetSlot + 1} has no wafer, cannot do the pick action",-1);
  151. }
  152. return false;
  153. }
  154. else
  155. {
  156. WaferInfo waferInfo = WaferManager.Instance.GetWafer(_targetModule, _targetSlot);
  157. if(waferInfo.Status!=WaferStatus.Normal)
  158. {
  159. NotifyError(eEvent.ERR_EFEM_ROBOT, $"The target slot: {_targetModule}.{_targetSlot + 1} wafer status is {waferInfo.Status}, cannot do the pick action", -1);
  160. return false;
  161. }
  162. }
  163. if (_moveQueue.Count >= 2)
  164. {
  165. if (!ModuleHelper.IsLoadPort(_targetModule))
  166. {
  167. NotifyError(eEvent.ERR_EFEM_ROBOT, $"Wrong double pick command, target is not loadport",-1);
  168. return false;
  169. }
  170. _hand2 = _hand != Hand.Blade1 ? Hand.Blade1 : Hand.Blade2;
  171. if (WaferManager.Instance.CheckHasWafer(ModuleName.EfemRobot, (int)_hand2))
  172. {
  173. NotifyError(eEvent.ERR_EFEM_ROBOT, $"Efem robot arm{_hand2} already has a wafer, cannot do the double pick action",-1);
  174. return false;
  175. }
  176. _targetSlot2 = _moveQueue.ToArray()[1].SourceSlot;
  177. if (WaferManager.Instance.CheckNoWafer(_targetModule, _targetSlot2))
  178. {
  179. NotifyError(eEvent.ERR_EFEM_ROBOT, $"The target slot: {_targetModule}.{_targetSlot2 + 1} has no wafer, cannot do the double pick action",-1);
  180. return false;
  181. }
  182. }
  183. return true;
  184. }
  185. public RState Monitor()
  186. {
  187. if(_bDoublePick)
  188. {
  189. Runner.Wait(PickStep.WaitModuleReady, WaitModuleReady)
  190. .Run(PickStep.Picking1, Pick1, Pick1Done, _moveTimeout)
  191. .Run(PickStep.Picking2, Pick2, Pick2Done, _moveTimeout)
  192. .End(PickStep.End, ActionDone);
  193. }
  194. else
  195. {
  196. Runner.Wait(PickStep.WaitModuleReady, WaitModuleReady)
  197. .RunIf(PickStep.PufVacuumOff, ModuleHelper.IsPUF(_targetModule), PufVacuumOff, CheckPufVacuumOff, _delay_2s)
  198. .Run(PickStep.Picking1, Pick1, Pick1Done, _moveTimeout)
  199. .End(PickStep.End, ActionDone);
  200. }
  201. return Runner.Status;
  202. }
  203. /// <summary>
  204. /// Puf关闭真空
  205. /// </summary>
  206. /// <returns></returns>
  207. private bool PufVacuumOff()
  208. {
  209. PufVacuum pufVacuum = DEVICE.GetDevice<PufVacuum>($"{_targetModule}.Vacuum");
  210. if (_targetSlot == 0)
  211. {
  212. return pufVacuum.VacuumAOff();
  213. }
  214. else
  215. {
  216. return pufVacuum.VacuumBOff();
  217. }
  218. }
  219. /// <summary>
  220. /// 检验Puf是否关闭真空
  221. /// </summary>
  222. /// <returns></returns>
  223. private bool CheckPufVacuumOff()
  224. {
  225. PufVacuum pufVacuum = DEVICE.GetDevice<PufVacuum>($"{_targetModule}.Vacuum");
  226. if (_targetSlot == 0)
  227. {
  228. return pufVacuum.IsChuckAReleased;
  229. }
  230. else
  231. {
  232. return pufVacuum.ISChuckBReleased;
  233. }
  234. }
  235. public void Abort()
  236. {
  237. _efem.Halt();
  238. }
  239. private bool WaitModuleReady()
  240. {
  241. return _efem.Status == RState.End;
  242. }
  243. private bool Pick1()
  244. {
  245. return _efem.Pick(_targetModule, _targetSlot, _hand);
  246. }
  247. private bool Pick1Done()
  248. {
  249. if (_efem.Status == RState.End)
  250. {
  251. WaferManager.Instance.WaferMoved(_targetModule, _targetSlot, ModuleName.EfemRobot, (int)_hand);
  252. return true;
  253. }
  254. else if (_efem.Status == RState.Failed)
  255. {
  256. NotifyError(eEvent.ERR_EFEM_ROBOT, $"Efem robot picking failed: {_efem.Status}",-1);
  257. return true;
  258. }
  259. return false;
  260. }
  261. private bool Pick2()
  262. {
  263. return _efem.Pick(_targetModule, _targetSlot2, _hand2);
  264. }
  265. private bool Pick2Done()
  266. {
  267. if (_efem.Status == RState.End)
  268. {
  269. WaferManager.Instance.WaferMoved(_targetModule, _targetSlot2, ModuleName.EfemRobot, (int)_hand2);
  270. return true;
  271. }
  272. else if (_efem.Status == RState.Failed)
  273. {
  274. NotifyError(eEvent.ERR_EFEM_ROBOT, $"Efem robot picking failed: {_efem.Status}",-1);
  275. return true;
  276. }
  277. return false;
  278. }
  279. private bool ActionDone()
  280. {
  281. return true;
  282. }
  283. /// <summary>
  284. /// 重试
  285. /// </summary>
  286. /// <param name="step"></param>
  287. public RState Retry(int step)
  288. {
  289. if(!CheckPreCondition())
  290. {
  291. return RState.Failed;
  292. }
  293. _efem.Reset();
  294. List<Enum> preStepIds = new List<Enum>();
  295. AddPreSteps(PickStep.PufVacuumOff, preStepIds);
  296. return Runner.Retry(PickStep.PufVacuumOff, preStepIds, Module, "Pick Retry");
  297. }
  298. /// <summary>
  299. /// 忽略前
  300. /// </summary>
  301. /// <param name="step"></param>
  302. /// <param name="preStepIds"></param>
  303. private void AddPreSteps(PickStep step, List<Enum> preStepIds)
  304. {
  305. for (int i = 0; i < (int)step; i++)
  306. {
  307. preStepIds.Add((PickStep)i);
  308. }
  309. }
  310. /// <summary>
  311. /// 检验前面完成状态
  312. /// </summary>
  313. /// <returns></returns>
  314. public bool CheckCompleteCondition(int index)
  315. {
  316. if (WaferManager.Instance.CheckNoWafer(ModuleName.EfemRobot, (int)_hand))
  317. {
  318. NotifyError(eEvent.ERR_EFEM_ROBOT, $"Efem robot arm{_hand} has no wafer", -1);
  319. return false;
  320. }
  321. if (WaferManager.Instance.CheckHasWafer(_targetModule, _targetSlot))
  322. {
  323. NotifyError(eEvent.ERR_EFEM_ROBOT, $"{_targetModule} Slot{_targetSlot} has no wafer", -1);
  324. return false;
  325. }
  326. return true;
  327. }
  328. }
  329. }