MFPMPlaceRoutine.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. using Aitex.Core.RT.Routine;
  2. using Aitex.Core.RT.SCCore;
  3. using Aitex.Sorter.Common;
  4. using Venus_RT.Devices;
  5. using MECF.Framework.Common.Routine;
  6. using MECF.Framework.Common.Equipment;
  7. using MECF.Framework.Common.SubstrateTrackings;
  8. using Venus_Core;
  9. using Aitex.Core.RT.Log;
  10. using Aitex.Core.Util;
  11. using Venus_RT.Modules.PMs;
  12. using MECF.Framework.Common.Schedulers;
  13. using System.Collections.Generic;
  14. using MECF.Framework.Common.DBCore;
  15. using System;
  16. using Aitex.Core.RT.Device;
  17. namespace Venus_RT.Modules.TM
  18. {
  19. class MFPMPlaceRoutine : ModuleRoutineBase, IRoutine
  20. {
  21. private enum PlaceStep
  22. {
  23. WaitPMReady,
  24. PreRotation,
  25. OpenPMSlitDoor,
  26. PMPrepare,
  27. ArmExtend,
  28. QueryAWC,
  29. LiftUpWafer,
  30. PlaceDelay,
  31. ArmRetract,
  32. SavePlaceData,
  33. WaitPLCReady,
  34. ClosePMSlitDoor,
  35. NotifyDone,
  36. }
  37. private enum PlaceWithHeaterStep
  38. {
  39. WaitPMReady,
  40. PreRotation,
  41. PMPrepare,
  42. WaitPressreStable,
  43. OpenPMSlitDoor,
  44. Placing,
  45. QueryAWC,
  46. SavePlaceData,
  47. WaitPLCReady,
  48. ClosePMSlitDoor,
  49. CheckAwc,
  50. NotifyDone,
  51. }
  52. private readonly JetTM _JetTM;
  53. private JetPMBase _jetPM;
  54. private readonly ITransferRobot _robot;
  55. private int _placingTimeout = 20 * 1000;
  56. private int _liftPinTimeout = 10 * 1000;
  57. private int _placeDelayTime = 0;
  58. private ModuleName _targetModule;
  59. private PMEntity _pmModule;
  60. private int _targetSlot;
  61. private Hand _hand;
  62. private DateTime _starttime;
  63. private bool _queryAwc;
  64. private int _robotTransferAWCOffset;
  65. double maxPressureDifference;
  66. public MFPMPlaceRoutine(JetTM tm, ITransferRobot robot) : base(ModuleName.TMRobot)
  67. {
  68. _JetTM = tm;
  69. _robot = robot;
  70. Name = "Place to PM";
  71. if (SC.GetValue<int>($"TM.QueryAWCOption") == 2 || SC.GetValue<int>($"TM.QueryAWCOption") == 3)
  72. _queryAwc = true;
  73. else
  74. _queryAwc = false;
  75. }
  76. public RState Start(params object[] objs)
  77. {
  78. _starttime = DateTime.Now;
  79. if (!_robot.IsHomed)
  80. {
  81. LOG.Write(eEvent.ERR_TM, Module, $"TM Robot is not homed, please home it first");
  82. return RState.Failed;
  83. }
  84. var placeItem = (Queue<MoveItem>)objs[0];
  85. if (!WaferManager.Instance.CheckDuplicatedWafersBeforeMove(placeItem))
  86. return RState.Failed;
  87. _targetModule = placeItem.Peek().DestinationModule;
  88. _targetSlot = placeItem.Peek().DestinationSlot;
  89. _hand = placeItem.Peek().RobotHand;
  90. if (ModuleHelper.IsPm(_targetModule) && ModuleHelper.IsInstalled(_targetModule))
  91. {
  92. _pmModule = Singleton<RouteManager>.Instance.GetPM(_targetModule);
  93. _jetPM = DEVICE.GetDevice<JetPMBase>(_targetModule.ToString());
  94. }
  95. else
  96. {
  97. LOG.Write(eEvent.ERR_TM, Module, $"Invalid target module : {_targetModule} for placing action");
  98. return RState.Failed;
  99. }
  100. if (WaferManager.Instance.CheckNoWafer(ModuleName.TMRobot, (int)_hand))
  101. {
  102. LOG.Write(eEvent.ERR_TM, Module, $"Cannot Place as TM Robot Arm: {_hand} has no wafer");
  103. return RState.Failed;
  104. }
  105. if (WaferManager.Instance.CheckHasWafer(_targetModule, _targetSlot))
  106. {
  107. LOG.Write(eEvent.ERR_TM, Module, $"Cannot Place as {_targetModule} Slot {_targetSlot + 1} already has a wafer");
  108. return RState.Failed;
  109. }
  110. var wafer = WaferManager.Instance.GetWafer(ModuleName.TMRobot, (int)_hand);
  111. LOG.Write(eEvent.INFO_TM_ROBOT, ModuleName.TMRobot, $"{wafer.WaferOrigin} will be move from TM Robot {_hand} to {_targetModule} {_targetSlot + 1}");
  112. Reset();
  113. _placingTimeout = SC.GetValue<int>("TM.PlaceTimeout") * 1000;
  114. _placeDelayTime = SC.GetValue<int>($"{_targetModule}.PlaceDelayTime");
  115. _robotTransferAWCOffset= SC.GetValue<int>("TM.EnterPMAWCAlarmLimit");
  116. maxPressureDifference = SC.GetValue<double>("System.PMTMMaxPressureDifference");
  117. if (SC.GetValue<int>($"TM.QueryAWCOption") == 2 || SC.GetValue<int>($"TM.QueryAWCOption") == 3)
  118. _queryAwc = true;
  119. else
  120. _queryAwc = false;
  121. return Runner.Start(Module, $"Place to {_targetModule}");
  122. }
  123. public RState Monitor()
  124. {
  125. switch (_pmModule.ChamberType)
  126. {
  127. //case JetChamber.Venus:
  128. case JetChamber.Kepler2300:
  129. Runner.Wait(PlaceStep.WaitPMReady, () => _pmModule.IsIdle, _delay_60s)
  130. .RunIf(PlaceStep.PreRotation, _JetTM.PreRotateModules.ContainsKey(_targetModule), RotateArm, WaitRotateDone)
  131. .Run(PlaceStep.OpenPMSlitDoor, OpenPMSlitDoor, OpenPMSlitDoorIsOK)
  132. .Run(PlaceStep.PMPrepare, ModulePrepare, IsModulePrepareReady, _delay_60s)
  133. .Run(PlaceStep.ArmExtend, ArmExtend, WaitRobotExtendDone, _placingTimeout)
  134. .Run(PlaceStep.QueryAWC, QueryAWC, WaitRobotQueryDone, _delay_1s)
  135. .Run(PlaceStep.LiftUpWafer, NotifyPMPlaceWafer, WaitPMWaferLiftUp, _delay_30s)
  136. .Delay(PlaceStep.PlaceDelay, _placeDelayTime)
  137. .Run(PlaceStep.ArmRetract, ArmRetract, WaitRobotRetractDone, _delay_30s)
  138. .Run(PlaceStep.SavePlaceData, RecordAWCData, NullFun)
  139. .Run(PlaceStep.ClosePMSlitDoor, ClosePMSlitDoor, ClosePMSlitDoorIsOK)
  140. .End(PlaceStep.NotifyDone, NotifyPMDone, _delay_50ms);
  141. break;
  142. case JetChamber.Kepler2200A:
  143. case JetChamber.Kepler2200B:
  144. Runner.Wait(PlaceWithHeaterStep.WaitPMReady, () => _pmModule.IsIdle, _delay_60s)
  145. .RunIf(PlaceWithHeaterStep.PreRotation, _JetTM.PreRotateModules.ContainsKey(_targetModule), RotateArm, WaitRotateDone)
  146. .Run(PlaceWithHeaterStep.PMPrepare, ModulePrepare, IsModulePrepareReady, _delay_60s)
  147. .Wait(PlaceWithHeaterStep.WaitPressreStable, TMPMPressureIsOK, _delay_60s)
  148. .Run(PlaceWithHeaterStep.OpenPMSlitDoor, OpenPMSlitDoor, OpenPMSlitDoorIsOK)
  149. .Run(PlaceWithHeaterStep.Placing, Placing, WaitPlaceDone)
  150. .RunIf(PlaceWithHeaterStep.QueryAWC, _queryAwc, QueryAWC, WaitRobotQueryDone, _delay_1s)
  151. .RunIf(PlaceWithHeaterStep.SavePlaceData, _queryAwc, RecordAWCData, NullFun)
  152. .Wait(PlaceWithHeaterStep.WaitPLCReady, PLCIsReadyOK)
  153. .Run(PlaceWithHeaterStep.ClosePMSlitDoor, ClosePMSlitDoor, ClosePMSlitDoorIsOK)
  154. .RunIf(PlaceWithHeaterStep.CheckAwc, _queryAwc, CheckAwc)
  155. .End(PlaceWithHeaterStep.NotifyDone, NotifyPMDone, _delay_50ms);
  156. break;
  157. }
  158. return Runner.Status;
  159. }
  160. private bool TMPMPressureIsOK()
  161. {
  162. if (RouteManager.IsATMMode)
  163. {
  164. return _JetTM.IsTMATM && _JetTM.IsModuleATM(_targetModule);
  165. }
  166. else
  167. {
  168. if (Math.Abs((_pmModule.ChamberPressure - _JetTM.ChamberPressure)) < (maxPressureDifference - 2))
  169. {
  170. return true;
  171. }
  172. else
  173. {
  174. return false;
  175. }
  176. }
  177. }
  178. private bool OpenPMSlitDoor()
  179. {
  180. _JetTM.TurnMFSlitDoor(_targetModule, true, out _);
  181. return true;
  182. }
  183. private bool OpenPMSlitDoorIsOK()
  184. {
  185. return _JetTM.IsPMSlitdoorOpened(_targetModule);
  186. }
  187. private bool ClosePMSlitDoor()
  188. {
  189. return _JetTM.TurnMFSlitDoor(_targetModule, false, out _);
  190. }
  191. private bool ClosePMSlitDoorIsOK()
  192. {
  193. return _JetTM.IsPMSlitdoorClosed(_targetModule);
  194. }
  195. private bool ModulePrepare()
  196. {
  197. _pmModule.PostMsg(PMEntity.MSG.PreparePlace);
  198. return true;
  199. }
  200. private bool IsModulePrepareReady()
  201. {
  202. return _pmModule.Status == PMEntity.PMStatus.Ready_For_Place;
  203. }
  204. private bool RotateArm()
  205. {
  206. _pmModule.PostMsg(PMEntity.MSG.PreparePlace); // Notify PM to Serv pressure in advance for throughput enhancement
  207. return _robot.Goto(_JetTM.PreRotateModules[_targetModule], 0, _hand);
  208. }
  209. private bool WaitRotateDone()
  210. {
  211. if (_robot.Status == RState.Running)
  212. {
  213. return false;
  214. }
  215. else if (_robot.Status == RState.End)
  216. {
  217. return true;
  218. }
  219. else
  220. {
  221. Runner.Stop($"TM Robot Rotate Arm failed, {_robot.Status}");
  222. return true;
  223. }
  224. }
  225. private bool Placing()
  226. {
  227. if (!_jetPM.IsAllowRobotTransfer)
  228. {
  229. Runner.Stop($"不允许Place,传片位置信号不满足");
  230. return false;
  231. }
  232. if (!_jetPM.PreparePlaceIsOK())
  233. {
  234. Runner.Stop($"不允许Place,传片位置信号满足,但不在Position1");
  235. return false;
  236. }
  237. return _robot.Place(_targetModule, _targetSlot, _hand);
  238. }
  239. private bool WaitPlaceDone()
  240. {
  241. if (_robot.Status == RState.Running)
  242. {
  243. if (Runner.StepElapsedMS > _placingTimeout)
  244. {
  245. WaferManager.Instance.CreateDuplicatedWafer(ModuleName.TMRobot, (int)_hand, _targetModule, _targetSlot);
  246. Runner.Stop($"TM Robot place wafer to {_targetModule} timeout, {_placingTimeout}ms");
  247. return true;
  248. }
  249. return false;
  250. }
  251. else if (_robot.Status == RState.End && _JetTM.TMRobotNotExtendModule(_targetModule))
  252. {
  253. WaferManager.Instance.WaferMoved(ModuleName.TMRobot, (int)_hand, _targetModule, _targetSlot);
  254. return true;
  255. }
  256. else
  257. {
  258. WaferManager.Instance.CreateDuplicatedWafer(ModuleName.TMRobot, (int)_hand, _targetModule, _targetSlot);
  259. Runner.Stop($"TM Robot Place failed, {_robot.Status}");
  260. return true;
  261. }
  262. }
  263. private bool ArmExtend()
  264. {
  265. return _robot.PlaceExtend(_targetModule, _targetSlot, _hand);
  266. }
  267. private bool ArmRetract()
  268. {
  269. return _robot.PlaceRetract(_targetModule, _targetSlot, _hand);
  270. }
  271. private bool QueryAWC()
  272. {
  273. if (!_queryAwc)
  274. return true;
  275. else
  276. return _robot.QueryAwc();
  277. }
  278. private bool WaitRobotExtendDone()
  279. {
  280. if (_robot.Status == RState.Running)
  281. {
  282. return false;
  283. }
  284. else if (_robot.Status == RState.End)
  285. {
  286. return true;
  287. }
  288. else
  289. {
  290. Runner.Stop($"TM Robot Place Extend failed, {_robot.Status}");
  291. return true;
  292. }
  293. }
  294. private bool RecordAWCData()
  295. {
  296. if(!_queryAwc)
  297. return true;
  298. //已经move后的数据
  299. string _origin_module = $"LP{WaferManager.Instance.GetWafer(_targetModule, _targetSlot).OriginStation}";
  300. int _origin_slot = WaferManager.Instance.GetWafer(_targetModule, _targetSlot).OriginSlot;
  301. //查询完毕 插入数据
  302. OffsetDataRecorder.RecordOffsetData(
  303. Guid.NewGuid().ToString(),
  304. ModuleName.TMRobot, 0,
  305. _targetModule, _targetSlot,
  306. _origin_module, _origin_slot,
  307. _hand, RobotArmPan.None,
  308. _robot.Offset_X, _robot.Offset_Y, _robot.Offset_D,
  309. _starttime, DateTime.Now);
  310. return true;
  311. }
  312. private bool WaitRobotQueryDone()
  313. {
  314. if (!_queryAwc)
  315. return true;
  316. if (_robot.Status == RState.Running)
  317. {
  318. return false;
  319. }
  320. else if (_robot.Status == RState.End)
  321. {
  322. return true;
  323. }
  324. else
  325. {
  326. Runner.Stop($"TM Robot Query Awc failed, {_robot.Status}");
  327. return true;
  328. }
  329. }
  330. private bool NotifyPMPlaceWafer()
  331. {
  332. _pmModule.PostMsg(PMEntity.MSG.LiftUpWafer);
  333. return true;
  334. }
  335. private bool WaitPMWaferLiftUp()
  336. {
  337. if(_pmModule.Status == PMEntity.PMStatus.Exchange_Ready)
  338. {
  339. WaferManager.Instance.WaferMoved(ModuleName.TMRobot, (int)_hand, _targetModule, _targetSlot);
  340. return true;
  341. }
  342. else if(Runner.StepElapsedMS > _liftPinTimeout)
  343. {
  344. WaferManager.Instance.CreateDuplicatedWafer(ModuleName.TMRobot, (int)_hand, _targetModule, _targetSlot);
  345. Runner.Stop($"Wait {_targetModule} Lift Pin Up timeout, {Runner.StepElapsedMS}");
  346. }
  347. return false;
  348. }
  349. private bool WaitRobotRetractDone()
  350. {
  351. if (_robot.Status == RState.Running)
  352. {
  353. return false;
  354. }
  355. else if (_robot.Status == RState.End)
  356. {
  357. return true;
  358. }
  359. else
  360. {
  361. Runner.Stop($"TM Robot Place Retract failed, {_robot.Status}");
  362. return true;
  363. }
  364. }
  365. private bool NotifyPMDone()
  366. {
  367. _pmModule.PostMsg(PMEntity.MSG.PlaceReady);
  368. return true;
  369. }
  370. private bool PLCIsReadyOK()
  371. {
  372. return _JetTM.TMRobotNotExtendModule(_targetModule);
  373. }
  374. private bool CheckAwc()
  375. {
  376. if (Math.Abs(_robot.Offset_X) > _robotTransferAWCOffset)
  377. {
  378. Stop($"Check AWC 失败, 当前 X AWC [{_robot.Offset_X}um], 高于Alarm最大值: [{_robotTransferAWCOffset}]um");
  379. return false;
  380. }
  381. if (Math.Abs(_robot.Offset_Y) > _robotTransferAWCOffset)
  382. {
  383. Stop($"Check AWC 失败, 当前 Y AWC [{_robot.Offset_Y}um], 高于Alarm最大值: [{_robotTransferAWCOffset}]um");
  384. return false;
  385. }
  386. return true;
  387. }
  388. public void Abort()
  389. {
  390. //_robot.Halt();
  391. }
  392. }
  393. }