PufReadyForSwapRoutine.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. using Aitex.Core.RT.Device;
  2. using Aitex.Core.RT.Routine;
  3. using MECF.Framework.Common.Routine;
  4. using CyberX8_Core;
  5. using CyberX8_RT.Devices.AXIS;
  6. using CyberX8_RT.Devices.PUF;
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. using Aitex.Core.RT.Log;
  13. using MECF.Framework.Common.Utilities;
  14. namespace CyberX8_RT.Modules.PUF
  15. {
  16. public class PufReadyForSwapRoutine : RoutineBase, IRoutine
  17. {
  18. private enum ReadyForSwapStep
  19. {
  20. VacuumOn,
  21. RotationHomeStation,
  22. RotationHomeStationWait,
  23. End
  24. }
  25. #region 常量
  26. private const string WAFER_PRESENT = "WaferPresent";
  27. #endregion
  28. #region 内部变量
  29. private JetAxisBase _rotationAxis;
  30. private PufVacuum _vacuum;
  31. #endregion
  32. /// <summary>
  33. /// 构造函数
  34. /// </summary>
  35. /// <param name="module"></param>
  36. public PufReadyForSwapRoutine(string module) : base(module)
  37. {
  38. }
  39. /// <summary>
  40. /// 中止
  41. /// </summary>
  42. public void Abort()
  43. {
  44. Runner.Stop("Manual Abort");
  45. }
  46. /// <summary>
  47. /// 监控
  48. /// </summary>
  49. /// <returns></returns>
  50. public RState Monitor()
  51. {
  52. Runner.Run(ReadyForSwapStep.VacuumOn, VacuumBOn, CheckWaferPresence, _delay_5s)
  53. .Run(ReadyForSwapStep.RotationHomeStation, RotationGotoHome, _delay_1ms)
  54. .WaitWithStopCondition(ReadyForSwapStep.RotationHomeStationWait, () => _rotationAxis.Status == RState.End, CheckRotationStopStatus)
  55. .End(ReadyForSwapStep.End, NullFun, _delay_1ms);
  56. return Runner.Status;
  57. }
  58. /// <summary>
  59. /// Vacuum B On
  60. /// </summary>
  61. /// <returns></returns>
  62. private bool VacuumBOn()
  63. {
  64. bool result = _vacuum.VacuumBOn();
  65. if(!result)
  66. {
  67. NotifyError(eEvent.ERR_PUF, "side B Vacuum on failed", 0);
  68. }
  69. return result;
  70. }
  71. /// <summary>
  72. /// 检验是否存在Wafer
  73. /// </summary>
  74. /// <returns></returns>
  75. private bool CheckWaferPresence()
  76. {
  77. return _vacuum.ChuckBVacuumStatus == WAFER_PRESENT;
  78. }
  79. /// <summary>
  80. /// Rotation Goto Park
  81. /// </summary>
  82. /// <returns></returns>
  83. private bool RotationGotoHome()
  84. {
  85. bool result = _rotationAxis.PositionStation("Home");
  86. if (!result)
  87. {
  88. NotifyError(eEvent.ERR_PUF, "rotation goto Home failed", 0);
  89. }
  90. return result;
  91. }
  92. /// <summary>
  93. /// 检验Rotation异常状态
  94. /// </summary>
  95. /// <returns></returns>
  96. private bool CheckRotationStopStatus()
  97. {
  98. bool result = _rotationAxis.Status == RState.Failed || _rotationAxis.Status == RState.Timeout;
  99. if (result)
  100. {
  101. NotifyError(eEvent.ERR_PUF, "rotaion motion failed", 0);
  102. }
  103. return result;
  104. }
  105. /// <summary>
  106. /// 启动
  107. /// </summary>
  108. /// <param name="objs"></param>
  109. /// <returns></returns>
  110. public RState Start(params object[] objs)
  111. {
  112. InitializeParameters();
  113. return Runner.Start(Module, "Start Go to Park For Swap");
  114. }
  115. /// <summary>
  116. /// 初始化参数
  117. /// </summary>
  118. private void InitializeParameters()
  119. {
  120. _rotationAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Rotation");
  121. _vacuum = DEVICE.GetDevice<PufVacuum>($"{Module}.Vacuum");
  122. }
  123. /// <summary>
  124. /// 重试
  125. /// </summary>
  126. /// <param name="step"></param>
  127. public RState Retry(int step)
  128. {
  129. InitializeParameters();
  130. List<Enum> preStepIds = new List<Enum>();
  131. return Runner.Retry(ReadyForSwapStep.VacuumOn, preStepIds, Module, "ReadyForSwap Retry");
  132. }
  133. /// <summary>
  134. /// 检验完成情况
  135. /// </summary>
  136. /// <returns></returns>
  137. public bool CheckCompleteCondition()
  138. {
  139. double rotationPosition = _rotationAxis.MotionData.MotorPosition;
  140. if (!_rotationAxis.CheckPositionIsInStation(rotationPosition, "Home"))
  141. {
  142. NotifyError(eEvent.ERR_PUF, $"rotation {rotationPosition} not in Home", 0);
  143. return false;
  144. }
  145. return true;
  146. }
  147. }
  148. }