RobotCycleRoutine.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. using Aitex.Core.Common;
  2. using Aitex.Core.RT.Log;
  3. using Aitex.Core.RT.Routine;
  4. using Aitex.Core.RT.SCCore;
  5. using Aitex.Core.Util;
  6. using Aitex.Sorter.Common;
  7. using CyberX8_Core;
  8. using CyberX8_RT.Devices.EFEM;
  9. using CyberX8_RT.Modules.LPs;
  10. using MECF.Framework.Common.Beckhoff.Station;
  11. using MECF.Framework.Common.Equipment;
  12. using MECF.Framework.Common.Schedulers;
  13. using MECF.Framework.Common.SubstrateTrackings;
  14. using MECF.Framework.Common.Utilities;
  15. using System;
  16. using System.Collections.Generic;
  17. using System.Linq;
  18. using System.Text;
  19. using System.Threading.Tasks;
  20. namespace CyberX8_RT.Modules.EFEM
  21. {
  22. public class RobotCycleRoutine : ModuleRoutineBase, IRoutine
  23. {
  24. private enum RobotCycleStep
  25. {
  26. LPCycleStrat,
  27. PickFromLP,
  28. PickFromLPCheck,
  29. PlaceToAligner,
  30. PlaceToAlignerCheck,
  31. AlignAction,
  32. AlignCompleteCheck,
  33. PickFromAligner,
  34. PickFromAlignerCheck,
  35. PlaceToDummy,
  36. PlaceToDummyCheck,
  37. PickFromDummy,
  38. PickFromDummyCheck,
  39. PlaceToSrd,
  40. PlaceToSrdCheck,
  41. PickFromSrd,
  42. PickFromSrdCheck,
  43. PlaceToLP,
  44. PlaceToLPCheck,
  45. LPCycleEnd,
  46. End
  47. }
  48. EfemBase _efem;
  49. /// <summary>
  50. /// 当前Cycle选中的LP里面的Wafer数量
  51. /// </summary>
  52. private int _waferCount;
  53. private EfemPickRoutine _efemPickRoutine;
  54. private EfemPlaceRoutine _efemPlaceRoutine;
  55. private EFEMAlignRoutine _efemAlignRoutine;
  56. private ModuleName _targetLP;
  57. private ModuleName _targetAligner;
  58. private ModuleName _targetDummy;
  59. private ModuleName _targetSrd;
  60. private Queue<MoveItem> _lpToAlignerMoveItem = new Queue<MoveItem>();
  61. private Queue<MoveItem> _alignerToDummyMoveItem = new Queue<MoveItem>();
  62. private Queue<MoveItem> _alignerToSrdMoveItem = new Queue<MoveItem>();
  63. private Queue<MoveItem> _dummyToLpMoveItem = new Queue<MoveItem>();
  64. private Queue<MoveItem> _dummyToSrdMoveItem = new Queue<MoveItem>();
  65. private Queue<MoveItem> _srdToLpMoveItem = new Queue<MoveItem>();
  66. private Queue<int> _lpWaferIndex = new Queue<int>(); //记录有LP有Wafer的slot号
  67. private int _moveTimeout = 20 * 1000;
  68. private int _dummySlotNumber = 0;
  69. private object[] alignerParamater;
  70. public RobotCycleRoutine(EfemBase efem) : base(ModuleName.EfemRobot)
  71. {
  72. _efem = efem;
  73. _efemPickRoutine = new EfemPickRoutine(efem);
  74. _efemPlaceRoutine = new EfemPlaceRoutine(efem);
  75. _efemAlignRoutine = new EFEMAlignRoutine(efem);
  76. }
  77. public RState Start(params object[] objs)
  78. {
  79. _lpWaferIndex.Clear();//初始化LP 有wafer的slot号
  80. _waferCount = 0; //初始化wafercount的数量
  81. alignerParamater = new object[3];//初始化Align参数
  82. alignerParamater[0] = ModuleName.Aligner1;
  83. alignerParamater[1] = 0;
  84. if (objs.Length >= 6)
  85. {
  86. _targetLP = (ModuleName)objs[0];
  87. _targetAligner = (ModuleName)objs[1];
  88. _targetDummy = (ModuleName)objs[2];
  89. _targetSrd = (ModuleName)objs[3];
  90. alignerParamater[2] = (int)objs[5];
  91. }
  92. else
  93. {
  94. return RState.Failed;
  95. }
  96. if (!CheckPreCondition()) //检验前提条件
  97. {
  98. return RState.Failed;
  99. }
  100. _moveTimeout = SC.GetValue<int>($"EFEM.MotionTimeout") * 1000;
  101. MoveItem lpToAlignerMoveItem = new MoveItem //LP To Aligner
  102. {
  103. SourceModule = _targetLP,
  104. SourceSlot = _lpWaferIndex.Dequeue(),
  105. DestinationModule = ModuleName.Aligner1,
  106. DestinationSlot = 0,
  107. RobotHand = 0 //表示blade1
  108. };
  109. _lpToAlignerMoveItem.Enqueue(lpToAlignerMoveItem);
  110. MoveItem alignerToDummyMoveItem = new MoveItem //Aligner To Dummy
  111. {
  112. SourceModule = ModuleName.Aligner1,
  113. SourceSlot = 0,
  114. DestinationModule = _targetDummy,
  115. DestinationSlot = 0,
  116. RobotHand = 0
  117. };
  118. _alignerToDummyMoveItem.Enqueue(alignerToDummyMoveItem);
  119. MoveItem alignerToSrdMoveItem = new MoveItem //Aligner To Srd
  120. {
  121. SourceModule = ModuleName.Aligner1,
  122. SourceSlot = 0,
  123. DestinationModule = _targetSrd,
  124. DestinationSlot = 0,
  125. RobotHand = 0
  126. };
  127. _alignerToSrdMoveItem.Enqueue(alignerToSrdMoveItem);
  128. MoveItem dummyToLpMoveItem = new MoveItem //Dummy To LP
  129. {
  130. SourceModule = _targetDummy,
  131. SourceSlot = 0,
  132. DestinationModule = _targetLP,
  133. DestinationSlot = _lpToAlignerMoveItem.Peek().SourceSlot, //放回原来LP的slot位置
  134. RobotHand = 0
  135. };
  136. _dummyToLpMoveItem.Enqueue(dummyToLpMoveItem);
  137. MoveItem dummyToSrdMoveItem = new MoveItem //Dummy To Srd
  138. {
  139. SourceModule = _targetDummy,
  140. SourceSlot = 0,
  141. DestinationModule = _targetSrd,
  142. DestinationSlot = 0,
  143. RobotHand = 0
  144. };
  145. _dummyToSrdMoveItem.Enqueue(dummyToSrdMoveItem);
  146. MoveItem srdToLpMoveItem = new MoveItem //SRD To LP
  147. {
  148. DestinationModule = _targetLP,
  149. DestinationSlot = _lpToAlignerMoveItem.Peek().SourceSlot, //放回原来LP的slot位置
  150. RobotHand = 0
  151. };
  152. _srdToLpMoveItem.Enqueue(srdToLpMoveItem);
  153. return Runner.Start(Module, "Robot Cycle start");
  154. }
  155. public RState Monitor()
  156. {
  157. Runner.LoopStart(RobotCycleStep.LPCycleStrat, "LP Cycle Start", _waferCount, NullFun, _delay_1ms)
  158. .LoopRun(RobotCycleStep.PickFromLP, () => { return _efemPickRoutine.Start(_lpToAlignerMoveItem) == RState.Running; }, _delay_1ms)
  159. .LoopRunWithStopStatus(RobotCycleStep.PickFromLPCheck, () => { return CommonFunction.CheckRoutineEndState(_efemPickRoutine); },
  160. () => CheckRoutineStopStatus(_efemPickRoutine, "Efem pick from LP failed"))
  161. .LoopRun(RobotCycleStep.PlaceToAligner, () => { return _efemPlaceRoutine.Start(_lpToAlignerMoveItem) == RState.Running; }, _delay_1ms)
  162. .LoopRunWithStopStatus(RobotCycleStep.PlaceToAlignerCheck, () => { return CommonFunction.CheckRoutineEndState(_efemPlaceRoutine); },
  163. () => CheckRoutineStopStatus(_efemPlaceRoutine, "Efem place to aligner failed"))
  164. .LoopRun(RobotCycleStep.AlignAction, () => { return _efemAlignRoutine.Start(alignerParamater) == RState.Running; }, _delay_1ms)
  165. .LoopRunWithStopStatus(RobotCycleStep.AlignCompleteCheck, () => { return CommonFunction.CheckRoutineEndState(_efemAlignRoutine); },
  166. () => CheckRoutineStopStatus(_efemAlignRoutine, "Efem aligner Action failed"))
  167. .LoopRun(RobotCycleStep.PickFromAligner, () => { return _efemPickRoutine.Start(_alignerToDummyMoveItem) == RState.Running; }, _delay_1ms)
  168. .LoopRunWithStopStatus(RobotCycleStep.PickFromAlignerCheck, () => { return CommonFunction.CheckRoutineEndState(_efemPickRoutine); },
  169. () => CheckRoutineStopStatus(_efemPickRoutine, "Efem pick from aligner failed"))
  170. //从Aligner到dummy
  171. .LoopRunIf(RobotCycleStep.PlaceToDummy, _targetDummy != ModuleName.Unknown, () => { return _efemPlaceRoutine.Start(_alignerToDummyMoveItem) == RState.Running; }, _delay_1ms)
  172. .LoopRunIfWithStopStatus(RobotCycleStep.PlaceToDummyCheck, _targetDummy != ModuleName.Unknown,() => { return CommonFunction.CheckRoutineEndState(_efemPlaceRoutine); },
  173. () => CheckRoutineStopStatus(_efemPlaceRoutine, "Efem place to dummy failed"))
  174. .LoopRunIf(RobotCycleStep.PickFromDummy, _targetDummy != ModuleName.Unknown, () => { return _efemPickRoutine.Start(_dummyToLpMoveItem) == RState.Running; }, _delay_1ms)
  175. .LoopRunIfWithStopStatus(RobotCycleStep.PickFromDummyCheck, _targetDummy != ModuleName.Unknown,() => { return CommonFunction.CheckRoutineEndState(_efemPickRoutine); },
  176. () => CheckRoutineStopStatus(_efemPickRoutine, "Efem pick from dummy failed"))
  177. //从Aligner到SRD的
  178. .LoopRunIf(RobotCycleStep.PlaceToSrd, _targetSrd != ModuleName.Unknown && _targetDummy==ModuleName.Unknown, () => { return _efemPlaceRoutine.Start(_alignerToSrdMoveItem) == RState.Running; }, _delay_1ms)
  179. .LoopRunIfWithStopStatus(RobotCycleStep.PlaceToSrdCheck, _targetSrd != ModuleName.Unknown && _targetDummy == ModuleName.Unknown, () => { return CommonFunction.CheckRoutineEndState(_efemPlaceRoutine); },
  180. () => CheckRoutineStopStatus(_efemPlaceRoutine, "Efem place to srd failed"))
  181. .LoopRunIf(RobotCycleStep.PickFromSrd, _targetSrd != ModuleName.Unknown && _targetDummy == ModuleName.Unknown, () => { return _efemPickRoutine.Start(_alignerToSrdMoveItem) == RState.Running; }, _delay_1ms)
  182. .LoopRunIfWithStopStatus(RobotCycleStep.PickFromSrdCheck, _targetSrd != ModuleName.Unknown && _targetDummy == ModuleName.Unknown, () => { return CommonFunction.CheckRoutineEndState(_efemPickRoutine); },
  183. () => CheckRoutineStopStatus(_efemPickRoutine, "Efem pick from srd failed"))
  184. //从dummy到SRD的
  185. .LoopRunIf(RobotCycleStep.PlaceToSrd, _targetSrd != ModuleName.Unknown && _targetDummy != ModuleName.Unknown, () => { return _efemPlaceRoutine.Start(_dummyToSrdMoveItem) == RState.Running; }, _delay_1ms)
  186. .LoopRunIfWithStopStatus(RobotCycleStep.PlaceToSrdCheck, _targetSrd != ModuleName.Unknown && _targetDummy != ModuleName.Unknown, () => { return CommonFunction.CheckRoutineEndState(_efemPlaceRoutine); },
  187. () => CheckRoutineStopStatus(_efemPlaceRoutine, "Efem place to srd failed"))
  188. .LoopRunIf(RobotCycleStep.PickFromSrd, _targetSrd != ModuleName.Unknown && _targetDummy != ModuleName.Unknown, () => { return _efemPickRoutine.Start(_dummyToSrdMoveItem) == RState.Running; }, _delay_1ms)
  189. .LoopRunIfWithStopStatus(RobotCycleStep.PickFromSrdCheck, _targetSrd != ModuleName.Unknown && _targetDummy != ModuleName.Unknown, () => { return CommonFunction.CheckRoutineEndState(_efemPickRoutine); },
  190. () => CheckRoutineStopStatus(_efemPickRoutine, "Efem pick from srd failed"))
  191. //从Dummy回LP
  192. .LoopRunIf(RobotCycleStep.PlaceToLP, _targetDummy != ModuleName.Unknown && _targetSrd == ModuleName.Unknown, () => { return _efemPlaceRoutine.Start(_dummyToLpMoveItem) == RState.Running; }, _delay_1ms)
  193. .LoopRunIfWithStopStatus(RobotCycleStep.PlaceToLPCheck, _targetDummy != ModuleName.Unknown && _targetSrd == ModuleName.Unknown, () => { return CommonFunction.CheckRoutineEndState(_efemPlaceRoutine); },
  194. () => CheckRoutineStopStatus(_efemPlaceRoutine, "Efem place to LP failed"))
  195. //从SRD回LP
  196. .LoopRunIf(RobotCycleStep.PlaceToLP, _targetSrd != ModuleName.Unknown, () => { return _efemPlaceRoutine.Start(_srdToLpMoveItem) == RState.Running; }, _delay_1ms)
  197. .LoopRunIfWithStopStatus(RobotCycleStep.PlaceToLPCheck, _targetSrd != ModuleName.Unknown, () => { return CommonFunction.CheckRoutineEndState(_efemPlaceRoutine); },
  198. () => CheckRoutineStopStatus(_efemPlaceRoutine, "Efem place to LP failed"))
  199. .LoopEnd(RobotCycleStep.LPCycleEnd, UpdateMoveItem, _delay_1ms)
  200. .End(RobotCycleStep.End, ClearMoveItem, _delay_1ms);
  201. return Runner.Status;
  202. }
  203. public void Abort()
  204. {
  205. _efem.Halt();
  206. }
  207. #region 功能方法
  208. private bool CheckPreCondition()
  209. {
  210. if (WaferManager.Instance.CheckHasWafer(ModuleName.EfemRobot, 0))
  211. {
  212. Stop($"Efem robot arm already has a wafer, cannot do the RobotCycle action");
  213. return false;
  214. }
  215. //LoadPort状态判断
  216. if (ModuleHelper.IsLoadPort(_targetLP) && ModuleHelper.IsInstalled(_targetLP))
  217. {
  218. Loadport loadPort = GetLoadPort(_targetLP);
  219. if (loadPort == null)
  220. {
  221. Stop($"{_targetLP} is null");
  222. return false;
  223. }
  224. WaferInfo[] waferInfos = WaferManager.Instance.GetWafers(_targetLP);
  225. for (int i = 0; i < waferInfos.Length; i++)
  226. {
  227. if (waferInfos[i] != null && !waferInfos[i].IsEmpty)
  228. {
  229. _waferCount++;
  230. _lpWaferIndex.Enqueue(i);
  231. }
  232. }
  233. if (_waferCount < 1)
  234. {
  235. Stop($"there is no wafer in {_targetLP}");
  236. return false;
  237. }
  238. }
  239. else if(ModuleHelper.IsLoadPort(_targetLP) && !ModuleHelper.IsInstalled(_targetLP))
  240. {
  241. Stop($"{_targetLP} is not installed");
  242. return false;
  243. }
  244. //Aligner状态判断
  245. //if (!ModuleHelper.IsInstalled(_targetAligner))
  246. //{
  247. // Stop($"{_targetAligner} is not installed");
  248. // return false;
  249. //}
  250. //Dummy状态判断
  251. if (!ModuleHelper.IsInstalled(_targetDummy))
  252. {
  253. Stop($"{_targetDummy} is not installed");
  254. return false;
  255. }
  256. //若dummy存在wafer,需要人工处理
  257. DummyDevice dummyDevice = Singleton<RouteManager>.Instance.EFEM.GetDummyDevice(_targetDummy - ModuleName.Dummy1);
  258. if(dummyDevice != null)
  259. {
  260. if (!dummyDevice.HasCassette)
  261. {
  262. Stop($"{_targetDummy} dose not have cassette");
  263. return false;
  264. }
  265. WaferInfo[] waferInfos = WaferManager.Instance.GetWafers(_targetDummy);
  266. if(waferInfos.Length > 0)
  267. {
  268. _dummySlotNumber = waferInfos.Length;
  269. foreach (var item in waferInfos)
  270. {
  271. if (item != null && !item.IsEmpty)
  272. {
  273. Stop($"There are wafers inside the {_targetDummy},cannot do the RobotCycle action");
  274. return false;
  275. }
  276. }
  277. }
  278. }
  279. return true;
  280. }
  281. private Loadport GetLoadPort(ModuleName station)
  282. {
  283. LoadPortModule loadPortModule = Singleton<RouteManager>.Instance.EFEM.GetLoadportModule(station - ModuleName.LP1);
  284. return loadPortModule.LPDevice;
  285. }
  286. private bool CheckRoutineStopStatus(IRoutine routine, string error)
  287. {
  288. bool result = CommonFunction.CheckRoutineStopState(routine);
  289. if (result)
  290. {
  291. Stop( $"{error}");
  292. }
  293. return result;
  294. }
  295. //更新取放dummy的位置
  296. private bool UpdateMoveItem()
  297. {
  298. if (_lpWaferIndex.Count > 0)
  299. {
  300. _lpToAlignerMoveItem.Peek().SourceSlot = _lpWaferIndex.Dequeue(); //更新从LP取片的位置
  301. if (_targetDummy != ModuleName.Unknown)
  302. {
  303. _alignerToDummyMoveItem.Peek().DestinationSlot = (_alignerToDummyMoveItem.Peek().DestinationSlot + 1) % _dummySlotNumber; //更新放到Dummy的位置
  304. _dummyToLpMoveItem.Peek().SourceSlot = (_dummyToLpMoveItem.Peek().SourceSlot + 1) % _dummySlotNumber; //更新从dummy取片的位置,送回LP
  305. _dummyToSrdMoveItem.Peek().SourceSlot = (_dummyToSrdMoveItem.Peek().SourceSlot + 1) % _dummySlotNumber;//更新从dummy取片的位置,送到Srd
  306. }
  307. _dummyToLpMoveItem.Peek().DestinationSlot = _lpToAlignerMoveItem.Peek().SourceSlot;//更新从dummy放回LP的位置。
  308. _srdToLpMoveItem.Peek().DestinationSlot = _lpToAlignerMoveItem.Peek().SourceSlot;//更新从srd放回LP的位置。
  309. }
  310. return true;
  311. }
  312. //清除MoveItem
  313. private bool ClearMoveItem()
  314. {
  315. _lpToAlignerMoveItem.Clear();
  316. _alignerToDummyMoveItem.Clear();
  317. _alignerToSrdMoveItem.Clear();
  318. _dummyToLpMoveItem.Clear();
  319. _dummyToSrdMoveItem.Clear();
  320. _srdToLpMoveItem.Clear();
  321. return true;
  322. }
  323. #endregion
  324. }
  325. }