PufSwapRoutine.cs 19 KB

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