LoaderLoadSideRoutine.cs 17 KB

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