SchedulerLoader.cs 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. using Aitex.Core.RT.Fsm;
  2. using Aitex.Core.RT.Log;
  3. using Aitex.Core.Util;
  4. using MECF.Framework.Common.CommonData;
  5. using MECF.Framework.Common.Equipment;
  6. using CyberX8_Core;
  7. using CyberX8_RT.Modules;
  8. using CyberX8_RT.Modules.Loader;
  9. using CyberX8_RT.Modules.PUF;
  10. using System;
  11. using System.Collections.Generic;
  12. using System.Linq;
  13. using System.Text;
  14. using System.Threading.Tasks;
  15. using MECF.Framework.Common.SubstrateTrackings;
  16. using CyberX8_RT.Modules.Metal;
  17. using CyberX8_RT.Devices.AXIS;
  18. using Aitex.Core.RT.Device;
  19. namespace CyberX8_RT.Schedulers.Loader
  20. {
  21. public class SchedulerLoader : SchedulerModule
  22. {
  23. private enum SchedulerStep
  24. {
  25. WaitLoad,
  26. LoadingFirst,
  27. ReadyForPuf,
  28. LoadingSecond
  29. }
  30. #region 内部变量
  31. private LoaderEntity _loaderEntity;
  32. private PUFEntity _puf1Entity;
  33. private SchedulerStep _currentStep;
  34. private int _currentWaferIndex = 0;
  35. #endregion
  36. #region 属性
  37. public override bool IsIdle
  38. {
  39. get { return _state == RState.End; }
  40. }
  41. public override bool IsError
  42. {
  43. get { return _state == RState.Failed || _state == RState.Timeout; }
  44. }
  45. #endregion
  46. /// <summary>
  47. /// 构造函数
  48. /// </summary>
  49. /// <param name="module"></param>
  50. public SchedulerLoader(ModuleName module) : base(module.ToString())
  51. {
  52. _loaderEntity = Singleton<RouteManager>.Instance.GetModule<LoaderEntity>(module.ToString());
  53. _puf1Entity = Singleton<RouteManager>.Instance.GetModule<PUFEntity>(ModuleName.PUF1.ToString());
  54. }
  55. /// <summary>
  56. /// 执行
  57. /// </summary>
  58. /// <param name="parameter"></param>
  59. /// <returns></returns>
  60. public override bool RunProcess(object recipe, object parameter, List<SchedulerSyncModuleMessage> syncModuleMessages)
  61. {
  62. _state = RState.Running;
  63. _currentStep = SchedulerStep.WaitLoad;
  64. _currentWaferIndex = 0;
  65. return true;
  66. }
  67. /// <summary>
  68. /// 监控执行
  69. /// </summary>
  70. /// <returns></returns>
  71. public override bool MonitorProcess(SchedulerSequence schedulerSequence, bool hasMatchWafer)
  72. {
  73. int waferTaskCount =(int)schedulerSequence.Parameters;
  74. bool loadComplete = waferTaskCount == _currentWaferIndex;
  75. if (_currentStep == SchedulerStep.WaitLoad)
  76. {
  77. if (_loaderEntity.State != (int)LOADERSTATE.WaitForLoad)
  78. {
  79. return false;
  80. }
  81. bool result = ExecuteLoadSide(loadComplete);
  82. if (result)
  83. {
  84. _currentStep = SchedulerStep.LoadingFirst;
  85. }
  86. }
  87. else if (_currentStep == SchedulerStep.LoadingFirst)
  88. {
  89. if (_loaderEntity.IsIdle)
  90. {
  91. if (waferTaskCount == 1)
  92. {
  93. _state = RState.End;
  94. }
  95. else
  96. {
  97. bool result = EnterReadyForPuf();
  98. if (result)
  99. {
  100. _currentStep = SchedulerStep.ReadyForPuf;
  101. }
  102. }
  103. }
  104. }
  105. else if (_currentStep == SchedulerStep.ReadyForPuf)
  106. {
  107. if (_loaderEntity.State == (int)LOADERSTATE.WaitForLoad)
  108. {
  109. bool result = ExecuteLoadSide(true);
  110. if (result)
  111. {
  112. _currentStep = SchedulerStep.LoadingSecond;
  113. }
  114. }
  115. }
  116. else if (_currentStep == SchedulerStep.LoadingSecond)
  117. {
  118. if (_loaderEntity.IsIdle)
  119. {
  120. _state = RState.End;
  121. }
  122. }
  123. return true;
  124. }
  125. private bool ExecuteLoadSide(bool loadComplete)
  126. {
  127. if (_puf1Entity.State == (int)PUFSTATE.AferSwapParkStation || (_puf1Entity.IsIdle && _puf1Entity.IsBackToParkStation))
  128. {
  129. JetAxisBase tiltAAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.TiltA");
  130. JetAxisBase tiltBAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.TiltB");
  131. double tiltAPosition = tiltAAxis.MotionData.MotorPosition;
  132. double tiltBPosition = tiltBAxis.MotionData.MotorPosition;
  133. bool tiltAHori = tiltAAxis.CheckPositionIsInStation(tiltAPosition, "HORI");
  134. bool tiltBHori = tiltBAxis.CheckPositionIsInStation(tiltBPosition, "HORI");
  135. string side = tiltAHori ? "SideA" : (tiltBHori ? "SideB" : "");
  136. if (string.IsNullOrEmpty(side))
  137. {
  138. return false;
  139. }
  140. return _loaderEntity.CheckToPostMessage<LOADERSTATE, LoaderMSG>(eEvent.WARN_LOADER, Module.ToString(),
  141. (int)LoaderMSG.LoadSide, side, loadComplete);
  142. }
  143. return false;
  144. }
  145. /// <summary>
  146. /// 第二次进入WaitForUnload
  147. /// </summary>
  148. /// <returns></returns>
  149. private bool EnterReadyForPuf()
  150. {
  151. return _loaderEntity.CheckToPostMessage<LOADERSTATE, LoaderMSG>(eEvent.WARN_LOADER, Module.ToString(),
  152. (int)LoaderMSG.ReadyForPuf);
  153. }
  154. /// <summary>
  155. /// 检验前置条件
  156. /// </summary>
  157. /// <param name="sequenceIndex"></param>
  158. /// <param name="parameter"></param>
  159. /// <returns></returns>
  160. public override bool CheckPrecondition(List<SchedulerSequence> schedulerSequences, int sequenceIndex, object parameter, string materialId,ref string reason)
  161. {
  162. if (_state == RState.Running)
  163. {
  164. reason = "scheduler module is already running";
  165. return false;
  166. }
  167. if (_loaderEntity.IsIdle)
  168. {
  169. reason = "loader is idle";
  170. return false;
  171. }
  172. if (_loaderEntity.WaferHolderInfo == null)
  173. {
  174. reason = "loader has no wafer shuttle";
  175. return false;
  176. }
  177. if (_loaderEntity.WaferHolderInfo.Id != materialId)
  178. {
  179. reason = $"{_loaderEntity.Module} wafer shuttle {_loaderEntity.WaferHolderInfo.Id} is not matched with {materialId}";
  180. return false;
  181. }
  182. return true;
  183. }
  184. }
  185. }