PufSwapRoutine.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. using Aitex.Core.Common;
  2. using Aitex.Core.RT.DataCenter;
  3. using Aitex.Core.RT.Device;
  4. using Aitex.Core.RT.Log;
  5. using Aitex.Core.RT.Routine;
  6. using Aitex.Core.Util;
  7. using MECF.Framework.Common.DBCore;
  8. using MECF.Framework.Common.Equipment;
  9. using MECF.Framework.Common.Routine;
  10. using MECF.Framework.Common.SubstrateTrackings;
  11. using MECF.Framework.Common.Utilities;
  12. using MECF.Framework.Common.WaferHolder;
  13. using CyberX8_Core;
  14. using CyberX8_RT.Devices.AXIS;
  15. using CyberX8_RT.Devices.Loader;
  16. using CyberX8_RT.Devices.PUF;
  17. using CyberX8_RT.Modules.Loader;
  18. using System;
  19. using System.Collections.Generic;
  20. using System.Linq;
  21. using System.Reflection;
  22. using System.Text;
  23. using System.Threading.Tasks;
  24. namespace CyberX8_RT.Modules.PUF
  25. {
  26. public class PufSwapRoutine : RoutineBase, IRoutine
  27. {
  28. private enum SwapStep
  29. {
  30. CheckPreStatus,
  31. RotationLoaderPickup,
  32. RotationLoaderPickupWait,
  33. ChuckOut,
  34. CheckChuckOut,
  35. SideAVacuumOn,
  36. ChuckIn,
  37. CheckChuckIn,
  38. StickDistanceCheck,
  39. RotationFlip,
  40. WaitRotationFlip,
  41. FlipSideB,
  42. WaitFlipSideB,
  43. PlaceToLoader,
  44. PlaceToLoaderWait,
  45. End
  46. }
  47. #region 常量
  48. private const string CURRENT_STATION_LIST = "CurrentStationList";
  49. private const string WAFER_PRESENT = "WaferPresent";
  50. private const string SIDE_A = "SideA";
  51. #endregion
  52. #region 内部变量
  53. private LoaderEntity _loaderEntity;
  54. private JetAxisBase _flipAxis;
  55. private JetAxisBase _rotationAxis;
  56. private LoaderSideDevice _loaderSide;
  57. private PufVacuum _vacuum;
  58. private PufDistanceSensor _distanceSensor;
  59. private PufPlaceToLoaderRoutine _placeToLoaderRoutine;
  60. private PufChuckRoutine _chuckRoutine;
  61. #endregion
  62. /// <summary>
  63. /// 构造函数
  64. /// </summary>
  65. /// <param name="module"></param>
  66. public PufSwapRoutine(string module) : base(module)
  67. {
  68. _placeToLoaderRoutine = new PufPlaceToLoaderRoutine(Module);
  69. _chuckRoutine = new PufChuckRoutine(Module);
  70. }
  71. /// <summary>
  72. /// 中止
  73. /// </summary>
  74. public void Abort()
  75. {
  76. Runner.Stop("Manual Abort");
  77. }
  78. /// <summary>
  79. /// 监控
  80. /// </summary>
  81. /// <returns></returns>
  82. public RState Monitor()
  83. {
  84. Runner.Run(SwapStep.CheckPreStatus, CheckCondition, _delay_1ms)
  85. .Run(SwapStep.RotationLoaderPickup, () => { return AxisGotoPosition(_rotationAxis, "LoaderPickup", 0); }, _delay_1ms)
  86. .WaitWithStopCondition(SwapStep.RotationLoaderPickupWait, () => { return _rotationAxis.Status == RState.End; },
  87. () => { return CheckRotationStopStatus(0); })
  88. .Run(SwapStep.ChuckOut, () => { return _chuckRoutine.Start(true) == RState.Running; }, NullFun, 100)
  89. .WaitWithStopCondition(SwapStep.CheckChuckOut, () => CommonFunction.CheckRoutineEndState(_chuckRoutine),
  90. () => { return CheckChuckRoutineStopStatus(true, 0); })
  91. .Run(SwapStep.SideAVacuumOn, SideAVacuumOn, CheckSideAWaferPresent, 5000)
  92. .Wait(SwapStep.StickDistanceCheck, CheckStickDistanceStatus, 1000)
  93. .Run(SwapStep.ChuckIn, () => { return _chuckRoutine.Start(false) == RState.Running; }, NullFun, 100)
  94. .WaitWithStopCondition(SwapStep.CheckChuckOut, () => CommonFunction.CheckRoutineEndState(_chuckRoutine),
  95. () => { return CheckChuckRoutineStopStatus(false, 1); })
  96. .Run(SwapStep.RotationFlip, () => { return AxisGotoPosition(_rotationAxis,"Flip",1); }, _delay_1ms)
  97. .WaitWithStopCondition(SwapStep.WaitRotationFlip, () => { return _rotationAxis.Status == RState.End; },
  98. () => { return CheckRotationStopStatus(1); })
  99. .Run(SwapStep.FlipSideB, () => { return AxisGotoPosition(_flipAxis,"SideB", 1); }, _delay_1ms)
  100. .WaitWithStopCondition(SwapStep.WaitFlipSideB, () => { return _flipAxis.Status == RState.End; },
  101. () => { return CheckFlipStopStatus(1); })
  102. .Run(SwapStep.PlaceToLoader, () => _placeToLoaderRoutine.Start("SideB") == RState.Running, _delay_1ms)
  103. .WaitWithStopCondition(SwapStep.PlaceToLoaderWait, ()=>CommonFunction.CheckRoutineEndState(_placeToLoaderRoutine),
  104. CheckPlaceToRoutineStopStatus)
  105. .End(SwapStep.End, NullFun, _delay_1ms);
  106. return Runner.Status;
  107. }
  108. /// <summary>
  109. /// Side a打开真空
  110. /// </summary>
  111. /// <returns></returns>
  112. private bool SideAVacuumOn()
  113. {
  114. bool result= _vacuum.VacuumAOn();
  115. if (!result)
  116. {
  117. NotifyError(eEvent.ERR_PUF, "side A Vacuum on failed", 0);
  118. }
  119. return result;
  120. }
  121. /// <summary>
  122. /// 检验SideA是否存在Wafer
  123. /// </summary>
  124. /// <returns></returns>
  125. private bool CheckSideAWaferPresent()
  126. {
  127. bool result= _vacuum.ChuckAVacuumStatus == WAFER_PRESENT;
  128. if(result)
  129. {
  130. LoaderEntity loaderEntity = Singleton<RouteManager>.Instance.GetModule<LoaderEntity>(ModuleName.Loader1.ToString());
  131. if(loaderEntity!=null)
  132. {
  133. WaferHolderInfo waferHolder = loaderEntity.WaferHolderInfo;
  134. if(_loaderSide.Name==SIDE_A)
  135. {
  136. if (WaferManager.Instance.CheckHasWafer(ModuleName.Loader1, 0))
  137. {
  138. WaferManager.Instance.WaferMoved(ModuleName.Loader1, 0, ModuleHelper.Converter(Module), 0);
  139. }
  140. else
  141. {
  142. NotifyError(eEvent.ERR_PUF, "Loader sideA has no wafer",0);
  143. return false;
  144. }
  145. }
  146. else
  147. {
  148. if (WaferManager.Instance.CheckHasWafer(ModuleName.Loader1, 1))
  149. {
  150. WaferManager.Instance.WaferMoved(ModuleName.Loader1, 1, ModuleHelper.Converter(Module), 0);
  151. }
  152. else
  153. {
  154. NotifyError(eEvent.ERR_PUF, "Loader sideA has no wafer", 0);
  155. return false;
  156. }
  157. }
  158. }
  159. }
  160. return result;
  161. }
  162. /// <summary>
  163. /// Stick Distance检验结果
  164. /// </summary>
  165. /// <returns></returns>
  166. private bool CheckStickDistanceStatus()
  167. {
  168. bool result= _distanceSensor.CheckStickDistanceStatus();
  169. if (!result)
  170. {
  171. NotifyError(eEvent.ERR_PUF, "check stick distance failed", 0);
  172. }
  173. return result;
  174. }
  175. /// <summary>
  176. /// Axis goto position
  177. /// </summary>
  178. /// <param name="axis"></param>
  179. /// <param name="position"></param>
  180. /// <param name="index"></param>
  181. /// <returns></returns>
  182. private bool AxisGotoPosition(JetAxisBase axis,string position,int index)
  183. {
  184. bool result = axis.PositionStation(position);
  185. if(!result)
  186. {
  187. NotifyError(eEvent.ERR_PUF, $"{axis.Module} goto {position} failed",index);
  188. }
  189. return result;
  190. }
  191. /// <summary>
  192. /// 检验Flip异常状态
  193. /// </summary>
  194. /// <returns></returns>
  195. private bool CheckFlipStopStatus(int index)
  196. {
  197. bool result = _flipAxis.Status == RState.Failed || _flipAxis.Status == RState.Timeout;
  198. if (result)
  199. {
  200. NotifyError(eEvent.ERR_PUF, "flip motion failed", index);
  201. }
  202. return result;
  203. }
  204. /// <summary>
  205. /// 检验Rotation异常状态
  206. /// </summary>
  207. /// <returns></returns>
  208. private bool CheckRotationStopStatus(int index)
  209. {
  210. bool result = _rotationAxis.Status == RState.Failed || _rotationAxis.Status == RState.Timeout;
  211. if (result)
  212. {
  213. NotifyError(eEvent.ERR_PUF, "rotation motion failed", index);
  214. }
  215. return result;
  216. }
  217. /// <summary>
  218. /// 检验PlaceToLoader异常状态
  219. /// </summary>
  220. /// <returns></returns>
  221. private bool CheckChuckRoutineStopStatus(bool chuck,int index)
  222. {
  223. bool result = CommonFunction.CheckRoutineStopState(_chuckRoutine);
  224. string chuckContent = chuck ? "Chuck Out" : "Chuck In";
  225. if (result)
  226. {
  227. NotifyError(eEvent.ERR_PUF,$"{chuckContent} failed", index);
  228. }
  229. return result;
  230. }
  231. /// <summary>
  232. /// 检验PlaceToLoader异常状态
  233. /// </summary>
  234. /// <returns></returns>
  235. private bool CheckPlaceToRoutineStopStatus()
  236. {
  237. bool result = CommonFunction.CheckRoutineStopState(_placeToLoaderRoutine);
  238. if (result)
  239. {
  240. NotifyError(eEvent.ERR_PUF, "place wafer failed", 2);
  241. }
  242. return result;
  243. }
  244. /// <summary>
  245. /// 启动
  246. /// </summary>
  247. /// <param name="objs"></param>
  248. /// <returns></returns>
  249. public RState Start(params object[] objs)
  250. {
  251. InitializeParameters();
  252. return Runner.Start(Module, "Start Swap");
  253. }
  254. /// <summary>
  255. /// 初始化参数
  256. /// </summary>
  257. private void InitializeParameters()
  258. {
  259. _loaderEntity = Singleton<RouteManager>.Instance.GetModule<LoaderEntity>(ModuleName.Loader1.ToString());
  260. _flipAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Flip");
  261. _rotationAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Rotation");
  262. _vacuum = DEVICE.GetDevice<PufVacuum>($"{Module}.Vacuum");
  263. _distanceSensor = DEVICE.GetDevice<PufDistanceSensor>($"{Module}.DistanceSensor");
  264. GetLoaderSide();
  265. }
  266. /// <summary>
  267. /// 检验条件
  268. /// </summary>
  269. /// <returns></returns>
  270. private bool CheckCondition()
  271. {
  272. //Loader1.Rotation 在LOADA
  273. bool isLoaderInstall = ModuleHelper.IsInstalled(ModuleName.Loader1);
  274. if (isLoaderInstall)
  275. {
  276. JetAxisBase loaderRotationAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.Rotation");
  277. double loaderRotationPosition = loaderRotationAxis.MotionData.MotorPosition;
  278. if (!loaderRotationAxis.CheckPositionIsInStation(loaderRotationPosition, "LOADA"))
  279. {
  280. NotifyError(eEvent.ERR_PUF, $"Loader Rotation {loaderRotationPosition} is not in LOADA",-1);
  281. return false;
  282. }
  283. if (Module == ModuleName.PUF1.ToString())
  284. {
  285. //Loader1.SwingA 在Open
  286. JetAxisBase loaderShuttleAAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.ShuttleA");
  287. double loaderShuttleAPosition = loaderShuttleAAxis.MotionData.MotorPosition;
  288. if (!loaderShuttleAAxis.CheckPositionIsInStation(loaderShuttleAPosition, "OPEN"))
  289. {
  290. NotifyError(eEvent.ERR_PUF, $"Loader ShuttleA {loaderShuttleAPosition} is not in OPEN",-1);
  291. return false;
  292. }
  293. //Loader1.TiltA 在HORI
  294. JetAxisBase loaderTiltAAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.TiltA");
  295. double loaderTiltAPosition = loaderTiltAAxis.MotionData.MotorPosition;
  296. if (!loaderTiltAAxis.CheckPositionIsInStation(loaderTiltAPosition, "HORI"))
  297. {
  298. NotifyError(eEvent.ERR_PUF, $"Loader TiltA {loaderTiltAPosition} is not in HORI",-1);
  299. return false;
  300. }
  301. }
  302. //Loader Handle Wafer状态确认
  303. // Lip Seal Vacuum "ON"
  304. if (!_loaderSide.SideData.CRSVacuum)
  305. {
  306. NotifyError(eEvent.ERR_PUF, "Loader1 LS Vacuum is off",-1);
  307. return false;
  308. }
  309. //Bernoulli Bladder "ON",Retracted Green Light
  310. if (!_loaderSide.SideData.BernoulliBladder)
  311. {
  312. NotifyError(eEvent.ERR_PUF, "Loader1 Bernoulli Bladder is off",-1);
  313. return false;
  314. }
  315. if (_loaderSide.SideData.BernoulliExtended)
  316. {
  317. NotifyError(eEvent.ERR_PUF, "Loader1 Bernoulli Retracted is off",-1);
  318. return false;
  319. }
  320. //其他SideA/B均为OFF
  321. if (_loaderSide.SideData.BernoulliN2)
  322. {
  323. NotifyError(eEvent.ERR_PUF, "Loader1 Bernoulli N2 is on",-1);
  324. return false;
  325. }
  326. if (!_loaderSide.SideData.DoorUnlock)
  327. {
  328. NotifyError(eEvent.ERR_PUF, "Loader1 Door is Locked",-1);
  329. return false;
  330. }
  331. //if (_loaderSide.SideData.WHBladder)
  332. //{
  333. // NotifyError(eEvent.ERR_PUF,, "Loader1 WS Bladder is on");
  334. // return false;
  335. //}
  336. if (_loaderSide.SideData.TransBladder)
  337. {
  338. NotifyError(eEvent.ERR_PUF, "Loader1 Translate Bladder is on",-1);
  339. return false;
  340. }
  341. if (_loaderSide.SideData.TransHigh)
  342. {
  343. NotifyError(eEvent.ERR_PUF, "Loader1 Translate High Pre is on",-1);
  344. return false;
  345. }
  346. }
  347. double rotaionPosition = _rotationAxis.MotionData.MotorPosition;
  348. if (_rotationAxis.CheckPositionIsEmpty(rotaionPosition))
  349. {
  350. NotifyError(eEvent.ERR_PUF, $"rotation axis {rotaionPosition} is not at Station",-1);
  351. return false;
  352. }
  353. double flipPosition = _flipAxis.MotionData.MotorPosition;
  354. if (_flipAxis.CheckPositionIsEmpty(flipPosition))
  355. {
  356. NotifyError(eEvent.ERR_PUF, $"flip axis {flipPosition} is not at Station",-1);
  357. return false;
  358. }
  359. //A面
  360. if (_loaderSide.Name == SIDE_A)
  361. {
  362. if (WaferManager.Instance.CheckNoWafer(ModuleName.Loader1, 0))
  363. {
  364. NotifyError(eEvent.ERR_PUF, "loader side A has no wafer",-1);
  365. return false;
  366. }
  367. }
  368. else
  369. {
  370. if (WaferManager.Instance.CheckNoWafer(ModuleName.Loader1, 1))
  371. {
  372. NotifyError(eEvent.ERR_PUF, "loader side B has no wafer",-1);
  373. return false;
  374. }
  375. }
  376. return true;
  377. }
  378. /// <summary>
  379. /// 获取LoaderSide
  380. /// </summary>
  381. private void GetLoaderSide()
  382. {
  383. if (Module == ModuleName.PUF1.ToString())
  384. {
  385. _loaderSide = DEVICE.GetDevice<LoaderSideDevice>($"{ModuleName.Loader1}.SideA");
  386. }
  387. else
  388. {
  389. _loaderSide = DEVICE.GetDevice<LoaderSideDevice>($"{ModuleName.Loader1}.SideB");
  390. }
  391. }
  392. /// <summary>
  393. /// 重试
  394. /// </summary>
  395. /// <param name="step"></param>
  396. public RState Retry(int step)
  397. {
  398. InitializeParameters();
  399. List<Enum> preStepIds = new List<Enum>();
  400. if (step == 0||step==-1)
  401. {
  402. return Runner.Retry(SwapStep.CheckPreStatus, preStepIds, Module, "Swap Retry");
  403. }
  404. else if (step == 1)
  405. {
  406. AddPreSteps(SwapStep.CheckChuckIn, preStepIds);
  407. return Runner.Retry(SwapStep.ChuckIn, preStepIds, Module, $"Swap step {SwapStep.ChuckIn} Retry");
  408. }
  409. else
  410. {
  411. AddPreSteps(SwapStep.PlaceToLoader, preStepIds);
  412. return Runner.Retry(SwapStep.PlaceToLoader, preStepIds, Module, $"Swap step {SwapStep.PlaceToLoader} Retry");
  413. }
  414. }
  415. /// <summary>
  416. /// 忽略前
  417. /// </summary>
  418. /// <param name="step"></param>
  419. /// <param name="preStepIds"></param>
  420. private void AddPreSteps(SwapStep step, List<Enum> preStepIds)
  421. {
  422. for (int i = 0; i < (int)step; i++)
  423. {
  424. preStepIds.Add((SwapStep)i);
  425. }
  426. }
  427. /// <summary>
  428. /// 检验完成情况
  429. /// </summary>
  430. /// <returns></returns>
  431. public bool CheckCompleteCondition()
  432. {
  433. if (WaferManager.Instance.CheckHasWafer(Module, 1))
  434. {
  435. NotifyError(eEvent.ERR_PUF, "Side B has wafer", 0);
  436. return false;
  437. }
  438. if (Module == ModuleName.PUF1.ToString())
  439. {
  440. if (WaferManager.Instance.CheckNoWafer(ModuleName.Loader1, 0))
  441. {
  442. NotifyError(eEvent.ERR_PUF, "Loader Side A has wafer", 0);
  443. return false;
  444. }
  445. }
  446. else
  447. {
  448. if (WaferManager.Instance.CheckNoWafer(ModuleName.Loader1, 1))
  449. {
  450. NotifyError(eEvent.ERR_PUF, "Loader Side B has wafer", 0);
  451. return false;
  452. }
  453. }
  454. return true;
  455. }
  456. }
  457. }