TransporterPickUpMoveToRoutine.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. using Aitex.Core.RT.Device;
  2. using Aitex.Core.RT.Log;
  3. using Aitex.Core.RT.Routine;
  4. using Aitex.Core.RT.SCCore;
  5. using Aitex.Core.Util;
  6. using MECF.Framework.Common.Beckhoff.Station;
  7. using MECF.Framework.Common.Equipment;
  8. using MECF.Framework.Common.Layout;
  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.AXIS.CANOpen;
  16. using CyberX8_RT.Devices.Facilities;
  17. using CyberX8_RT.Devices.TransPorter;
  18. using CyberX8_RT.Modules.Loader;
  19. using System;
  20. using System.Collections.Generic;
  21. using System.Linq;
  22. using System.Text;
  23. using System.Threading.Tasks;
  24. namespace CyberX8_RT.Modules.Transporter
  25. {
  26. public class TransporterPickUpMoveToRoutine : RoutineBase, IRoutine
  27. {
  28. private enum TransferStep
  29. {
  30. CheckStatus,
  31. PickUpFrom,
  32. PickUpFromWait,
  33. MoveTo,
  34. MoveToWait,
  35. End
  36. }
  37. #region 内部变量
  38. private string _fromCellName;
  39. private string _toCellName;
  40. private JetAxisBase _gantryAxis;
  41. private JetAxisBase _elevatorAxis;
  42. private LoaderEntity _loaderEntity;
  43. private JetAxisBase _loaderRotationAxis;
  44. private SystemFacilities _facilities;
  45. private TransporterPickUpFromRoutine _pickUpRoutine;
  46. private TransporterMoveToRoutine _moveToRoutine;
  47. #endregion
  48. /// <summary>
  49. /// 构造函数
  50. /// </summary>
  51. /// <param name="module"></param>
  52. public TransporterPickUpMoveToRoutine(string module) : base(module)
  53. {
  54. _pickUpRoutine=new TransporterPickUpFromRoutine(module);
  55. _moveToRoutine = new TransporterMoveToRoutine(module);
  56. }
  57. /// <summary>
  58. /// 中止
  59. /// </summary>
  60. public void Abort()
  61. {
  62. Runner.Stop("Manual Abort");
  63. }
  64. /// <summary>
  65. /// 监控
  66. /// </summary>
  67. /// <returns></returns>
  68. public RState Monitor()
  69. {
  70. Runner.Run(TransferStep.CheckStatus, CheckStartPreConfition,_delay_1ms)
  71. //1.1 PickupFrom
  72. .Run(TransferStep.PickUpFrom, () => { return _pickUpRoutine.Start(_fromCellName) == RState.Running; }, _delay_1ms)
  73. .WaitWithStopCondition(TransferStep.PickUpFromWait, ()=>CommonFunction.CheckRoutineEndState(_pickUpRoutine), CheckPickupStopStatus)
  74. //1.2 Move to
  75. .Run(TransferStep.MoveTo, () => { return _moveToRoutine.Start(_toCellName) == RState.Running; }, _delay_1ms)
  76. .WaitWithStopCondition(TransferStep.MoveToWait, ()=>CommonFunction.CheckRoutineEndState(_moveToRoutine), CheckMoveToStopStatus)
  77. .End(TransferStep.End,LastChangeWafer,100);
  78. return Runner.Status;
  79. }
  80. /// <summary>
  81. /// 检验pickup异常状态
  82. /// </summary>
  83. /// <returns></returns>
  84. private bool CheckPickupStopStatus()
  85. {
  86. bool result = CommonFunction.CheckRoutineStopState(_pickUpRoutine);
  87. if (result)
  88. {
  89. NotifyError(eEvent.ERR_TRANSPORTER, $"PickUp MoveTo Routine\r\nPickUp Routine\r\n{_pickUpRoutine.ErrorMsg}", 0);
  90. }
  91. return result;
  92. }
  93. /// <summary>
  94. /// 检验MoveTo异常状态
  95. /// </summary>
  96. /// <returns></returns>
  97. private bool CheckMoveToStopStatus()
  98. {
  99. bool result = CommonFunction.CheckRoutineStopState(_moveToRoutine);
  100. if (result)
  101. {
  102. NotifyError(eEvent.ERR_TRANSPORTER, $"PickUpMoveTo Routine\r\nMoveTo Routine\r\n_moveToRoutine.ErrorMsg", 1);
  103. }
  104. return result;
  105. }
  106. /// <summary>
  107. /// 检验前置条件
  108. /// </summary>
  109. /// <returns></returns>
  110. private bool CheckPreCondition()
  111. {
  112. if(!_gantryAxis.IsSwitchOn)
  113. {
  114. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} gantry axis is not switch on ",-1);
  115. return false;
  116. }
  117. if (!_gantryAxis.IsHomed)
  118. {
  119. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} gantry axis is not homed ", -1);
  120. return false;
  121. }
  122. if (!_elevatorAxis.IsSwitchOn)
  123. {
  124. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} elevator axis is not switch on ",-1);
  125. return false;
  126. }
  127. if (!_elevatorAxis.IsHomed)
  128. {
  129. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} elevator axis is not homed ", -1);
  130. return false;
  131. }
  132. return true;
  133. }
  134. /// <summary>
  135. /// 最后交换Wafer
  136. /// </summary>
  137. /// <returns></returns>
  138. private bool LastChangeWafer()
  139. {
  140. ModuleName sourceModule;
  141. if (_fromCellName.ToLower() == "loader")
  142. {
  143. sourceModule = ModuleName.Loader1;
  144. }
  145. else
  146. {
  147. sourceModule = (ModuleName)Enum.Parse(typeof(ModuleName), _fromCellName);
  148. }
  149. ModuleName destModule;
  150. if (_toCellName.ToLower() == "loader")
  151. {
  152. destModule = ModuleName.Loader1;
  153. }
  154. else
  155. {
  156. destModule = (ModuleName)Enum.Parse(typeof(ModuleName), _toCellName);
  157. }
  158. if (WaferManager.Instance.CheckHasWafer(sourceModule, 0))
  159. {
  160. WaferManager.Instance.WaferMoved(sourceModule, 0, destModule, 0);
  161. }
  162. if (WaferManager.Instance.CheckHasWafer(sourceModule, 1))
  163. {
  164. WaferManager.Instance.WaferMoved(sourceModule, 1, destModule, 1);
  165. }
  166. return true;
  167. }
  168. /// <summary>
  169. /// 启动
  170. /// </summary>
  171. /// <param name="objs"></param>
  172. /// <returns></returns>
  173. public RState Start(params object[] objs)
  174. {
  175. _fromCellName = objs[0].ToString();
  176. _toCellName = objs[1].ToString();
  177. InitializeParameters();
  178. return Runner.Start(Module, $"Pickup {_fromCellName} Moveto {_toCellName}");
  179. }
  180. /// <summary>
  181. /// 初始化Parameters
  182. /// </summary>
  183. private void InitializeParameters()
  184. {
  185. _elevatorAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Elevator");
  186. _gantryAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Gantry");
  187. _loaderEntity = Singleton<RouteManager>.Instance.GetModule<LoaderEntity>(ModuleName.Loader1.ToString());
  188. _loaderRotationAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.Rotation");
  189. _facilities = DEVICE.GetDevice<SystemFacilities>("System.Facilities");
  190. }
  191. /// <summary>
  192. /// 启动校验条件
  193. /// </summary>
  194. /// <returns></returns>
  195. private bool CheckStartPreConfition()
  196. {
  197. if (!CheckPreCondition())
  198. {
  199. return false;
  200. }
  201. double elevatorPosition = _elevatorAxis.MotionData.MotorPosition;
  202. if (!_elevatorAxis.CheckPositionIsInStation(elevatorPosition, "Up"))
  203. {
  204. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} elevator axis {elevatorPosition} is no int Up station",-1);
  205. return false;
  206. }
  207. if (!_loaderEntity.IsHomed)
  208. {
  209. NotifyError(eEvent.ERR_TRANSPORTER, $"{ModuleName.Loader1} is not homed",-1);
  210. return false;
  211. }
  212. if (_toCellName == "Loader" || _fromCellName == "Loader")
  213. {
  214. double loaderRotationPosition = _loaderRotationAxis.MotionData.MotorPosition;
  215. if (!_loaderRotationAxis.CheckPositionIsInStation(loaderRotationPosition, "TRNPA") &&
  216. !_loaderRotationAxis.CheckPositionIsInStation(loaderRotationPosition, "TRNPB"))
  217. {
  218. NotifyError(eEvent.ERR_TRANSPORTER, $"{ModuleName.Loader1} rotation axis {loaderRotationPosition} is not int TRNPA or TRNPB station", -1);
  219. return false;
  220. }
  221. }
  222. if (WaferHolderManager.Instance.HasWaferHolder(Module))
  223. {
  224. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} has wafer Shuttle", -1);
  225. return false;
  226. }
  227. if (!WaferHolderManager.Instance.HasWaferHolder(_fromCellName))
  228. {
  229. NotifyError(eEvent.ERR_TRANSPORTER, $"{_fromCellName} does not has wafer Shuttle", -1);
  230. return false;
  231. }
  232. if (WaferHolderManager.Instance.HasWaferHolder(_toCellName))
  233. {
  234. NotifyError(eEvent.ERR_TRANSPORTER, $"{_toCellName} already has wafer Shuttle",-1);
  235. return false;
  236. }
  237. //检验Facilities
  238. //var faciltiesResult = _facilities.CheckCDA();
  239. //if (!faciltiesResult.result)
  240. //{
  241. // NotifyError(eEvent.ERR_TRANSPORTER, faciltiesResult.reason, -1);
  242. // return false;
  243. //}
  244. return true;
  245. }
  246. /// <summary>
  247. /// 重试
  248. /// </summary>
  249. /// <param name="step"></param>
  250. public RState Retry(int step)
  251. {
  252. if (string.IsNullOrEmpty(_fromCellName))
  253. {
  254. NotifyError(eEvent.ERR_TRANSPORTER, "source cell is empty", step);
  255. return RState.Failed;
  256. }
  257. if (string.IsNullOrEmpty(_toCellName))
  258. {
  259. NotifyError(eEvent.ERR_TRANSPORTER, "target cell is empty", step);
  260. return RState.Failed;
  261. }
  262. InitializeParameters();
  263. List<Enum> preStepIds = new List<Enum>();
  264. if (step == 0 || step == -1)
  265. {
  266. return Runner.Retry(TransferStep.CheckStatus, preStepIds, Module, "PickUp Moveto Retry");
  267. }
  268. else
  269. {
  270. AddPreSteps(TransferStep.MoveTo, preStepIds);
  271. return Runner.Retry(TransferStep.MoveTo, preStepIds, Module, $"PickUp Moveto step {TransferStep.MoveTo} Retry");
  272. }
  273. }
  274. /// <summary>
  275. /// 忽略前
  276. /// </summary>
  277. /// <param name="step"></param>
  278. /// <param name="preStepIds"></param>
  279. private void AddPreSteps(TransferStep step, List<Enum> preStepIds)
  280. {
  281. for (int i = 0; i < (int)step; i++)
  282. {
  283. preStepIds.Add((TransferStep)i);
  284. }
  285. }
  286. /// <summary>
  287. /// 检验前面Unload完成状态
  288. /// </summary>
  289. /// <returns></returns>
  290. public bool CheckCompleteCondition(int index)
  291. {
  292. TransporterEntity transporterEntity = Singleton<RouteManager>.Instance.GetModule<TransporterEntity>(Module);
  293. if (transporterEntity.WaferHolderInfo==null)
  294. {
  295. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} does not have waferholder", index);
  296. return false;
  297. }
  298. double gantryPosition = _gantryAxis.MotionData.MotorPosition;
  299. if(!_gantryAxis.CheckPositionIsInStation(gantryPosition,_toCellName))
  300. {
  301. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} gantry not in {_toCellName}", index);
  302. return false;
  303. }
  304. return true;
  305. }
  306. }
  307. }