StandardHotRunRecipeRoutine.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. using Aitex.Core.RT.Device;
  2. using Aitex.Core.RT.Log;
  3. using Aitex.Core.RT.Routine;
  4. using Aitex.Core.Util;
  5. using CyberX8_Core;
  6. using CyberX8_RT.Devices.Metal;
  7. using CyberX8_RT.Modules.Metal;
  8. using MECF.Framework.Common.CommonData;
  9. using MECF.Framework.Common.CommonData.Metal;
  10. using MECF.Framework.Common.CommonData.PowerSupplier;
  11. using MECF.Framework.Common.CommonData.SRD;
  12. using MECF.Framework.Common.Device.PowerSupplier;
  13. using MECF.Framework.Common.RecipeCenter;
  14. using MECF.Framework.Common.Routine;
  15. using MECF.Framework.Common.Utilities;
  16. using System;
  17. using System.Collections.Generic;
  18. using System.Linq;
  19. using System.Text;
  20. using System.Threading.Tasks;
  21. namespace CyberX8_RT.Modules.Metal
  22. {
  23. public class StandardHotRunRecipeRoutine : RoutineBase, IRoutine
  24. {
  25. private enum RecipeStep
  26. {
  27. WaferHolderClampOn,
  28. RunRecipe,
  29. RunRecipeWait,
  30. WaferHolderUnclampOn,
  31. End
  32. }
  33. #region 常量
  34. private const int ALL_DAY_MILLOSECONDS = 24 * 60 * 60 * 1000;
  35. #endregion
  36. #region 内部变量
  37. /// <summary>
  38. /// recipe
  39. /// </summary>
  40. private DepRecipe _recipe;
  41. /// <summary>
  42. /// 单面
  43. /// </summary>
  44. private string _side;
  45. /// <summary>
  46. /// Metal设备
  47. /// </summary>
  48. private StandardHotMetalDevice _device;
  49. /// <summary>
  50. /// RunRecipe routine
  51. /// </summary>
  52. private ReservoirRunRecipeRoutine _runRecipeRoutine;
  53. #endregion
  54. #region 属性
  55. /// <summary>
  56. /// A面电量
  57. /// </summary>
  58. public double AnodeAUsage { get { return _runRecipeRoutine.AnodeAUsage; } }
  59. /// <summary>
  60. /// B面电量
  61. /// </summary>
  62. public double AnodeBUsage { get { return _runRecipeRoutine.AnodeBUsage; } }
  63. /// <summary>
  64. /// LotTrack数据
  65. /// </summary>
  66. public List<MetalLotTrackData> MetalLotTrackDatas { get { return _runRecipeRoutine.MetalLotTrackDatas; } }
  67. /// <summary>
  68. /// LotTrack文件头数据
  69. /// </summary>
  70. public LotTrackFileHeaderCommonData MetalLotTrackHeaderDatas { get { return _runRecipeRoutine.MetalLotTrackHeaderDatas; } }
  71. #endregion
  72. /// <summary>
  73. /// 构造函数
  74. /// </summary>
  75. /// <param name="module"></param>
  76. public StandardHotRunRecipeRoutine(string module) : base(module)
  77. {
  78. _runRecipeRoutine = new ReservoirRunRecipeRoutine(module);
  79. }
  80. /// <summary>
  81. /// 中止
  82. /// </summary>
  83. public void Abort()
  84. {
  85. _runRecipeRoutine.Abort();
  86. Runner.Stop("Manual Abort");
  87. }
  88. /// <summary>
  89. /// 监控
  90. /// </summary>
  91. /// <returns></returns>
  92. public RState Monitor()
  93. {
  94. Runner.Run(RecipeStep.WaferHolderClampOn, () => _device.WaferHolderClampOn("", null), () => _device.MetalDeviceData.WaferHolderClamp, _delay_1s)
  95. .Run(RecipeStep.RunRecipe, () => _runRecipeRoutine.Start(new object[] { _recipe, _side }) == RState.Running, _delay_1ms)
  96. .WaitWithStopCondition(RecipeStep.RunRecipeWait, () => CommonFunction.CheckRoutineEndState(_runRecipeRoutine), CheckRunRecipeStopStatus, ALL_DAY_MILLOSECONDS)
  97. .Run(RecipeStep.WaferHolderUnclampOn, () => _device.WaferHolderClampOff("", null), () => !_device.MetalDeviceData.WaferHolderClamp, _delay_1s)
  98. .End(RecipeStep.End, NullFun, _delay_1ms);
  99. return Runner.Status;
  100. }
  101. /// <summary>
  102. /// 启动
  103. /// </summary>
  104. /// <param name="objs"></param>
  105. /// <returns></returns>
  106. public RState Start(params object[] objs)
  107. {
  108. _recipe = (DepRecipe)objs[0];
  109. if (objs.Length > 1)
  110. {
  111. _side = objs[1].ToString();
  112. }
  113. _device = DEVICE.GetDevice<StandardHotMetalDevice>(Module);
  114. if (!CheckPreCondition())
  115. {
  116. return RState.Failed;
  117. }
  118. return Runner.Start(Module, "Start run recipe");
  119. }
  120. /// <summary>
  121. /// 检验前置条件
  122. /// </summary>
  123. /// <returns></returns>
  124. private bool CheckPreCondition()
  125. {
  126. if (_recipe == null)
  127. {
  128. LOG.WriteLog(eEvent.ERR_METAL, Module, "Recipe is null");
  129. return false;
  130. }
  131. if (_recipe.CurrentRampProfileSteps.Count == 0)
  132. {
  133. LOG.WriteLog(eEvent.ERR_METAL, Module, "Recipe RampProfileSteps count is 0");
  134. return false;
  135. }
  136. MetalEntity metalEntity = Singleton<RouteManager>.Instance.GetModule<MetalEntity>(Module);
  137. if (metalEntity != null && metalEntity.WaferHolderInfo == null)
  138. {
  139. LOG.WriteLog(eEvent.ERR_METAL, Module, $"there is no waferShuttle in {Module}");
  140. return false;
  141. }
  142. return true;
  143. }
  144. /// <summary>
  145. /// RunRecipe停止状态
  146. /// </summary>
  147. /// <returns></returns>
  148. public bool CheckRunRecipeStopStatus()
  149. {
  150. bool result = CommonFunction.CheckRoutineStopState(_runRecipeRoutine);
  151. if (result)
  152. {
  153. AddLotTrackData();
  154. if (_device.SideAPowerSupplier != null)
  155. {
  156. _device.SideAPowerSupplier.DisableOperation("", null);
  157. }
  158. if (_device.SideBPowerSupplier != null)
  159. {
  160. _device.SideBPowerSupplier.DisableOperation("", null);
  161. }
  162. }
  163. return result;
  164. }
  165. /// <summary>
  166. /// 获取Lot Track数据
  167. /// </summary>
  168. /// <returns></returns>
  169. public void AddLotTrackData()
  170. {
  171. _runRecipeRoutine.AddLotTrackData();
  172. }
  173. }
  174. }