MFPMPickRoutine.cs 15 KB

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