SRDProcessRecipeRoutine.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  1. using Aitex.Core.RT.Log;
  2. using Aitex.Core.RT.Routine;
  3. using MECF.Framework.Common.RecipeCenter;
  4. using MECF.Framework.Common.Routine;
  5. using CyberX8_Core;
  6. using CyberX8_RT.Devices.AXIS;
  7. using CyberX8_RT.Devices.SRD;
  8. using System;
  9. using System.Collections.Generic;
  10. using MECF.Framework.Common.Utilities;
  11. using MECF.Framework.Common.CommonData;
  12. using MECF.Framework.Common.CommonData.SRD;
  13. using Aitex.Core.RT.SCCore;
  14. using Aitex.Core.RT.Device;
  15. using CyberX8_RT.Devices.Facilities;
  16. using Aitex.Core.Util;
  17. using CyberX8_RT.Modules.Transporter;
  18. using MECF.Framework.Common.WaferHolder;
  19. using MECF.Framework.Common.Persistent.SRD;
  20. namespace CyberX8_RT.Modules.SRD
  21. {
  22. public class SRDProcessRecipeRoutine : RoutineBase, IRoutine
  23. {
  24. #region 常量
  25. private const int LOTTRACK_TIME = 1000;
  26. #endregion
  27. private enum SRDProcessState
  28. {
  29. Ready,
  30. StartLoader,
  31. Loading,
  32. StartRunRecipe,
  33. RunReciping,
  34. StartUnloader,
  35. Unloading,
  36. CycleEnd,
  37. End
  38. }
  39. #region 内部变量
  40. /// <summary>
  41. /// 次数
  42. /// </summary>
  43. private int _cycleCount = 0;
  44. /// <summary>
  45. /// Rotation Axis
  46. /// </summary>
  47. private JetAxisBase _rotationAxis;
  48. /// <summary>
  49. /// Arm Axis
  50. /// </summary>
  51. private JetAxisBase _armAxis;
  52. /// <summary>
  53. /// SRD Recipe
  54. /// </summary>
  55. private SrdRecipe _srdRecipe;
  56. /// <summary>
  57. /// 设备对象
  58. /// </summary>
  59. private SrdCommonDevice _srdCommonDevice;
  60. /// <summary>
  61. /// Run Recipe Routine
  62. /// </summary>
  63. private SRDRunRecipeRoutine _runRecipeRoutine;
  64. /// <summary>
  65. /// Unloader Routine
  66. /// </summary>
  67. private SRDUnloaderRoutine _unloaderRoutine;
  68. /// <summary>
  69. /// Loader Routine
  70. /// </summary>
  71. private SRDLoaderRoutine _loaderRoutine;
  72. /// <summary>
  73. /// lock track time
  74. /// </summary>
  75. private DateTime _lotTackTime = DateTime.Now;
  76. /// <summary>
  77. /// LotTrack数据
  78. /// </summary>
  79. private List<SRDLotTrackData> _datas = new List<SRDLotTrackData>();
  80. /// <summary>
  81. /// LotTrack文件头数据
  82. /// </summary>
  83. private LotTrackFileHeaderCommonData _header = new LotTrackFileHeaderCommonData();
  84. /// <summary>
  85. /// Facilities
  86. /// </summary>
  87. private SystemFacilities _facilities;
  88. /// <summary>
  89. /// Manual模式
  90. /// </summary>
  91. private bool _isManual = false;
  92. #endregion
  93. #region 属性
  94. /// <summary>
  95. /// 当前子状态机
  96. /// </summary>
  97. public string CurrentStateMachine
  98. {
  99. get { return GetCurrentStateMachine(); }
  100. }
  101. /// <summary>
  102. /// 当前cycle次数
  103. /// </summary>
  104. public int AchievedCycle { get { return Runner.LoopCounter; } }
  105. /// <summary>
  106. /// 是否正在用水
  107. /// </summary>
  108. public bool IsUsingWater { get { return _runRecipeRoutine.IsUsingWater; } }
  109. /// <summary>
  110. /// LotTrack数据
  111. /// </summary>
  112. public List<SRDLotTrackData> SRDLotTrackDatas { get { return _datas; } }
  113. /// <summary>
  114. /// LotTrack文件头数据
  115. /// </summary>
  116. public LotTrackFileHeaderCommonData SRDLotTrackHeaderDatas { get { return _header; } }
  117. #endregion
  118. /// <summary>
  119. /// 构造函数
  120. /// </summary>
  121. /// <param name="module"></param>
  122. public SRDProcessRecipeRoutine(string module, JetAxisBase rotationAxis, JetAxisBase armAxis, SrdCommonDevice srdCommon) : base(module)
  123. {
  124. _rotationAxis = rotationAxis;
  125. _armAxis = armAxis;
  126. _srdCommonDevice = srdCommon;
  127. _runRecipeRoutine = new SRDRunRecipeRoutine(module);
  128. _unloaderRoutine= new SRDUnloaderRoutine(module);
  129. _loaderRoutine = new SRDLoaderRoutine(module);
  130. }
  131. /// <summary>
  132. /// 取消
  133. /// </summary>
  134. public void Abort()
  135. {
  136. if(_unloaderRoutine.Monitor() == RState.Running)
  137. {
  138. _unloaderRoutine.Abort();
  139. }
  140. if (_runRecipeRoutine.Monitor() == RState.Running)
  141. {
  142. _runRecipeRoutine.Abort();
  143. }
  144. if (_loaderRoutine.Monitor() == RState.Running)
  145. {
  146. _loaderRoutine.Abort();
  147. }
  148. Runner.Stop("Manual Abort");
  149. if (_srdCommonDevice != null)
  150. {
  151. _srdCommonDevice.EnterErrorOperation();
  152. }
  153. }
  154. /// <summary>
  155. /// 监控
  156. /// </summary>
  157. /// <returns></returns>
  158. /// <exception cref="NotImplementedException"></exception>
  159. public RState Monitor()
  160. {
  161. LottrackRecord();
  162. Runner.LoopStart(SRDProcessState.Ready, "Process Recipe Start", _cycleCount, NullFun, _delay_1ms)
  163. .LoopRunIf(SRDProcessState.StartLoader, !_isManual,() => { return StartLoader(); }, _delay_1ms)
  164. .LoopRunIfWithStopStatus(SRDProcessState.Loading, !_isManual, CheckLoaderEndStatus, CheckLoaderErrorStatus)
  165. .LoopRun(SRDProcessState.StartRunRecipe, () => { return StartRunRecipe(); }, _delay_1ms)
  166. .LoopRunWithStopStatus(SRDProcessState.RunReciping, CheckRunRecipeEndStatus, CheckRunRecipeErrorStatus)
  167. .LoopRunIf(SRDProcessState.StartUnloader, !_isManual, () => { return StartUnloader(); }, _delay_1ms)
  168. .LoopRunIfWithStopStatus(SRDProcessState.Unloading, !_isManual, CheckUnloaderEndStatus, CheckUnloaderErrorStatus)
  169. .LoopEnd(SRDProcessState.CycleEnd, NullFun, _delay_1ms)
  170. .End(SRDProcessState.End, NullFun, _delay_1ms);
  171. return Runner.Status;
  172. }
  173. /// <summary>
  174. /// 启动
  175. /// </summary>
  176. /// <param name="objects"></param>
  177. /// <returns></returns>
  178. /// <exception cref="NotImplementedException"></exception>
  179. public RState Start(params object[] objects)
  180. {
  181. _srdRecipe = objects[0] as SrdRecipe;
  182. if (_srdRecipe == null)
  183. {
  184. LOG.WriteLog(eEvent.ERR_SRD, Module.ToString(), " recipe is null");
  185. return RState.Failed;
  186. }
  187. _cycleCount = (int)objects[1];
  188. if (_cycleCount == 0)
  189. {
  190. return RState.End;
  191. }
  192. _isManual = false;
  193. SRDPersistentValue srdPersistentValue = SRDPersistentManager.Instance.GetModulePersistentValue(Module);
  194. if(srdPersistentValue.OperatingMode.Equals("Manual")) _isManual = true;
  195. _header.SoftWareVersion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
  196. _header.Recipe = $"{_srdRecipe.Ppid}.srd.rcp";
  197. if (SC.ContainsItem("System.ToolID")) _header.ToolID = SC.GetStringValue("System.ToolID");
  198. _facilities = DEVICE.GetDevice<SystemFacilities>("System.Facilities");
  199. if (_facilities == null)
  200. {
  201. LOG.WriteLog(eEvent.ERR_SRD, Module, "Facility is null");
  202. return RState.Failed;
  203. }
  204. _datas.Clear();
  205. _lotTackTime = DateTime.Now;
  206. return Runner.Start(Module, "Process Recipe");
  207. }
  208. #region Loader
  209. /// <summary>
  210. /// 启动LoaderRoutine
  211. /// </summary>
  212. /// <param name="recipe"></param>
  213. /// <returns></returns>
  214. private bool StartLoader()
  215. {
  216. bool result = _loaderRoutine.Start() == RState.Running;
  217. if (!result)
  218. {
  219. NotifyError(eEvent.ERR_SRD, _loaderRoutine.ErrorMsg, 0);
  220. }
  221. return result;
  222. }
  223. /// <summary>
  224. /// 检验LoaderRoutine完成情况
  225. /// </summary>
  226. /// <returns></returns>
  227. private bool CheckLoaderEndStatus()
  228. {
  229. return CommonFunction.CheckRoutineEndState(_loaderRoutine);
  230. }
  231. /// <summary>
  232. /// 检验LoaderRoutine错误情况
  233. /// </summary>
  234. /// <returns></returns>
  235. private bool CheckLoaderErrorStatus()
  236. {
  237. bool result = CommonFunction.CheckRoutineStopState(_loaderRoutine);
  238. if (result)
  239. {
  240. AddLotTrackData();
  241. if (_srdCommonDevice != null)
  242. {
  243. _srdCommonDevice.EnterErrorOperation();
  244. }
  245. NotifyError(eEvent.ERR_SRD, _loaderRoutine.ErrorMsg, 0);
  246. }
  247. return result;
  248. }
  249. #endregion
  250. #region RunRecipe
  251. /// <summary>
  252. /// 启动状态机
  253. /// </summary>
  254. /// <param name="recipe"></param>
  255. /// <returns></returns>
  256. private bool StartRunRecipe()
  257. {
  258. bool result = _runRecipeRoutine.Start(_srdRecipe)==RState.Running;
  259. if (result)
  260. {
  261. LOG.WriteLog(eEvent.INFO_SRD, Module.ToString(), $"Start Run Recipe, recipe[{_srdRecipe.Ppid}] times[{_cycleCount + 1}]");
  262. }
  263. else
  264. {
  265. NotifyError(eEvent.ERR_SRD, _runRecipeRoutine.ErrorMsg, 0);
  266. }
  267. return result;
  268. }
  269. /// <summary>
  270. /// 检验RunRecipeRoutine完成情况
  271. /// </summary>
  272. /// <returns></returns>
  273. private bool CheckRunRecipeEndStatus()
  274. {
  275. return CommonFunction.CheckRoutineEndState(_runRecipeRoutine);
  276. }
  277. /// <summary>
  278. /// 检验RunRecipeRoutine错误情况
  279. /// </summary>
  280. /// <returns></returns>
  281. private bool CheckRunRecipeErrorStatus()
  282. {
  283. bool result = CommonFunction.CheckRoutineStopState(_runRecipeRoutine);
  284. if (result)
  285. {
  286. AddLotTrackData();
  287. if (_srdCommonDevice != null)
  288. {
  289. _srdCommonDevice.EnterErrorOperation();
  290. }
  291. NotifyError(eEvent.ERR_SRD, _runRecipeRoutine.ErrorMsg, 0);
  292. }
  293. return result;
  294. }
  295. #endregion
  296. #region Unloader
  297. /// <summary>
  298. /// 启动UnloaderRoutine
  299. /// </summary>
  300. /// <param name="recipe"></param>
  301. /// <returns></returns>
  302. private bool StartUnloader()
  303. {
  304. bool result= _unloaderRoutine.Start(false) == RState.Running;
  305. if (!result)
  306. {
  307. NotifyError(eEvent.ERR_SRD,_unloaderRoutine.ErrorMsg, 0);
  308. }
  309. return result;
  310. }
  311. /// <summary>
  312. /// 检验UnloaderRoutine完成情况
  313. /// </summary>
  314. /// <returns></returns>
  315. private bool CheckUnloaderEndStatus()
  316. {
  317. return CommonFunction.CheckRoutineEndState(_unloaderRoutine);
  318. }
  319. /// <summary>
  320. /// 检验UnloaderRoutine错误情况
  321. /// </summary>
  322. /// <returns></returns>
  323. private bool CheckUnloaderErrorStatus()
  324. {
  325. bool result= CommonFunction.CheckRoutineStopState(_unloaderRoutine);
  326. if (result)
  327. {
  328. AddLotTrackData();
  329. NotifyError(eEvent.ERR_SRD, _unloaderRoutine.ErrorMsg, 0);
  330. }
  331. return result;
  332. }
  333. #endregion
  334. /// <summary>
  335. /// 获取当前子状态机
  336. /// </summary>
  337. private string GetCurrentStateMachine()
  338. {
  339. string result;
  340. if(Runner.CurrentStep.ToString() == "Ready")
  341. {
  342. result = "Ready";
  343. }
  344. else if(Runner.CurrentStep.ToString().Contains("RunReciping"))
  345. {
  346. result = _runRecipeRoutine.CurrentStep;
  347. }
  348. else if(Runner.CurrentStep.ToString().Contains("Unloading"))
  349. {
  350. result = _unloaderRoutine.CurrentStep;
  351. }
  352. else
  353. {
  354. result = "End";
  355. }
  356. return result;
  357. }
  358. /// <summary>
  359. /// 记录Lottrack
  360. /// </summary>
  361. private void LottrackRecord()
  362. {
  363. //记录Lottrack
  364. if (DateTime.Now.Subtract(_lotTackTime).TotalMilliseconds >= LOTTRACK_TIME)
  365. {
  366. AddLotTrackData();
  367. _lotTackTime = DateTime.Now;
  368. }
  369. }
  370. /// <summary>
  371. /// 获取Lot Track数据
  372. /// </summary>
  373. /// <returns></returns>
  374. private void AddLotTrackData()
  375. {
  376. SRDLotTrackData data = new SRDLotTrackData();
  377. data.TimeStamp = DateTime.Now;
  378. data.StateMachine = GetCurrentStateMachine();
  379. data.WaterPressure = _srdCommonDevice.CommonData.WaterPressure;
  380. data.ChuckVacuumOn = _srdCommonDevice.CommonData.ChuckVacuum;
  381. data.ChuckVacuumPressure = _srdCommonDevice.CommonData.VacuumValue;
  382. //data.SpinTorque = _rotationAxis.MotionData.ActualTorque;
  383. data.RotationSpeed = _rotationAxis.MotionData.ActualVelocity;
  384. data.WaterOn = _srdCommonDevice.CommonData.WaterOn;
  385. data.WaterFlow = _srdCommonDevice.CommonData.WaterFlow;
  386. data.LoaderDIEnable = _facilities.LoaderDiEnable;
  387. _datas.Add(data);
  388. }
  389. /// <summary>
  390. /// 重试
  391. /// </summary>
  392. /// <param name="step"></param>
  393. public RState Retry(int step)
  394. {
  395. List<Enum> preStepIds = new List<Enum>();
  396. return Runner.Retry(SRDProcessState.Ready, preStepIds, Module, "RunRecipe Retry");
  397. }
  398. /// <summary>
  399. /// 检验前面完成状态
  400. /// </summary>
  401. /// <returns></returns>
  402. public bool CheckCompleteCondition(int index)
  403. {
  404. if (_armAxis.IsRun)
  405. {
  406. NotifyError(eEvent.ERR_SRD, "Arm axis is run", 0);
  407. return false;
  408. }
  409. if (!_armAxis.IsHomed)
  410. {
  411. NotifyError(eEvent.ERR_SRD, "Arm axis is not homed", 0);
  412. return false;
  413. }
  414. if (_rotationAxis.IsRun)
  415. {
  416. NotifyError(eEvent.ERR_SRD, "Rotation axis is run", 0);
  417. return false;
  418. }
  419. if (!_rotationAxis.IsHomed)
  420. {
  421. NotifyError(eEvent.ERR_SRD, "Rotation axis is not homed", 0);
  422. return false;
  423. }
  424. if (!_srdCommonDevice.CommonData.ChuckVacuum)
  425. {
  426. NotifyError(eEvent.ERR_SRD, "Vacuum is not released", 0);
  427. return false;
  428. }
  429. if (!_srdCommonDevice.CommonData.DoorOpened)
  430. {
  431. NotifyError(eEvent.ERR_SRD, "Door is not opened", 0);
  432. return false;
  433. }
  434. return true;
  435. }
  436. }
  437. }