PufPlaceToLoaderRoutine.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. using Aitex.Core.Common;
  2. using Aitex.Core.RT.DataCenter;
  3. using Aitex.Core.RT.Device;
  4. using Aitex.Core.RT.Log;
  5. using Aitex.Core.RT.Routine;
  6. using Aitex.Core.Util;
  7. using MECF.Framework.Common.DBCore;
  8. using MECF.Framework.Common.Equipment;
  9. using MECF.Framework.Common.Routine;
  10. using MECF.Framework.Common.SubstrateTrackings;
  11. using MECF.Framework.Common.Utilities;
  12. using MECF.Framework.Common.WaferHolder;
  13. using CyberX8_Core;
  14. using CyberX8_RT.Devices.AXIS;
  15. using CyberX8_RT.Devices.Loader;
  16. using CyberX8_RT.Devices.PUF;
  17. using CyberX8_RT.Modules.Loader;
  18. using System;
  19. using System.Collections.Generic;
  20. using System.Linq;
  21. using System.Text;
  22. using System.Threading.Tasks;
  23. namespace CyberX8_RT.Modules.PUF
  24. {
  25. public class PufPlaceToLoaderRoutine : RoutineBase, IRoutine
  26. {
  27. private enum PlaceStep
  28. {
  29. OnlyPlaceToLoader,
  30. OnlyPlaceToLoaderWait,
  31. SwitchWaferHolder,
  32. LastRotationHomeStation,
  33. LastRotationHomeStationWait,
  34. End
  35. }
  36. #region 常量
  37. private const string CURRENT_STATION_LIST = "CurrentStationList";
  38. private const string SIDE_A = "SideA";
  39. private const string SIDE_B = "SideB";
  40. #endregion
  41. #region 内部变量
  42. private string _loaderSide;
  43. private string _pufSide = "";
  44. private LoaderEntity _loaderEntity;
  45. private JetAxisBase _flipAxis;
  46. private JetAxisBase _rotationAxis;
  47. private PufVacuum _vacuum;
  48. private LoaderSideDevice _loaderSideDevice;
  49. private JetAxisBase _loaderCrsAxis;
  50. private JetAxisBase _gantryAxis;
  51. private PufOnlyPlaceToLoaderRoutine _onlyPlaceToLoaderRoutine;
  52. #endregion
  53. /// <summary>
  54. /// 构造函数
  55. /// </summary>
  56. /// <param name="module"></param>
  57. public PufPlaceToLoaderRoutine(string module) : base(module)
  58. {
  59. }
  60. /// <summary>
  61. /// 中止
  62. /// </summary>
  63. public void Abort()
  64. {
  65. if (_onlyPlaceToLoaderRoutine != null)
  66. {
  67. _onlyPlaceToLoaderRoutine.Abort();
  68. }
  69. _flipAxis.StopPositionOperation();
  70. _rotationAxis.StopPositionOperation();
  71. Runner.Stop("Manual Abort");
  72. }
  73. /// <summary>
  74. /// 监控
  75. /// </summary>
  76. /// <returns></returns>
  77. public RState Monitor()
  78. {
  79. Runner.Run(PlaceStep.OnlyPlaceToLoader,StartOnlyPlaceToLoader,_delay_1ms)
  80. .WaitWithStopCondition(PlaceStep.OnlyPlaceToLoaderWait,CheckPlaceEndStatus,CheckPlaceStopStatus)
  81. .Run(PlaceStep.SwitchWaferHolder,SwitchWaferHolderSideWafer,_delay_1ms)
  82. .Run(PlaceStep.LastRotationHomeStation, () => _rotationAxis.PositionStation("Home"), _delay_1ms)
  83. .WaitWithStopCondition(PlaceStep.LastRotationHomeStationWait, CheckRotationPositionStatus, CheckRotationPositionRunStop)
  84. .End(PlaceStep.End, NullFun, _delay_1ms);
  85. return Runner.Status;
  86. }
  87. /// <summary>
  88. /// 执行放片至Loader
  89. /// </summary>
  90. /// <returns></returns>
  91. private bool StartOnlyPlaceToLoader()
  92. {
  93. return _onlyPlaceToLoaderRoutine.Start(_pufSide,_loaderSide) == RState.Running;
  94. }
  95. /// <summary>
  96. /// 检验放片状态
  97. /// </summary>
  98. /// <returns></returns>
  99. private bool CheckPlaceEndStatus()
  100. {
  101. return _onlyPlaceToLoaderRoutine.Monitor() ==RState.End;
  102. }
  103. /// <summary>
  104. /// 检验放片停止状态
  105. /// </summary>
  106. /// <returns></returns>
  107. private bool CheckPlaceStopStatus()
  108. {
  109. RState state = _onlyPlaceToLoaderRoutine.Monitor();
  110. if(state==RState.Failed||state==RState.Timeout)
  111. {
  112. NotifyError(eEvent.ERR_PUF, "puf place wafer failed", 0);
  113. return true;
  114. }
  115. return false;
  116. }
  117. /// <summary>
  118. /// WaferHolder交换片
  119. /// </summary>
  120. /// <returns></returns>
  121. private bool SwitchWaferHolderSideWafer()
  122. {
  123. WaferHolderInfo waferHolderInfo = _loaderEntity.WaferHolderInfo;
  124. if (waferHolderInfo != null)
  125. {
  126. if (_loaderSide==SIDE_A)
  127. {
  128. WaferManager.Instance.WaferMoved(ModuleHelper.Converter(Module), 1, ModuleName.Loader1, 0);
  129. WaferInfo loaderWaferInfo = WaferManager.Instance.GetWafer(ModuleName.Loader1, 0);
  130. waferHolderInfo.WaferAId = loaderWaferInfo.WaferID;
  131. waferHolderInfo.WaferAType = (int)loaderWaferInfo.WaferType;
  132. WaferHolderDataRecorder.UpdateWaferHolderData(waferHolderInfo.Id, waferHolderInfo);
  133. MaterialTrackerManager.Instance.UpdateModuleMaterial(ModuleName.Loader1.ToString());
  134. }
  135. else
  136. {
  137. WaferManager.Instance.WaferMoved(ModuleHelper.Converter(Module), 1, ModuleName.Loader1, 1);
  138. WaferInfo loaderWaferInfo = WaferManager.Instance.GetWafer(ModuleName.Loader1, 1);
  139. waferHolderInfo.WaferBId = loaderWaferInfo.WaferID;
  140. waferHolderInfo.WaferBType = (int)loaderWaferInfo.WaferType;
  141. WaferHolderDataRecorder.UpdateWaferHolderData(waferHolderInfo.Id, waferHolderInfo);
  142. MaterialTrackerManager.Instance.UpdateModuleMaterial(ModuleName.Loader1.ToString());
  143. }
  144. }
  145. return true;
  146. }
  147. /// <summary>
  148. /// 检验Rotation移动状态
  149. /// </summary>
  150. /// <returns></returns>
  151. private bool CheckRotationPositionStatus()
  152. {
  153. return _rotationAxis.Status == RState.End;
  154. }
  155. /// <summary>
  156. /// 检验Rotation是否还在运动
  157. /// </summary>
  158. /// <returns></returns>
  159. private bool CheckRotationPositionRunStop()
  160. {
  161. bool result= _rotationAxis.Status == RState.Failed;
  162. if (result)
  163. {
  164. NotifyError(eEvent.ERR_PUF, "rotation axis goto home failed", 0);
  165. }
  166. return result;
  167. }
  168. /// <summary>
  169. /// 启动
  170. /// </summary>
  171. /// <param name="objs"></param>
  172. /// <returns></returns>
  173. public RState Start(params object[] objs)
  174. {
  175. _pufSide = objs[0].ToString();
  176. _loaderEntity = Singleton<RouteManager>.Instance.GetModule<LoaderEntity>(ModuleName.Loader1.ToString());
  177. _flipAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Flip");
  178. _rotationAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Rotation");
  179. _vacuum = DEVICE.GetDevice<PufVacuum>($"{Module}.Vacuum");
  180. _gantryAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Transporter2}.Gantry");
  181. if (!CheckPreCondition())
  182. {
  183. return RState.Failed;
  184. }
  185. GetCrsAxis();
  186. _onlyPlaceToLoaderRoutine = new PufOnlyPlaceToLoaderRoutine(Module.ToString());
  187. return Runner.Start(Module, "Place To Loader");
  188. }
  189. /// <summary>
  190. /// 检验是否存在Wafer
  191. /// </summary>
  192. /// <returns></returns>
  193. private bool CheckWaferPresent()
  194. {
  195. if (_pufSide == "SideA")
  196. {
  197. if (!_vacuum.ChuckAWaferPresent)
  198. {
  199. NotifyError(eEvent.ERR_PUF, $"{_pufSide} has no Wafer", -1);
  200. return false;
  201. }
  202. }
  203. else
  204. {
  205. if (!_vacuum.ChuckBWaferPresent)
  206. {
  207. NotifyError(eEvent.ERR_PUF, $"{_pufSide} has no Wafer",-1);
  208. return false;
  209. }
  210. }
  211. return true;
  212. }
  213. /// <summary>
  214. /// 检验前置条件
  215. /// </summary>
  216. /// <returns></returns>
  217. private bool CheckPreCondition()
  218. {
  219. if(!CheckWaferPresent())
  220. {
  221. return false;
  222. }
  223. bool isLoaderInstall = ModuleHelper.IsInstalled(ModuleName.Loader1);
  224. if (isLoaderInstall)
  225. {
  226. JetAxisBase loaderRotationaxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.Rotation");
  227. if (loaderRotationaxis != null)
  228. {
  229. double loaderRotationPosition = loaderRotationaxis.MotionData.MotorPosition;
  230. if (!loaderRotationaxis.CheckPositionInStationIgnoreWaferSize(loaderRotationPosition, "LOAD"))
  231. {
  232. NotifyError(eEvent.ERR_PUF, $"Loader Rotation {loaderRotationPosition} is not in LOAD", -1);
  233. return false;
  234. }
  235. bool isLoadA = loaderRotationaxis.CheckPositionInStationIgnoreWaferSize(loaderRotationPosition, "LOADA");
  236. bool isLoadB = loaderRotationaxis.CheckPositionInStationIgnoreWaferSize(loaderRotationPosition, "LOADB");
  237. _loaderSide = isLoadA ? SIDE_A : SIDE_B;
  238. }
  239. string side = _loaderSide == SIDE_A ? "A" : "B";
  240. GetLoaderSide();
  241. if (_loaderSideDevice.SideData.WaferPresent)
  242. {
  243. NotifyError(eEvent.ERR_PUF, $"{_loaderSideDevice.Module}.{_loaderSideDevice.Name} wafer present sensor is true", -1);
  244. return false;
  245. }
  246. //Loader1.SwingA 在Open
  247. JetAxisBase loaderShuttleAAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.Shuttle{side}");
  248. if (loaderShuttleAAxis != null)
  249. {
  250. double loaderShuttleAPosition = loaderShuttleAAxis.MotionData.MotorPosition;
  251. if (!loaderShuttleAAxis.CheckPositionInStationIgnoreWaferSize(loaderShuttleAPosition, "OUT"))
  252. {
  253. NotifyError(eEvent.ERR_PUF, $"Loader Shuttle{side} {loaderShuttleAPosition} is not in OUT", -1);
  254. return false;
  255. }
  256. }
  257. //Loader1.TiltA 在HORI
  258. JetAxisBase loaderTiltAAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.Tilt{side}");
  259. if (loaderTiltAAxis != null)
  260. {
  261. double loaderTiltAPosition = loaderTiltAAxis.MotionData.MotorPosition;
  262. if (!loaderTiltAAxis.CheckPositionIsInStation(loaderTiltAPosition, "HORI"))
  263. {
  264. NotifyError(eEvent.ERR_PUF, $"Loader Tilt{side} {loaderTiltAPosition} is not in HORI", -1);
  265. return false;
  266. }
  267. }
  268. //Loader Handle Wafer状态确认
  269. // Lip Seal Vacuum "ON"
  270. if (!_loaderSideDevice.SideData.CRSVacuum)
  271. {
  272. NotifyError(eEvent.ERR_PUF, "Loader1 LS Vacuum is off", -1);
  273. return false;
  274. }
  275. //Bernoulli Bladder "ON",Retracted Green Light
  276. if (!_loaderSideDevice.SideData.BernoulliBladder)
  277. {
  278. NotifyError(eEvent.ERR_PUF, "Loader1 Bernoulli Bladder is off",-1);
  279. return false;
  280. }
  281. //其他SideA/B均为OFF
  282. if (_loaderSideDevice.SideData.BernoulliN2)
  283. {
  284. NotifyError(eEvent.ERR_PUF, "Loader1 Bernoulli N2 is on",-1);
  285. return false;
  286. }
  287. }
  288. double rotationPosition = _rotationAxis.MotionData.MotorPosition;
  289. if (_rotationAxis.CheckPositionIsEmpty(rotationPosition))
  290. {
  291. LOG.WriteLog(eEvent.ERR_PUF, Module, $"rotation axis {rotationPosition} is not at Station");
  292. return false;
  293. }
  294. double flipPosition = _flipAxis.MotionData.MotorPosition;
  295. if (_flipAxis.CheckPositionIsEmpty(flipPosition))
  296. {
  297. LOG.WriteLog(eEvent.ERR_PUF, Module, $"flip axis {flipPosition} is not at Station");
  298. return false;
  299. }
  300. return true;
  301. }
  302. /// <summary>
  303. /// 获取LoaderSide
  304. /// </summary>
  305. private void GetLoaderSide()
  306. {
  307. if (_loaderSide==SIDE_A)
  308. {
  309. _loaderSideDevice = DEVICE.GetDevice<LoaderSideDevice>($"{ModuleName.Loader1}.SideA");
  310. }
  311. else
  312. {
  313. _loaderSideDevice = DEVICE.GetDevice<LoaderSideDevice>($"{ModuleName.Loader1}.SideB");
  314. }
  315. }
  316. /// <summary>
  317. /// 获取lipseal Axis
  318. /// </summary>
  319. private void GetCrsAxis()
  320. {
  321. if(_loaderSide==SIDE_A)
  322. {
  323. _loaderCrsAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.LSA");
  324. }
  325. else
  326. {
  327. _loaderCrsAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.LSB");
  328. }
  329. }
  330. }
  331. }