LoaderLoadSideRoutine.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476
  1. using Aitex.Core.RT.Device;
  2. using Aitex.Core.RT.Routine;
  3. using MECF.Framework.Common.Equipment;
  4. using MECF.Framework.Common.Routine;
  5. using CyberX8_Core;
  6. using CyberX8_RT.Devices.AXIS;
  7. using CyberX8_RT.Devices.Loader;
  8. using System;
  9. using System.Collections.Generic;
  10. using System.Linq;
  11. using System.Text;
  12. using System.Threading.Tasks;
  13. using MECF.Framework.Common.Utilities;
  14. using Aitex.Core.RT.Log;
  15. using MECF.Framework.Common.CommonData.Loader;
  16. using CyberX8_RT.Modules.Dryer;
  17. using MECF.Framework.Common.Persistent.Temperature;
  18. using MECF.Framework.Common.WaferHolder;
  19. using Aitex.Core.Common;
  20. using Aitex.Core.RT.SCCore;
  21. namespace CyberX8_RT.Modules.Loader
  22. {
  23. public class LoaderLoadSideRoutine : RoutineBase, IRoutine
  24. {
  25. private enum LoadStep
  26. {
  27. SideLoad,
  28. SideAllLoadWait,
  29. LeakTest,
  30. LeakTestWait,
  31. RotationGoToTRNPA,
  32. RotationGoToTRNPAWait,
  33. UnclampWaferHolder,
  34. End
  35. }
  36. #region 常量
  37. private const string SIDE_A = "SideA";
  38. private const string SIDE_B = "SideB";
  39. private const int LOTTRACK_TIME = 1000;
  40. #endregion
  41. #region 内部变量
  42. private JetAxisBase _rotationAxis;
  43. private LoaderLoadRoutine _sideLoadRoutine;
  44. private LoaderCommonDevice _loaderCommonDevice;
  45. private bool _isSideLoaded = false;
  46. private bool _isSideStop = false;
  47. /// <summary>
  48. /// lotTrack time
  49. /// </summary>
  50. private DateTime _lotTackTime = DateTime.Now;
  51. /// <summary>
  52. /// Loader Common
  53. /// </summary>
  54. private LoaderCommonDevice _loaderCommon;
  55. /// <summary>
  56. /// LoaderSide
  57. /// </summary>
  58. private LoaderSideDevice _loaderSide;
  59. /// <summary>
  60. /// Loader LotTrackData
  61. /// </summary>
  62. private List<LoaderLotTrackData> _datas = new List<LoaderLotTrackData>();
  63. /// <summary>
  64. /// Flow LotTrackData
  65. /// </summary>
  66. private List<LoaderFlowLotTrackData> _flowDatas = new List<LoaderFlowLotTrackData>();
  67. /// <summary>
  68. /// Loader Start and Finish Time
  69. /// </summary>
  70. private List<DateTime> _loadTimeList = new List<DateTime>();
  71. /// <summary>
  72. ///
  73. /// </summary>
  74. private string _side = "";
  75. /// <summary>
  76. /// WaferSize
  77. /// </summary>
  78. private int _waferSize;
  79. /// <summary>
  80. /// load是否完成
  81. /// </summary>
  82. private bool _loadComplete = false;
  83. /// <summary>
  84. /// 完成后运行
  85. /// </summary>
  86. private string _completeSide = "TRNPA";
  87. #endregion
  88. #region 属性
  89. /// <summary>
  90. /// UnLoad LotTrackData
  91. /// </summary>
  92. public List<LoaderLotTrackData> LoadLotTrackDatas { get { return _datas; } }
  93. /// <summary>
  94. /// Flow LotTrackData
  95. /// </summary>
  96. public List<LoaderFlowLotTrackData> FlowLotTrackDatas { get { return _flowDatas; } }
  97. /// <summary>
  98. /// LoadTimeList
  99. /// </summary>
  100. public List<DateTime> LoadTimeList { get { return _loadTimeList; } }
  101. #endregion
  102. /// <summary>
  103. /// 构造函数
  104. /// </summary>
  105. /// <param name="module"></param>
  106. public LoaderLoadSideRoutine(string module) : base(module)
  107. {
  108. }
  109. /// <summary>
  110. /// 中止
  111. /// </summary>
  112. public void Abort()
  113. {
  114. }
  115. /// <summary>
  116. /// 监控
  117. /// </summary>
  118. /// <returns></returns>
  119. public RState Monitor()
  120. {
  121. //记录Lot track
  122. LottrackRecord();
  123. Runner.Run(LoadStep.SideLoad, () => StartLoadRoutine(_sideLoadRoutine,_isSideLoaded), _delay_1ms)
  124. .WaitWithStopCondition(LoadStep.SideAllLoadWait, CheckLoadAllRoutineEndStatus,CheckLoadAllRoutineStopStatus)
  125. .Run(LoadStep.LeakTest, StartFlowTest, _delay_1ms)
  126. .WaitWithStopCondition(LoadStep.LeakTestWait, CheckFlowTestEndStatus, CheckFlowTestStopStatus)
  127. .RunIf(LoadStep.RotationGoToTRNPA,_loadComplete,RotationGotoTransporterA,_delay_1s)
  128. .WaitWithStopConditionIf(LoadStep.RotationGoToTRNPAWait,_loadComplete, CheckRotationPositionStatus,CheckRotationPositionRunStop)
  129. .RunIf(LoadStep.UnclampWaferHolder,_loadComplete, WaferHolderClampOffAction,_delay_1ms)
  130. .End(LoadStep.End, UpdateWaferHolderUse, _delay_1ms);
  131. return Runner.Status;
  132. }
  133. /// <summary>
  134. /// 检验Rotation移动状态
  135. /// </summary>
  136. /// <returns></returns>
  137. private bool CheckRotationPositionStatus()
  138. {
  139. return _rotationAxis.Status == RState.End;
  140. }
  141. /// <summary>
  142. /// 检验Rotation是否还在运动
  143. /// </summary>
  144. /// <returns></returns>
  145. private bool CheckRotationPositionRunStop()
  146. {
  147. bool result= _rotationAxis.Status == RState.Failed||_rotationAxis.Status==RState.Timeout;
  148. if (result)
  149. {
  150. NotifyError(eEvent.ERR_LOADER, "rotation goto position failed", 2);
  151. }
  152. return result;
  153. }
  154. /// <summary>
  155. /// 启动load routine
  156. /// </summary>
  157. /// <param name="loadRoutine"></param>
  158. /// <returns></returns>
  159. private bool StartLoadRoutine(LoaderLoadRoutine loadRoutine,bool isSideLoaded)
  160. {
  161. if (isSideLoaded)
  162. {
  163. return true;
  164. }
  165. bool result= loadRoutine.Start()==RState.Running;
  166. if (!result)
  167. {
  168. NotifyError(eEvent.ERR_LOADER, loadRoutine.ErrorMsg, 0);
  169. }
  170. return result;
  171. }
  172. /// <summary>
  173. /// 检验LoadAll完成状态
  174. /// </summary>
  175. /// <returns></returns>
  176. private bool CheckLoadAllRoutineEndStatus()
  177. {
  178. bool sideResult = true;
  179. if (!_isSideLoaded)
  180. {
  181. sideResult = CheckLoadRoutineEndStatus(_sideLoadRoutine);
  182. }
  183. if (sideResult)
  184. {
  185. _loadTimeList.Add(DateTime.Now);
  186. }
  187. return sideResult;
  188. }
  189. /// <summary>
  190. /// 检验LoadAll停止状态
  191. /// </summary>
  192. /// <returns></returns>
  193. private bool CheckLoadAllRoutineStopStatus()
  194. {
  195. bool sideComplete = false;
  196. if(!_isSideLoaded&&!_isSideStop)
  197. {
  198. RState ret = _sideLoadRoutine.Monitor();
  199. _isSideStop = ret == RState.Failed || ret == RState.Timeout;
  200. sideComplete = (ret != RState.Running);
  201. if (_isSideStop)
  202. {
  203. NotifyError(eEvent.ERR_LOADER, $"load A failed\r\n{_sideLoadRoutine.ErrorMsg}", 0);
  204. }
  205. }
  206. return _isSideStop;
  207. }
  208. /// <summary>
  209. /// 检验routine完成状态
  210. /// </summary>
  211. /// <param name="loadRoutine"></param>
  212. /// <returns></returns>
  213. private bool CheckLoadRoutineEndStatus(LoaderLoadRoutine loadRoutine)
  214. {
  215. return loadRoutine.Monitor() == RState.End;
  216. }
  217. /// <summary>
  218. /// 启动Flowtest
  219. /// </summary>
  220. /// <returns></returns>
  221. private bool StartFlowTest()
  222. {
  223. bool result= _loaderCommonDevice.StartFlowTestAction();
  224. if (!result)
  225. {
  226. NotifyError(eEvent.ERR_LOADER, "Start Flow Test failed", 1);
  227. }
  228. return result;
  229. }
  230. /// <summary>
  231. /// 检验FlowTest停止状态
  232. /// </summary>
  233. /// <returns></returns>
  234. private bool CheckFlowTestStopStatus()
  235. {
  236. if (_loaderCommonDevice.Status == RState.Failed || _loaderCommonDevice.Status == RState.Timeout)
  237. {
  238. NotifyError(eEvent.ERR_LOADER, "Flow Test failed",1);
  239. return true;
  240. }
  241. return false;
  242. }
  243. /// <summary>
  244. /// 检验FlowTest完成状态
  245. /// </summary>
  246. /// <returns></returns>
  247. private bool CheckFlowTestEndStatus()
  248. {
  249. bool result = _loaderCommonDevice.Status == RState.End;
  250. if (result)
  251. {
  252. _flowDatas = _loaderCommonDevice.FlowLotTrackDatas;
  253. }
  254. return result;
  255. }
  256. /// <summary>
  257. /// Rotation 运动至TRNPA
  258. /// </summary>
  259. /// <returns></returns>
  260. private bool RotationGotoTransporterA()
  261. {
  262. bool result = _rotationAxis.PositionStation(_completeSide, false);
  263. if (!result)
  264. {
  265. NotifyError(eEvent.ERR_LOADER, $"rotation start goto {_completeSide} failed", 2);
  266. }
  267. return result;
  268. }
  269. /// <summary>
  270. /// Wafer Holder Clamp Off
  271. /// </summary>
  272. /// <returns></returns>
  273. public bool WaferHolderClampOffAction()
  274. {
  275. bool result = _loaderCommonDevice.WaferHolderClampOffAction();
  276. if (!result)
  277. {
  278. NotifyError(eEvent.ERR_LOADER, "Wafer Shuttle Clamp Off failed", 2);
  279. }
  280. return result;
  281. }
  282. /// <summary>
  283. /// 更新WaferHolder总用量
  284. /// </summary>
  285. /// <returns></returns>
  286. private bool UpdateWaferHolderUse()
  287. {
  288. WaferHolderInfo waferHolderInfo = WaferHolderManager.Instance.GetWaferHolder("Loader");
  289. if(waferHolderInfo != null)
  290. {
  291. waferHolderInfo.TotalUses += 1;
  292. WaferHolderManager.Instance.UpdateWaferHolderInfo(waferHolderInfo);
  293. }
  294. return true;
  295. }
  296. /// <summary>
  297. /// 启动
  298. /// </summary>
  299. /// <param name="objs"></param>
  300. /// <returns></returns>
  301. public RState Start(params object[] objs)
  302. {
  303. _side = objs[0].ToString();
  304. _loadComplete=(bool)objs[1];
  305. if (objs.Length > 2)
  306. {
  307. _completeSide= objs[2].ToString();
  308. }
  309. _waferSize = SC.GetValue<int>($"Loader1.{_side}WaferSize");
  310. InitializeParameters();
  311. _loaderCommon = DEVICE.GetDevice<LoaderCommonDevice>($"{Module}.Common");
  312. _loaderSide = DEVICE.GetDevice<LoaderSideDevice>($"{Module}.{_side}");
  313. //清除lotTrack数据
  314. _datas.Clear();
  315. _flowDatas.Clear();
  316. _loadTimeList.Clear();
  317. _loadTimeList.Add(DateTime.Now);
  318. return Runner.Start(Module, "Start LoadAll");
  319. }
  320. /// <summary>
  321. /// 初始化参数
  322. /// </summary>
  323. private void InitializeParameters()
  324. {
  325. _isSideLoaded = false;
  326. _isSideStop = false;
  327. _rotationAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Rotation");
  328. _sideLoadRoutine = new LoaderLoadRoutine(ModuleName.Loader1.ToString(), _side);
  329. _loaderCommonDevice = DEVICE.GetDevice<LoaderCommonDevice>($"{ModuleName.Loader1}.Common");
  330. }
  331. /// <summary>
  332. /// 重试
  333. /// </summary>
  334. /// <param name="step"></param>
  335. public RState Retry(int step)
  336. {
  337. InitializeParameters();
  338. List<Enum> preStepIds = new List<Enum>();
  339. _datas.Clear();
  340. if (step == 0 || step == -1)
  341. {
  342. string side = _side == SIDE_A ? "A" : "B";
  343. _isSideLoaded = CheckSideLoadCondition(side, step,false);
  344. return Runner.Retry(LoadStep.SideLoad, preStepIds, Module, "LoadAll Retry");
  345. }
  346. else if (step == 1)
  347. {
  348. AddPreSteps(LoadStep.LeakTest, preStepIds);
  349. return Runner.Retry(LoadStep.LeakTest, preStepIds, Module, $"LoadAll step {LoadStep.LeakTest} start Retry");
  350. }
  351. else
  352. {
  353. AddPreSteps(LoadStep.RotationGoToTRNPA, preStepIds);
  354. return Runner.Retry(LoadStep.RotationGoToTRNPA, preStepIds, Module, $"LoadAll step {LoadStep.RotationGoToTRNPA} start Retry");
  355. }
  356. }
  357. /// <summary>
  358. /// 忽略前
  359. /// </summary>
  360. /// <param name="step"></param>
  361. /// <param name="preStepIds"></param>
  362. private void AddPreSteps(LoadStep step, List<Enum> preStepIds)
  363. {
  364. for (int i = 0; i < (int)step; i++)
  365. {
  366. preStepIds.Add((LoadStep)i);
  367. }
  368. }
  369. /// <summary>
  370. /// 检验前面Unload完成状态
  371. /// </summary>
  372. /// <returns></returns>
  373. public bool CheckCompleteCondition(int index)
  374. {
  375. string side = _side == SIDE_A ? "A" : "B";
  376. if (!CheckSideLoadCondition(side, index,true))
  377. {
  378. return false;
  379. }
  380. JetAxisBase loaderRotationAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.Rotation");
  381. double loaderRotationPosition = loaderRotationAxis.MotionData.MotorPosition;
  382. if (!loaderRotationAxis.CheckPositionIsInStation(loaderRotationPosition, "TRNPA"))
  383. {
  384. NotifyError(eEvent.ERR_LOADER, $"loader rotation {loaderRotationPosition} not in TRNPA", index);
  385. }
  386. return true;
  387. }
  388. /// <summary>
  389. /// 检验Side Unload情况
  390. /// </summary>
  391. /// <param name="side"></param>
  392. /// <param name="index"></param>
  393. /// <returns></returns>
  394. private bool CheckSideLoadCondition(string side, int index,bool showError)
  395. {
  396. JetAxisBase shuttleAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.Shuttle{side}");
  397. double shuttlePosition = shuttleAxis.MotionData.MotorPosition;
  398. if (!shuttleAxis.CheckPositionInStationIgnoreWaferSize(shuttlePosition, "MID"))
  399. {
  400. if (showError)
  401. {
  402. NotifyError(eEvent.ERR_LOADER, $"shuttle{side} {shuttlePosition} is not in mid", index);
  403. }
  404. return false;
  405. }
  406. JetAxisBase tiltAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.Tilt{side}");
  407. double tiltPosition = tiltAxis.MotionData.MotorPosition;
  408. if (tiltAxis.CheckPositionIsInStation(tiltPosition, "VERT"))
  409. {
  410. if (showError)
  411. {
  412. NotifyError(eEvent.ERR_LOADER, $"tilt{side} {tiltPosition} is not in VERT", index);
  413. }
  414. return false;
  415. }
  416. JetAxisBase crsAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.LS{side}");
  417. double crsPosition = crsAxis.MotionData.MotorPosition;
  418. if (!crsAxis.CheckPositionIsInStation(crsPosition, "Setup"))
  419. {
  420. if (showError)
  421. {
  422. NotifyError(eEvent.ERR_LOADER, $"LS{side} {crsPosition} is not in Setup", index);
  423. }
  424. return false;
  425. }
  426. return true;
  427. }
  428. /// <summary>
  429. /// 记录Lottrack
  430. /// </summary>
  431. private void LottrackRecord()
  432. {
  433. //记录Lottrack
  434. if (DateTime.Now.Subtract(_lotTackTime).TotalMilliseconds >= LOTTRACK_TIME)
  435. {
  436. AddLotTrackData();
  437. _lotTackTime = DateTime.Now;
  438. }
  439. }
  440. /// <summary>
  441. /// 获取Lot Track数据
  442. /// </summary>
  443. /// <returns></returns>
  444. private void AddLotTrackData()
  445. {
  446. LoadStep step = (LoadStep)Runner.CurrentStep;
  447. if (step <= LoadStep.SideAllLoadWait)
  448. {
  449. LoaderLotTrackData data = new LoaderLotTrackData();
  450. data.TimeStamp = DateTime.Now;
  451. data.LoaderABernoulliBladderEnable = _loaderSide.SideData.BernoulliBladder;
  452. data.LoaderABernoulliExtended = _loaderSide.SideData.BernoulliExtended;
  453. data.LoaderABernoulliBladderPressure = _loaderSide.SideData.BernoulliBladderPressure;
  454. data.LoaderABernoulliN2Pressure = _loaderSide.SideData.BernoulliPressure;
  455. data.LoaderACRSVacuum = _loaderSide.SideData.CRSVacuum;
  456. data.LoaderACRSVacuumAnlg = _loaderSide.SideData.CRSVacuumValue;
  457. data.LoaderAWHPressure = _loaderSide.SideData.WHBladderPressure;
  458. data.LoaderATranslatePressure = _loaderSide.SideData.TransPressure;
  459. data.LoaderWHClamped = _loaderCommon.CommonData.WaferHolderClamp;
  460. _datas.Add(data);
  461. }
  462. }
  463. }
  464. }