EFEMAlignRoutine.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. using Aitex.Core.Common;
  2. using Aitex.Core.RT.Log;
  3. using Aitex.Core.RT.Routine;
  4. using MECF.Framework.Common.Equipment;
  5. using MECF.Framework.Common.SubstrateTrackings;
  6. using System;
  7. using System.Collections.Generic;
  8. using CyberX8_Core;
  9. using CyberX8_RT.Devices.EFEM;
  10. using Aitex.Core.Util;
  11. using MECF.Framework.Common.Routine;
  12. using Aitex.Core.RT.SCCore;
  13. namespace CyberX8_RT.Modules.EFEM
  14. {
  15. public class EFEMAlignRoutine : RoutineBase, IRoutine
  16. {
  17. private enum AlignStep
  18. {
  19. WaitVacuumIdle,
  20. VacuumOn,
  21. WaitIdle,
  22. SetAngle,
  23. ReWaitIdle,
  24. Rotate,
  25. LastWaitIdle,
  26. VacuumOff,
  27. End
  28. }
  29. private int _moveTimeout = 20 * 1000;
  30. EfemBase _efem;
  31. private double angle = 25;
  32. private WaferSize ws = WaferSize.WS12;
  33. private int _angleOffset = 0;
  34. public EFEMAlignRoutine(EfemBase efem) : base(ModuleName.Aligner1.ToString())
  35. {
  36. _efem = efem;
  37. }
  38. public RState Start(params object[] objs)
  39. {
  40. if (SC.ContainsItem($"EFEM.AlignerOffsetAngle"))
  41. {
  42. _angleOffset = SC.GetValue<int>($"EFEM.AlignerOffsetAngle");
  43. }
  44. if (objs.Length >= 3)
  45. {
  46. try
  47. {
  48. angle = Convert.ToDouble(objs[2]) + _angleOffset;
  49. }
  50. catch
  51. {
  52. LOG.Write(eEvent.ERR_EFEM_COMMON_FAILED, Module, $"ALIAN PARAMETER IS ILLEGAL ");
  53. }
  54. }
  55. if (!CheckPreCondition())
  56. {
  57. return RState.Failed;
  58. }
  59. return Runner.Start(Module,$"PreAligner Start align");
  60. }
  61. /// <summary>
  62. /// 检验前置条件
  63. /// </summary>
  64. /// <returns></returns>
  65. private bool CheckPreCondition()
  66. {
  67. if (!WaferManager.Instance.CheckHasWafer(ModuleName.Aligner1, 0))
  68. {
  69. NotifyError(eEvent.ERR_EFEM_ROBOT, $"Efem PreAligner not have wafer, cannot do the align action",0);
  70. return false;
  71. }
  72. return true;
  73. }
  74. public RState Monitor()
  75. {
  76. Runner.Wait(AlignStep.WaitVacuumIdle, WaitEFEMIdle)
  77. //.Run(AlignStep.VacuumOn, VacuumOn,CheckAlignDone,_delay_5s)
  78. .Wait(AlignStep.WaitIdle, WaitEFEMIdle)
  79. .Run(AlignStep.SetAngle, SetAlignAngle, CheckAlignDone, _delay_5s)
  80. .Wait(AlignStep.ReWaitIdle, WaitEFEMIdle)
  81. .Run(AlignStep.Rotate, Align, CheckAlignDone, _moveTimeout)
  82. .Wait(AlignStep.LastWaitIdle, WaitEFEMIdle)
  83. //.Run(AlignStep.VacuumOff,VacuumOff,CheckAlignDone,_delay_5s)
  84. .End( AlignStep.End, ActionDone, 0);
  85. return Runner.Status;
  86. }
  87. private bool VacuumOn()
  88. {
  89. return _efem.Vacuum(ModuleName.Aligner1, true);
  90. }
  91. private bool VacuumOff()
  92. {
  93. return _efem.Vacuum(ModuleName.Aligner1, false);
  94. }
  95. private bool SetAlignAngle()
  96. {
  97. return _efem.SetAlignAngle(ModuleName.Aligner1, angle);
  98. }
  99. private bool Align()
  100. {
  101. return _efem.Align(ModuleName.Aligner1,angle,0,ws);
  102. }
  103. private bool CheckAlignDone()
  104. {
  105. if (_efem.Status == RState.End)
  106. {
  107. return true;
  108. }
  109. else if (_efem.Status == RState.Failed)
  110. {
  111. LOG.Write(eEvent.ERR_EFEM_COMMON_FAILED, Module, $"Efem PreAligner align failed: {_efem.Status}");
  112. return true;
  113. }
  114. return false;
  115. }
  116. private bool ActionDone()
  117. {
  118. return true;
  119. }
  120. private bool WaitEFEMIdle()
  121. {
  122. return Singleton<RouteManager>.Instance.EFEM.RobotStatus == RState.End;
  123. }
  124. public void Abort()
  125. {
  126. }
  127. /// <summary>
  128. /// 重试
  129. /// </summary>
  130. /// <param name="step"></param>
  131. public RState Retry(int step)
  132. {
  133. if (!CheckPreCondition())
  134. {
  135. return RState.Failed;
  136. }
  137. _efem.Reset();
  138. List<Enum> preStepIds = new List<Enum>();
  139. return Runner.Retry(AlignStep.WaitIdle, preStepIds, Module, "Align Retry");
  140. }
  141. /// <summary>
  142. /// 检验前面完成状态
  143. /// </summary>
  144. /// <returns></returns>
  145. public bool CheckCompleteCondition(int index)
  146. {
  147. return true;
  148. }
  149. }
  150. }