LoaderInstallCRSRoutine.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. using Aitex.Core.RT.Device;
  2. using Aitex.Core.RT.Log;
  3. using Aitex.Core.RT.Routine;
  4. using Aitex.Core.Util;
  5. using MECF.Framework.Common.CommonData.Loader;
  6. using MECF.Framework.Common.Equipment;
  7. using MECF.Framework.Common.Routine;
  8. using MECF.Framework.Common.Utilities;
  9. using CyberX8_Core;
  10. using CyberX8_RT.Devices.AXIS;
  11. using CyberX8_RT.Devices.AXIS.CANOpen;
  12. using CyberX8_RT.Modules.PUF;
  13. using CyberX8_RT.Modules;
  14. using System;
  15. using CyberX8_RT.Modules.Transporter;
  16. using Aitex.Core.RT.SCCore;
  17. namespace CyberX8_RT.Devices.Loader
  18. {
  19. public class LoaderInstallCRSRoutine : RoutineBase, IRoutine
  20. {
  21. private enum InstallStep
  22. {
  23. CheckPreCondition,
  24. TiltGotoVertical,
  25. TiltGotoVerticalCheck,
  26. LSGotoUnlock,
  27. LSGotoUnlockWait,
  28. ShuttleGotoIN,
  29. ShuttleGotoINWait,
  30. BernoulliBladderOn,
  31. BernoulliBladderOnCheck,
  32. BernoulliN2On,
  33. BernoulliN2OnCheck,
  34. WSBladderOn,
  35. WSBladderOnCheck,
  36. LSVacuumOn,
  37. LSVacuumOnCheck,
  38. VacuumLevelCheck,
  39. VacuumLevelCheckWait,
  40. ShuttleGotoLS,
  41. ShuttleGotoLSWait,
  42. LSGotoLock,
  43. LSGotoLockWait,
  44. BernoulliN2Off,
  45. BernoulliN2OffCheck,
  46. WSBladderOff,
  47. WSBladderOffCheck,
  48. Wait500MSForWSBladder,
  49. LSVacuumOff,
  50. LSVacuumOffCheck,
  51. Wait500MS,
  52. ShuttleGotoMID,
  53. ShuttleGotoMIDWait,
  54. HomingLSAxis,
  55. HomingLSAxisWait,
  56. CRSHomedGotoSetUp,
  57. CRSHomedGotoSetUpCheck,
  58. End
  59. }
  60. #region 内部变量
  61. private string _side = "";
  62. private JetAxisBase _lsAxis;
  63. private LoaderSideBernoulliBladderRoutine _bernoulliBladderRoutine;
  64. private LoaderSideBernoulliN2PressureRoutine _bernoulliN2PressureRoutine;
  65. private LoaderSideVacuumRoutine _vacuumRoutine;
  66. private LoaderSideVacuumLevelCheckRoutine _vacuumLevelCheckRoutine;
  67. private LoaderSideWhBladderRoutine _whBladderRoutine;
  68. private JetAxisBase _shuttleAxis;
  69. private JetAxisBase _tiltAxis;
  70. private JetAxisBase _rotationAxis;
  71. private LoaderCommonDevice _loaderCommonDevice;
  72. private LoaderSideDevice _sideDevice;
  73. /// <summary>
  74. /// WaferSize
  75. /// </summary>
  76. private int _waferSize;
  77. #endregion
  78. /// <summary>
  79. /// 构造函数
  80. /// </summary>
  81. /// <param name="module"></param>
  82. public LoaderInstallCRSRoutine(string module,string side) : base(module)
  83. {
  84. _side = side;
  85. }
  86. /// <summary>
  87. /// 中止
  88. /// </summary>
  89. public void Abort()
  90. {
  91. Runner.Stop("Manual Abort");
  92. }
  93. /// <summary>
  94. /// 监控
  95. /// </summary>
  96. /// <returns></returns>
  97. public RState Monitor()
  98. {
  99. Runner.Run(InstallStep.CheckPreCondition, CheckPreCondition, _delay_1ms)
  100. //1. Tilt Goto Vertical
  101. .Run(InstallStep.TiltGotoVertical, () => { return _tiltAxis.PositionStation("VERT"); }, NullFun, _delay_1ms)
  102. .WaitWithStopCondition(InstallStep.TiltGotoVerticalCheck, () => { return _tiltAxis.Status == RState.End; },
  103. () => { return _tiltAxis.Status == RState.Failed; })
  104. //2. LS Goto Unlock
  105. .Run(InstallStep.LSGotoUnlock, () => { return _lsAxis.PositionStation($"Unlock{_waferSize}"); }, NullFun, _delay_1ms)
  106. .WaitWithStopCondition(InstallStep.LSGotoUnlockWait, () => { return _lsAxis.Status == RState.End; },
  107. () => { return _lsAxis.Status == RState.Failed; })
  108. //3. Shuttle Goto IN
  109. .Run(InstallStep.ShuttleGotoIN, () => { return _shuttleAxis.PositionStation("IN"); }, NullFun, _delay_1ms)
  110. .WaitWithStopCondition(InstallStep.ShuttleGotoINWait, () => { return _shuttleAxis.Status == RState.End; },
  111. () => { return _shuttleAxis.Status == RState.Failed; })
  112. //4. BernoulliBladder On
  113. .Run(InstallStep.BernoulliBladderOn, () => { return _bernoulliBladderRoutine.Start(true) == RState.Running; }, _delay_1ms)
  114. .WaitWithStopCondition(InstallStep.BernoulliBladderOnCheck, () => { return CommonFunction.CheckRoutineEndState(_bernoulliBladderRoutine); },
  115. () => CheckRoutineStopStatus(_bernoulliBladderRoutine, "BernoulliBladder On failed"))
  116. //5. Bernoulli N2 On
  117. .Run(InstallStep.BernoulliN2On, () => { return _bernoulliN2PressureRoutine.Start(true) == RState.Running; }, _delay_1ms)
  118. .WaitWithStopCondition(InstallStep.BernoulliN2OnCheck, () => { return CommonFunction.CheckRoutineEndState(_bernoulliN2PressureRoutine); },
  119. () => CheckRoutineStopStatus(_bernoulliN2PressureRoutine, " BernoulliN2 On failed"))
  120. //6. WS Bladder On
  121. .Run(InstallStep.WSBladderOn, () => { return _whBladderRoutine.Start(true) == RState.Running; }, _delay_1ms)
  122. .WaitWithStopCondition(InstallStep.WSBladderOnCheck, () => { return CommonFunction.CheckRoutineEndState(_whBladderRoutine); },
  123. () => CheckRoutineStopStatus(_whBladderRoutine, "WSBladder On failed"))
  124. //7. LS Vacuum On
  125. .Run(InstallStep.LSVacuumOn, () => { return _vacuumRoutine.Start(true) == RState.Running; }, _delay_1ms)
  126. .WaitWithStopCondition(InstallStep.LSVacuumOnCheck, () => { return CommonFunction.CheckRoutineEndState(_vacuumRoutine); },
  127. () => CheckRoutineStopStatus(_vacuumRoutine, "LS Vacuum On failed"))
  128. //8. LS Vacuum Level Check
  129. .Run(InstallStep.VacuumLevelCheck, () => { return _vacuumLevelCheckRoutine.Start(true) == RState.Running; }, _delay_1ms)
  130. .WaitWithStopCondition(InstallStep.VacuumLevelCheckWait, () => { return CommonFunction.CheckRoutineEndState(_vacuumLevelCheckRoutine); },
  131. () => CheckRoutineStopStatus(_vacuumLevelCheckRoutine, "LS Vacuum Level Check failed"))
  132. //9. Shuttle Goto LS
  133. .Run(InstallStep.ShuttleGotoLS, () => { return _shuttleAxis.PositionStation("LS"); }, NullFun, _delay_1ms)
  134. .WaitWithStopCondition(InstallStep.ShuttleGotoLSWait, () => { return _shuttleAxis.Status == RState.End; },
  135. () => { return _shuttleAxis.Status == RState.Failed; })
  136. //10. LS Goto Lock
  137. .Run(InstallStep.LSGotoLock, () => {
  138. return _lsAxis.PositionStation($"Lock{_waferSize}"); }, NullFun, _delay_1ms)
  139. .WaitWithStopCondition(InstallStep.LSGotoLockWait, () => { return _lsAxis.Status!=RState.Running; },
  140. () => { return false; })
  141. //11. Bernoulli N2 Off
  142. .Run(InstallStep.BernoulliN2Off, () => { return _bernoulliN2PressureRoutine.Start(false) == RState.Running; }, _delay_1ms)
  143. .WaitWithStopCondition(InstallStep.BernoulliN2OffCheck, () => { return CommonFunction.CheckRoutineEndState(_bernoulliN2PressureRoutine); },
  144. () => CheckRoutineStopStatus(_bernoulliN2PressureRoutine, " BernoulliN2 Off failed"))
  145. //12. WS Bladder Off
  146. .Run(InstallStep.WSBladderOff, () => { return _whBladderRoutine.Start(false) == RState.Running; }, _delay_1ms)
  147. .WaitWithStopCondition(InstallStep.WSBladderOffCheck, () => { return CommonFunction.CheckRoutineEndState(_whBladderRoutine); },
  148. () => CheckRoutineStopStatus(_whBladderRoutine, "WSBladder Off failed"))
  149. //13. Wait 0.5s for WS Bladder
  150. .Delay(InstallStep.Wait500MSForWSBladder, 500)
  151. //14. LS Vacuum Off
  152. .Run(InstallStep.LSVacuumOff, () => { return _vacuumRoutine.Start(false) == RState.Running; }, _delay_1ms)
  153. .WaitWithStopCondition(InstallStep.LSVacuumOffCheck, () => { return CommonFunction.CheckRoutineEndState(_vacuumRoutine); },
  154. () => CheckRoutineStopStatus(_vacuumRoutine, "LS Vacuum Off failed"))
  155. //15. Wait 0.5s
  156. .Delay(InstallStep.Wait500MS, 500)
  157. //16. Shuttle Goto MID
  158. .Run(InstallStep.ShuttleGotoMID, () => { return _shuttleAxis.PositionStation("MID"); }, NullFun, _delay_1ms)
  159. .WaitWithStopCondition(InstallStep.ShuttleGotoMIDWait, () => { return _shuttleAxis.Status == RState.End; },
  160. () => { return _shuttleAxis.Status == RState.Failed; })
  161. //17. Home LS Axis,Goto
  162. .Run(InstallStep.HomingLSAxis, () => { return _lsAxis.Home(); }, _delay_1ms)
  163. .WaitWithStopCondition(InstallStep.HomingLSAxisWait, () => { return _lsAxis.Status == RState.End; },
  164. () => { return _lsAxis.Status == RState.Failed; })
  165. .Run(InstallStep.CRSHomedGotoSetUp, () => { return _lsAxis.PositionStation($"Setup{_waferSize}"); }, _delay_1ms)
  166. .WaitWithStopCondition(InstallStep.CRSHomedGotoSetUpCheck, () => { return _lsAxis.Status == RState.End; },
  167. () => CheckAxisMotionStopStatus(_lsAxis))
  168. .End(InstallStep.End, NullFun, 10);
  169. return Runner.Status;
  170. }
  171. /// <summary>
  172. /// 启动
  173. /// </summary>
  174. /// <param name="objs"></param>
  175. /// <returns></returns>
  176. /// <exception cref="NotImplementedException"></exception>
  177. public RState Start(params object[] objs)
  178. {
  179. if (SC.ContainsItem($"Loader1.{_side}WaferSize"))
  180. {
  181. _waferSize = SC.GetValue<int>($"Loader1.{_side}WaferSize");
  182. }
  183. _shuttleAxis = GetShuttleAxis();
  184. _lsAxis = GetLsAxis();
  185. _tiltAxis = GetTiltAxis();
  186. _loaderCommonDevice = DEVICE.GetDevice<LoaderCommonDevice>($"{Module}.Common");
  187. _rotationAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Rotation");
  188. _sideDevice = DEVICE.GetDevice<LoaderSideDevice>($"{Module}.{_side}");
  189. _vacuumRoutine = new LoaderSideVacuumRoutine($"{Module}.{_side}");
  190. _vacuumLevelCheckRoutine = new LoaderSideVacuumLevelCheckRoutine($"{Module}.{_side}");
  191. _whBladderRoutine = new LoaderSideWhBladderRoutine($"{Module}.{_side}");
  192. _bernoulliBladderRoutine = new LoaderSideBernoulliBladderRoutine($"{Module}.{_side}");
  193. _bernoulliN2PressureRoutine = new LoaderSideBernoulliN2PressureRoutine($"{Module}.{_side}");
  194. Runner.Start(Module, "Install LS");
  195. return RState.Running;
  196. }
  197. /// <summary>
  198. /// 检验Routine异常状态
  199. /// </summary>
  200. /// <returns></returns>
  201. private bool CheckRoutineStopStatus(IRoutine routine, string error)
  202. {
  203. bool result = CommonFunction.CheckRoutineStopState(routine);
  204. if (result)
  205. {
  206. NotifyError(eEvent.ERR_LOADER, $"{error}", 0);
  207. }
  208. return result;
  209. }
  210. /// <summary>
  211. /// 获取Shuttle轴对象
  212. /// </summary>
  213. /// <returns></returns>
  214. private JetAxisBase GetShuttleAxis()
  215. {
  216. switch (_side)
  217. {
  218. case "SideA":
  219. return DEVICE.GetDevice<JetAxisBase>($"{Module}.ShuttleA");
  220. default:
  221. return DEVICE.GetDevice<JetAxisBase>($"{Module}.ShuttleB");
  222. }
  223. }
  224. /// <summary>
  225. /// 获取CRS轴对象
  226. /// </summary>
  227. /// <returns></returns>
  228. private JetAxisBase GetLsAxis()
  229. {
  230. switch (_side)
  231. {
  232. case "SideA":
  233. return DEVICE.GetDevice<JetAxisBase>($"{Module}.LSA");
  234. default:
  235. return DEVICE.GetDevice<JetAxisBase>($"{Module}.LSB");
  236. }
  237. }
  238. /// <summary>
  239. /// 获取Tilt轴对象
  240. /// </summary>
  241. /// <returns></returns>
  242. private JetAxisBase GetTiltAxis()
  243. {
  244. switch (_side)
  245. {
  246. case "SideA":
  247. return DEVICE.GetDevice<JetAxisBase>($"{Module}.TiltA");
  248. default:
  249. return DEVICE.GetDevice<JetAxisBase>($"{Module}.TiltB");
  250. }
  251. }
  252. /// <summary>
  253. /// 检验前置条件
  254. /// </summary>
  255. /// <returns></returns>
  256. private bool CheckPreCondition()
  257. {
  258. if (!CheckHomeCondition())
  259. {
  260. return false;
  261. }
  262. if (!CheckInstallCRSAxisCondition())
  263. {
  264. return false;
  265. }
  266. if (!InstallCRSStatusCheck())
  267. {
  268. return false;
  269. }
  270. return true;
  271. }
  272. /// <summary>
  273. /// 检验Home条件
  274. /// </summary>
  275. /// <returns></returns>
  276. private bool CheckHomeCondition()
  277. {
  278. //检验PUF、Loader Transporter,Robot均Homed
  279. //Efem Home
  280. if (ModuleHelper.IsInstalled(ModuleName.EFEM))
  281. {
  282. EfemEntity efemEntity = Singleton<RouteManager>.Instance.GetModule<EfemEntity>(ModuleName.EFEM.ToString());
  283. if (!efemEntity.IsHomed)
  284. {
  285. LOG.WriteLog(eEvent.ERR_EFEM_ROBOT, Module, $"{ModuleName.EFEM.ToString()} is not home, Cannot execute GotoSavedPosition");
  286. return false;
  287. }
  288. }
  289. if (ModuleHelper.IsInstalled(ModuleName.PUF1))
  290. {
  291. PUFEntity puf1Entity = Singleton<RouteManager>.Instance.GetModule<PUFEntity>(ModuleName.PUF1.ToString());
  292. if (!puf1Entity.IsHomed)
  293. {
  294. NotifyError(eEvent.ERR_LOADER, "PUF1 is not homed", -1);
  295. return false;
  296. }
  297. }
  298. if (ModuleHelper.IsInstalled(ModuleName.Transporter2))
  299. {
  300. TransporterEntity loaderTransportEntity = Singleton<RouteManager>.Instance.GetModule<TransporterEntity>(ModuleName.Transporter2.ToString());
  301. if (!loaderTransportEntity.IsHomed)
  302. {
  303. NotifyError(eEvent.ERR_LOADER, "Loader Transporter is not homed", -1);
  304. return false;
  305. }
  306. }
  307. return true;
  308. }
  309. /// <summary>
  310. /// 检验Axis条件
  311. /// </summary>
  312. /// <param name="side"></param>
  313. /// <returns></returns>
  314. private bool CheckInstallCRSAxisCondition()
  315. {
  316. if (!_rotationAxis.IsHomed)
  317. {
  318. NotifyError(eEvent.ERR_LOADER, $"Rotation is not homed", -1);
  319. return false;
  320. }
  321. if (!_shuttleAxis.IsHomed)
  322. {
  323. NotifyError(eEvent.ERR_LOADER, $"{_shuttleAxis.Name} is not homed", -1);
  324. return false;
  325. }
  326. if (!_tiltAxis.IsHomed)
  327. {
  328. NotifyError(eEvent.ERR_LOADER, $"{_tiltAxis.Name} is not homed", -1);
  329. return false;
  330. }
  331. if (!_lsAxis.IsHomed)
  332. {
  333. NotifyError(eEvent.ERR_LOADER, $"{_lsAxis.Name} is not homed", -1);
  334. return false;
  335. }
  336. //LS已经运动到 Setup 位
  337. double crsPosition = _lsAxis.MotionData.MotorPosition;
  338. if (!_lsAxis.CheckPositionIsInStation(crsPosition, $"Setup{_waferSize}"))
  339. {
  340. NotifyError(eEvent.ERR_LOADER, $"LS {crsPosition} not in Setup{_waferSize}", -1);
  341. return false;
  342. }
  343. //Rotation已经运动到 loaderA 位(sideA 下片时)或 loaderB 位(sideB 下片时)
  344. double rotationPosition = _rotationAxis.MotionData.MotorPosition;
  345. if (_side == "SideA")
  346. {
  347. if (!_rotationAxis.CheckPositionIsInStation(rotationPosition, $"LOADA{_waferSize}"))
  348. {
  349. NotifyError(eEvent.ERR_LOADER, $"Rotation {rotationPosition} not in LOADA{_waferSize}", -1);
  350. return false;
  351. }
  352. }
  353. else
  354. {
  355. if (!_rotationAxis.CheckPositionIsInStation(rotationPosition, $"LOADB{_waferSize}"))
  356. {
  357. NotifyError(eEvent.ERR_LOADER, $"Rotation {rotationPosition} not in LOADB{_waferSize}", -1);
  358. return false;
  359. }
  360. }
  361. //Shuttle已经运动到除 IN 外任何位置
  362. double shuttlePosition = _shuttleAxis.MotionData.MotorPosition;
  363. if (_shuttleAxis.CheckPositionIsInStation(shuttlePosition, "IN"))
  364. {
  365. NotifyError(eEvent.ERR_LOADER, $"Shuttle {shuttlePosition} is in IN", -1);
  366. return false;
  367. }
  368. return true;
  369. }
  370. /// <summary>
  371. /// 检验Status条件
  372. /// </summary>
  373. /// <param name="side"></param>
  374. /// <returns></returns>
  375. private bool InstallCRSStatusCheck()
  376. {
  377. LoaderSideData sideData = _sideDevice.SideData;
  378. LoaderCommonData commonData = _loaderCommonDevice.CommonData;
  379. //Bernoulli Bladder(Bernoulli Bladder any state)
  380. //if (!sideData.BernoulliBladder)
  381. //{
  382. // NotifyError(eEvent.ERR_LOADER, "Bernoulli Bladder is off", -1);
  383. // return false;
  384. //}
  385. //Bernoulli N2(BernoulliN2 any state)
  386. //if (sideData.BernoulliN2)
  387. //{
  388. // NotifyError(eEvent.ERR_LOADER, "Bernoulli N2 is on", -1);
  389. // return false;
  390. //}
  391. //CRS Vacuum检验(Vacuum off)
  392. if (sideData.CRSVacuum)
  393. {
  394. LOG.WriteLog(eEvent.ERR_LOADER, Module, "LS Vacuum is on");
  395. return false;
  396. }
  397. //Wafer Shuttle Present
  398. if (!commonData.WaferHolderPresent)
  399. {
  400. LOG.WriteLog(eEvent.ERR_LOADER, Module, "Wafer Shuttle is absent");
  401. return false;
  402. }
  403. //WS Clamp On any state
  404. //if (!commonData.WaferHolderClamp)
  405. //{
  406. // NotifyError(eEvent.ERR_LOADER, "Wafer Shuttle Clamp is off", -1);
  407. // return false;
  408. //}
  409. //WS Bladder off
  410. //if (sideData.WHBladder)
  411. //{
  412. // LOG.WriteLog(eEvent.ERR_LOADER, Module, "WS Bladder is on");
  413. // return false;
  414. //}
  415. //Drip Tray Fluid(正常)
  416. if (commonData.DripTrayFluid)
  417. {
  418. LOG.WriteLog(eEvent.ERR_LOADER, Module, "Drip Tray Fluid is on");
  419. return false;
  420. }
  421. return true;
  422. }
  423. /// <summary>
  424. /// Axis goto position
  425. /// </summary>
  426. /// <param name="axis"></param>
  427. /// <param name="station"></param>
  428. /// <returns></returns>
  429. private bool AxisPosition(JetAxisBase axis, string station)
  430. {
  431. bool result = axis.PositionStation(station);
  432. if (!result)
  433. {
  434. NotifyError(eEvent.ERR_LOADER, $"{axis.Module} goto {station} failed", 0);
  435. }
  436. return result;
  437. }
  438. /// <summary>
  439. /// 检验电机运动异常状态
  440. /// </summary>
  441. /// <param name="axis"></param>
  442. /// <returns></returns>
  443. private bool CheckAxisMotionStopStatus(JetAxisBase axis)
  444. {
  445. bool result = axis.Status == RState.Failed || axis.Status == RState.Timeout;
  446. if (result)
  447. {
  448. NotifyError(eEvent.ERR_LOADER, $"{axis.Module} motion failed", 0);
  449. }
  450. return result;
  451. }
  452. }
  453. }