TransporterPickDownToRoutine.cs 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764
  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.Utilities;
  11. using MECF.Framework.Common.WaferHolder;
  12. using CyberX8_Core;
  13. using CyberX8_RT.Devices.AXIS;
  14. using CyberX8_RT.Devices.AXIS.CANOpen;
  15. using CyberX8_RT.Devices.Facilities;
  16. using CyberX8_RT.Devices.Loader;
  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. using CyberX8_RT.Devices.Metal;
  25. using CyberX8_RT.Devices.Rinse;
  26. using static Mono.Security.X509.X520;
  27. namespace CyberX8_RT.Modules.Transporter
  28. {
  29. public class TransporterPickDownToRoutine : RoutineBase, IRoutine
  30. {
  31. private enum PutDownStep
  32. {
  33. CheckPreStatus,
  34. TargetCellUnclamp,
  35. TargetCellUnclampWait,
  36. ElevatorUp,
  37. ElevatorUpWait,
  38. SafeMoveTo,
  39. CheckMoveToStatus,
  40. GantryPosition,
  41. GantryPositiolWait,
  42. ElevatorPositionToCellTop,
  43. ElevatorPositionToCellTopWait,
  44. Delay,
  45. CalculatePlaceSpeed,
  46. PlaceDelay,
  47. ElevatorPositionToCell,
  48. ElevatorPositionToCellWait,
  49. DropBlockLockoff,
  50. ElevatorGotoUp,
  51. ElevatorGotoUpWait,
  52. ConfirmWSPresent,
  53. UpdateWaferHolder,
  54. GantryPositionPark,
  55. GantryPositionParkWait,
  56. End
  57. }
  58. #region 内部变量
  59. private string _cellName;
  60. private string _otherModule;
  61. private JetAxisBase _gantryAxis;
  62. private JetAxisBase _elevatorAxis;
  63. private JetAxisBase _otherElevatorAxis;
  64. private JetAxisBase _loaderRotationAxis;
  65. private SystemFacilities _facilities;
  66. private TransporterCommon _transporterCommon;
  67. private TransporterConflictRoutine _conflictRoutine;
  68. private LoaderPreTransferUnclampRoutine _preTransferUnclampRoutine;
  69. private LoaderCommonDevice _loaderCommonDevice;
  70. ProcessLayoutCellItem _cellItem;
  71. private int _placeTime;
  72. private int _placeDelayTime;
  73. private int _velocity;
  74. private int _acceleration;
  75. private bool _bypassWaferHolderPresent;
  76. #endregion
  77. /// <summary>
  78. /// 构造函数
  79. /// </summary>
  80. /// <param name="module"></param>
  81. public TransporterPickDownToRoutine(string module) : base(module)
  82. {
  83. }
  84. /// <summary>
  85. /// 中止
  86. /// </summary>
  87. public void Abort()
  88. {
  89. Runner.Stop("Manual Abort");
  90. }
  91. /// <summary>
  92. /// 监控
  93. /// </summary>
  94. /// <returns></returns>
  95. public RState Monitor()
  96. {
  97. Runner.Run(PutDownStep.CheckPreStatus,CheckStartPreConfition,_delay_1ms)
  98. .Run(PutDownStep.TargetCellUnclamp, TargetCellUnclamp, _delay_1ms)
  99. .WaitWithStopCondition(PutDownStep.TargetCellUnclampWait, TargetCellUnclampEndStatus, TargetCellUnclampStopStatus)
  100. //1. Elevator 移动至Up
  101. .Run(PutDownStep.ElevatorUp, ElevatorGotoUp, _delay_1ms)
  102. .WaitWithStopCondition(PutDownStep.ElevatorUpWait, CheckElevatorPositionEndStatus, CheckElevatorPositionStopStatus)
  103. //2. other Transporter Safe Move
  104. .Run(PutDownStep.SafeMoveTo, SafeMoveTo, _delay_1ms)
  105. .WaitWithStopCondition(PutDownStep.CheckMoveToStatus, () => CommonFunction.CheckRoutineEndState(_conflictRoutine),
  106. CheckSafeMoveToStopStatus)
  107. //3. Gantry 移动
  108. .Run(PutDownStep.GantryPosition, GantryPositionToCell, _delay_1ms)
  109. .WaitWithStopCondition(PutDownStep.GantryPositiolWait, CheckGantryPositionStatus, CheckGantryPositionRunStop)
  110. //6. Elevator 移动至cellTop
  111. .Run(PutDownStep.ElevatorPositionToCellTop, ElevatorPositionToCellTop, _delay_1ms)
  112. .WaitWithStopCondition(PutDownStep.ElevatorPositionToCellTopWait, CheckElevatorPositionEndStatus, CheckElevatorPositionStopStatus)
  113. .Delay(PutDownStep.Delay, 500)
  114. //4. 确认Place 速度和加速度
  115. .Run(PutDownStep.CalculatePlaceSpeed, CalculatePownDownSpeed, _delay_1ms)
  116. //5. Pickup delay
  117. .Delay(PutDownStep.PlaceDelay, _placeDelayTime * 1000)
  118. //7. Elevator 移动至cell
  119. .Run(PutDownStep.ElevatorPositionToCell, ElevatorPositionToCell, _delay_1ms)
  120. .WaitWithStopCondition(PutDownStep.ElevatorPositionToCellWait, CheckElevatorPositionEndStatus, CheckElevatorPositionStopStatus)
  121. //8. DropBlockLock off
  122. .Run(PutDownStep.DropBlockLockoff, DropBlockLockoff , _delay_1ms)
  123. //9. Elevator移动至Up
  124. .Run(PutDownStep.ElevatorGotoUp, ElevatorGotoUp, _delay_1ms)
  125. .WaitWithStopCondition(PutDownStep.ElevatorGotoUpWait, CheckElevatorPositionEndStatus, CheckElevatorPositionStopStatus)
  126. //10. 确认WSPresent信号
  127. .Wait(PutDownStep.ConfirmWSPresent,ConfirmWSPresentSensorOff,_delay_2s)
  128. //11. Wafer Holder location update
  129. .Run(PutDownStep.UpdateWaferHolder,WaferHolderTransfer,_delay_1ms)
  130. //12. Gantry Position To Park
  131. .Run(PutDownStep.GantryPositionPark, GantryBackToPark, _delay_1ms)
  132. .WaitWithStopCondition(PutDownStep.GantryPositionParkWait, CheckGantryParkPositionStatus, CheckGantryParkPositionRunStop)
  133. .End(PutDownStep.End,NullFun,100);
  134. return Runner.Status;
  135. }
  136. /// <summary>
  137. /// 目标cell unclamp
  138. /// </summary>
  139. /// <returns></returns>
  140. private bool TargetCellUnclamp()
  141. {
  142. if (_cellName == "Loader")
  143. {
  144. bool result = _preTransferUnclampRoutine.Start() == RState.Running;
  145. if (!result)
  146. {
  147. NotifyError(eEvent.ERR_TRANSPORTER, "Loader Unclamp failed", 0);
  148. }
  149. return result;
  150. }
  151. else
  152. {
  153. _cellItem = ProcessLayoutManager.Instance.GetProcessLayoutCellItemByModuleName(_cellName);
  154. if (_cellItem != null)
  155. {
  156. if (Enum.TryParse(_cellItem.ModuleName, out ModuleName cellModuleName))
  157. {
  158. if (ModuleHelper.IsRinse(cellModuleName))
  159. {
  160. RinseDevice rinseDevice = DEVICE.GetDevice<RinseDevice>(_cellItem.ModuleName);
  161. if (rinseDevice != null)
  162. {
  163. bool result = rinseDevice.WaferHolderClampValveOff();
  164. if (!result)
  165. {
  166. NotifyError(eEvent.ERR_TRANSPORTER, $"{_cellItem.ModuleName} Clamp off failed", 0);
  167. }
  168. return result;
  169. }
  170. }
  171. else if (ModuleHelper.IsMetal(cellModuleName))
  172. {
  173. MetalCellDevice metalCellDevice = DEVICE.GetDevice<MetalCellDevice>(_cellItem.ModuleName);
  174. if (metalCellDevice != null)
  175. {
  176. bool result = metalCellDevice.WaferHolderClampOff();
  177. if (!result)
  178. {
  179. NotifyError(eEvent.ERR_TRANSPORTER, $"{_cellItem.ModuleName} Clamp off failed", 0);
  180. }
  181. return result;
  182. }
  183. }
  184. }
  185. }
  186. }
  187. return true;
  188. }
  189. /// <summary>
  190. /// 目标Cell Unclamp状态
  191. /// </summary>
  192. /// <returns></returns>
  193. private bool TargetCellUnclampEndStatus()
  194. {
  195. if (_cellName == "Loader")
  196. {
  197. return CommonFunction.CheckRoutineEndState(_preTransferUnclampRoutine);
  198. }
  199. else
  200. {
  201. _cellItem = ProcessLayoutManager.Instance.GetProcessLayoutCellItemByModuleName(_cellName);
  202. if (_cellItem != null)
  203. {
  204. if (Enum.TryParse(_cellItem.ModuleName, out ModuleName cellModuleName))
  205. {
  206. if (ModuleHelper.IsRinse(cellModuleName))
  207. {
  208. RinseDevice rinseDevice = DEVICE.GetDevice<RinseDevice>(_cellItem.ModuleName);
  209. if (rinseDevice != null)
  210. {
  211. return rinseDevice.RinseData.WaferHolderClamp == false;
  212. }
  213. }
  214. else if (ModuleHelper.IsMetal(cellModuleName))
  215. {
  216. MetalCellDevice metalCellDevice = DEVICE.GetDevice<MetalCellDevice>(_cellItem.ModuleName);
  217. if (metalCellDevice != null)
  218. {
  219. return metalCellDevice.ClampOff;
  220. }
  221. }
  222. }
  223. }
  224. }
  225. return true;
  226. }
  227. /// <summary>
  228. /// 目标Cell Unclamp运行中止状态
  229. /// </summary>
  230. /// <returns></returns>
  231. private bool TargetCellUnclampStopStatus()
  232. {
  233. if (_cellName == "Loader")
  234. {
  235. bool result = CommonFunction.CheckRoutineStopState(_preTransferUnclampRoutine);
  236. if (result)
  237. {
  238. NotifyError(eEvent.ERR_TRANSPORTER, "Loader Unclamp failed", 0);
  239. }
  240. return result;
  241. }
  242. return false;
  243. }
  244. /// <summary>
  245. /// Elevator goto Up
  246. /// </summary>
  247. /// <returns></returns>
  248. private bool ElevatorGotoUp()
  249. {
  250. bool result= _elevatorAxis.PositionStation("UP", false);
  251. if (!result)
  252. {
  253. NotifyError(eEvent.ERR_TRANSPORTER, "elevator goto up failed", 0);
  254. }
  255. return result;
  256. }
  257. /// <summary>
  258. /// 检验前置条件
  259. /// </summary>
  260. /// <returns></returns>
  261. private bool CheckPreCondition()
  262. {
  263. if(!_gantryAxis.IsSwitchOn)
  264. {
  265. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} gantry axis is not switch on ", -1);
  266. return false;
  267. }
  268. if (!_gantryAxis.IsHomed)
  269. {
  270. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} gantry axis is not homed ",-1);
  271. return false;
  272. }
  273. if (!_elevatorAxis.IsSwitchOn)
  274. {
  275. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} elevator axis is not switch on ", -1);
  276. return false;
  277. }
  278. if (!_elevatorAxis.IsHomed)
  279. {
  280. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} elevator axis is not homed ",-1);
  281. return false;
  282. }
  283. return true;
  284. }
  285. /// <summary>
  286. /// 安全避障移动
  287. /// </summary>
  288. /// <returns></returns>
  289. private bool SafeMoveTo()
  290. {
  291. _cellItem = ProcessLayoutManager.Instance.GetProcessLayoutCellItemByModuleName(_cellName);
  292. string stationName = _cellName;
  293. if (_cellItem != null)
  294. {
  295. if (_cellName.ToLower() != "loader" && _cellName.ToLower() != "park")
  296. {
  297. stationName = $"Cell{_cellItem.CellId}";
  298. }
  299. }
  300. else
  301. {
  302. NotifyError(eEvent.ERR_TRANSPORTER, $"{_cellName} not in layout",0);
  303. return false;
  304. }
  305. var result = _gantryAxis.GetPositionByStation(stationName);
  306. if (result.success)
  307. {
  308. bool isPositive = false;
  309. if (_gantryAxis.MotionData.MotorPosition < result.position)
  310. {
  311. isPositive = true;
  312. }
  313. return _conflictRoutine.Start(result.position, isPositive) == RState.Running;
  314. }
  315. else
  316. {
  317. NotifyError(eEvent.ERR_TRANSPORTER, $"{_cellName} not in station list",0);
  318. return false;
  319. }
  320. }
  321. /// <summary>
  322. /// 检验安全避让异常结束状态
  323. /// </summary>
  324. /// <returns></returns>
  325. private bool CheckSafeMoveToStopStatus()
  326. {
  327. bool result = CommonFunction.CheckRoutineStopState(_conflictRoutine);
  328. if (result)
  329. {
  330. NotifyError(eEvent.ERR_TRANSPORTER, "Safe Move failed", 0);
  331. }
  332. return result;
  333. }
  334. /// <summary>
  335. /// Gantry Position To cell
  336. /// </summary>
  337. /// <returns></returns>
  338. private bool GantryPositionToCell()
  339. {
  340. _cellItem= ProcessLayoutManager.Instance.GetProcessLayoutCellItemByModuleName(_cellName);
  341. bool result = false;
  342. if (_cellItem != null)
  343. {
  344. if (_cellName.ToLower() != "loader"&&_cellName.ToLower()!="park")
  345. {
  346. result= _gantryAxis.PositionStation($"Cell{_cellItem.CellId}",false);
  347. }
  348. else
  349. {
  350. result = _gantryAxis.PositionStation(_cellName,false);
  351. }
  352. if (!result)
  353. {
  354. NotifyError(eEvent.ERR_TRANSPORTER, "gantry axis motion failed", 0);
  355. }
  356. return result;
  357. }
  358. else
  359. {
  360. NotifyError(eEvent.ERR_TRANSPORTER, $"{_cellName} not in layout",0);
  361. return false;
  362. }
  363. }
  364. /// <summary>
  365. /// Elevator Position to cellTop
  366. /// </summary>
  367. /// <returns></returns>
  368. private bool ElevatorPositionToCellTop()
  369. {
  370. bool result = _elevatorAxis.PositionStation("CellTop", false, _velocity, _acceleration, _acceleration);
  371. if (!result)
  372. {
  373. NotifyError(eEvent.ERR_TRANSPORTER, "elevator goto CellTop failed", 0);
  374. }
  375. return result;
  376. }
  377. /// <summary>
  378. /// Elevator Position to cell
  379. /// </summary>
  380. /// <returns></returns>
  381. private bool ElevatorPositionToCell()
  382. {
  383. bool result= false;
  384. if( _cellItem != null )
  385. {
  386. if (_cellName.ToLower()!="loader")
  387. {
  388. result= _elevatorAxis.PositionStation($"Cell{_cellItem.CellId}",false,_velocity,_acceleration,_acceleration);
  389. }
  390. else
  391. {
  392. result= _elevatorAxis.PositionStation(_cellName,false,_velocity,_acceleration,_acceleration);
  393. }
  394. if (!result)
  395. {
  396. NotifyError(eEvent.ERR_TRANSPORTER, "elevator axis motion failed", 0);
  397. }
  398. return result;
  399. }
  400. else
  401. {
  402. NotifyError(eEvent.ERR_TRANSPORTER, $"{_cellName} not in layout",0);
  403. return false;
  404. }
  405. }
  406. /// <summary>
  407. /// 检验Elevator移动状态
  408. /// </summary>
  409. /// <returns></returns>
  410. private bool CheckElevatorPositionEndStatus()
  411. {
  412. return _elevatorAxis.Status == RState.End;
  413. }
  414. /// <summary>
  415. /// 检验Vertical是否还在运动
  416. /// </summary>
  417. /// <returns></returns>
  418. private bool CheckElevatorPositionStopStatus()
  419. {
  420. bool result= _elevatorAxis.Status == RState.Failed||_elevatorAxis.Status==RState.Timeout;
  421. if(result)
  422. {
  423. NotifyError(eEvent.ERR_TRANSPORTER, "elevator axis motion failed", 0);
  424. }
  425. return result;
  426. }
  427. /// <summary>
  428. /// 检验Gantry移动状态
  429. /// </summary>
  430. /// <returns></returns>
  431. private bool CheckGantryPositionStatus()
  432. {
  433. return _gantryAxis.Status == RState.End;
  434. }
  435. /// <summary>
  436. /// 检验Gantry是否还在运动
  437. /// </summary>
  438. /// <returns></returns>
  439. private bool CheckGantryPositionRunStop()
  440. {
  441. bool result= _gantryAxis.Status == RState.Failed||_gantryAxis.Status==RState.Timeout;
  442. if(result)
  443. {
  444. NotifyError(eEvent.ERR_TRANSPORTER, "gantry axis motion failed", 0);
  445. }
  446. return result;
  447. }
  448. /// <summary>
  449. /// 计算放下速度
  450. /// </summary>
  451. /// <returns></returns>
  452. private bool CalculatePownDownSpeed()
  453. {
  454. if(_placeTime==0)
  455. {
  456. return true;
  457. }
  458. BeckhoffStationAxis stationAxis = BeckhoffStationLocationManager.Instance.GetStationAxis(Module, "Elevator", 0);
  459. Station upStation = stationAxis.Stations.Find(O => O.Name.EndsWith("CellTop")); Station cellStation = null;
  460. if (_cellName == "Loader")
  461. {
  462. cellStation = stationAxis.Stations.Find(O => O.Name.EndsWith("Loader"));
  463. }
  464. else
  465. {
  466. cellStation = stationAxis.Stations.Find(O => O.Name.EndsWith($"Cell{_cellItem.CellId}"));
  467. }
  468. if (upStation==null)
  469. {
  470. NotifyError(eEvent.ERR_TRANSPORTER, "CellTop is not in Station List", 0);
  471. return false;
  472. }
  473. if(cellStation==null)
  474. {
  475. NotifyError(eEvent.ERR_TRANSPORTER, $"Cell{_cellItem.CellId} is not in Station List",0);
  476. return false;
  477. }
  478. if(!double.TryParse(cellStation.Position,out double cellStationPosition))
  479. {
  480. NotifyError(eEvent.ERR_TRANSPORTER, $"Cell{_cellItem.CellId} Station Position is invalid",0);
  481. return false;
  482. }
  483. if (!double.TryParse(upStation.Position, out double upStationPosition))
  484. {
  485. NotifyError(eEvent.ERR_TRANSPORTER, $"Cell{_cellItem.CellId} Station Position is invalid",0);
  486. return false;
  487. }
  488. int distance =(int)(Math.Round(Math.Abs(cellStationPosition - upStationPosition)));
  489. double tmpVelocity = (double) distance/ _placeTime;
  490. _velocity = _elevatorAxis.CalculateMultiplySpeedRatio(_elevatorAxis.CalculateValueMultiplyScale(tmpVelocity));
  491. double tmpAccelaration = (double)(2 * distance) / Math.Pow(_placeTime, 2);
  492. _acceleration = _elevatorAxis.CalculateMultiplyAccelerationRatio(_elevatorAxis.CalculateValueMultiplyScale(tmpAccelaration));
  493. LOG.WriteBackgroundLog(eEvent.INFO_TRANSPORTER, Module, "adjust profile speed");
  494. return true;
  495. }
  496. /// <summary>
  497. /// 更新WaferHolder移动信息
  498. /// </summary>
  499. /// <returns></returns>
  500. private bool WaferHolderTransfer()
  501. {
  502. bool result= WaferHolderManager.Instance.TransferWaferHolder(Module,Module, _cellName);
  503. if (!result)
  504. {
  505. NotifyError(eEvent.ERR_TRANSPORTER, "tranfer waferHolder message failed", 0);
  506. }
  507. else
  508. {
  509. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  510. {
  511. WaferHolderInfo waferHolderInfo = WaferHolderManager.Instance.GetWaferHolder(_cellName);
  512. if (waferHolderInfo != null)
  513. {
  514. string strTime = DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss");
  515. waferHolderInfo.SchedulerModules.Add($"{strTime} {Module} => {_cellName}");
  516. }
  517. }
  518. }
  519. return result;
  520. }
  521. /// <summary>
  522. /// 确认WH Present Sensor off
  523. /// </summary>
  524. /// <returns></returns>
  525. private bool ConfirmWSPresentSensorOff()
  526. {
  527. if (_bypassWaferHolderPresent) return true;
  528. bool result= !_transporterCommon.TransporterData.WSHoldPresent;
  529. if(!result)
  530. {
  531. LOG.WriteLog(eEvent.INFO_TRANSPORTER, Module, "confirm WS Present sensor failed");
  532. }
  533. return result;
  534. }
  535. /// <summary>
  536. /// Gabtry是否需要回到
  537. /// </summary>
  538. /// <returns></returns>
  539. private bool NeedGantryBackToPark()
  540. {
  541. switch(_cellName)
  542. {
  543. case "Loader":
  544. case "Prewet":
  545. return true;
  546. default:
  547. return false;
  548. }
  549. }
  550. /// <summary>
  551. /// Gantry 回至Park
  552. /// </summary>
  553. /// <returns></returns>
  554. private bool GantryBackToPark()
  555. {
  556. if (NeedGantryBackToPark())
  557. {
  558. bool result= _gantryAxis.PositionStation("Park", false);
  559. if(!result)
  560. {
  561. NotifyError(eEvent.ERR_TRANSPORTER, "gantry back to park failed",0);
  562. }
  563. return result;
  564. }
  565. else
  566. {
  567. return true;
  568. }
  569. }
  570. /// <summary>
  571. /// 检验Gantry Park移动状态
  572. /// </summary>
  573. /// <returns></returns>
  574. private bool CheckGantryParkPositionStatus()
  575. {
  576. if (NeedGantryBackToPark())
  577. {
  578. return _gantryAxis.Status == RState.End;
  579. }
  580. else
  581. {
  582. return true;
  583. }
  584. }
  585. /// <summary>
  586. /// 检验Gantry Park是否还在运动
  587. /// </summary>
  588. /// <returns></returns>
  589. private bool CheckGantryParkPositionRunStop()
  590. {
  591. if (NeedGantryBackToPark())
  592. {
  593. bool result = _gantryAxis.Status == RState.Failed||_gantryAxis.Status==RState.Timeout;
  594. if(result)
  595. {
  596. NotifyError(eEvent.ERR_TRANSPORTER, "gantry motion failed", 0);
  597. }
  598. return result;
  599. }
  600. else
  601. {
  602. return false;
  603. }
  604. }
  605. /// <summary>
  606. /// 关闭DropBlockLock
  607. /// </summary>
  608. /// <returns></returns>
  609. private bool DropBlockLockoff()
  610. {
  611. if (_transporterCommon.TransporterData.Lock)
  612. {
  613. return _transporterCommon.UnlockOperation("", null);
  614. }
  615. return true;
  616. }
  617. /// <summary>
  618. /// 启动
  619. /// </summary>
  620. /// <param name="objs"></param>
  621. /// <returns></returns>
  622. public RState Start(params object[] objs)
  623. {
  624. _cellName = objs[0].ToString();
  625. _velocity = 0;
  626. _acceleration = 0;
  627. InitializeParameters();
  628. string preConfig = SC.GetConfigPreContent(_cellName);
  629. _bypassWaferHolderPresent = SC.GetValue<bool>("Transporter.BypassWaferHolderPresent");
  630. if (SC.ContainsItem($"{preConfig}.PlaceTimeSeconds"))
  631. {
  632. _placeTime = SC.GetValue<int>($"{preConfig}.PlaceTimeSeconds");
  633. }
  634. if (SC.ContainsItem($"{preConfig}.PlaceDelaySeconds"))
  635. {
  636. _placeDelayTime = SC.GetValue<int>($"{preConfig}.PlaceDelaySeconds");
  637. }
  638. _preTransferUnclampRoutine = new LoaderPreTransferUnclampRoutine(ModuleName.Loader1.ToString());
  639. return Runner.Start(Module, $"Pun Down To {_cellName}");
  640. }
  641. /// <summary>
  642. /// 初始化参数
  643. /// </summary>
  644. private void InitializeParameters()
  645. {
  646. _elevatorAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Elevator");
  647. _gantryAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Gantry");
  648. _loaderRotationAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.Rotation");
  649. _facilities = DEVICE.GetDevice<SystemFacilities>("System.Facilities");
  650. _conflictRoutine = new TransporterConflictRoutine(Module);
  651. _transporterCommon = DEVICE.GetDevice<TransporterCommon>($"{Module}.Common");
  652. _otherModule = Module == "Transporter2" ? "Transporter1" : "Transporter2";
  653. _otherElevatorAxis = DEVICE.GetDevice<JetAxisBase>($"{_otherModule}.Elevator");
  654. _loaderCommonDevice = DEVICE.GetDevice<LoaderCommonDevice>($"{ModuleName.Loader1}.Common");
  655. }
  656. /// <summary>
  657. /// 启动校验条件
  658. /// </summary>
  659. /// <returns></returns>
  660. private bool CheckStartPreConfition()
  661. {
  662. //所有轴上电并Homed
  663. bool result = CheckPreCondition();
  664. if(!result)
  665. {
  666. return false;
  667. }
  668. //Loader is Home
  669. if(ModuleHelper.IsInstalled(ModuleName.Loader1))
  670. {
  671. LoaderEntity loaderEntity = Singleton<RouteManager>.Instance.GetModule<LoaderEntity>(ModuleName.Loader1.ToString());
  672. if (loaderEntity != null && !loaderEntity.IsHomed)
  673. {
  674. NotifyError(eEvent.ERR_TRANSPORTER, $"{ModuleName.Loader1} is not homed", -1);
  675. return false;
  676. }
  677. }
  678. //若目标Cell为Loader, 则Loader需在TRNA或TRANB位置且WaferShuttlePresent信号on
  679. if (_cellName == "Loader")
  680. {
  681. double loaderRotationPosition = _loaderRotationAxis.MotionData.MotorPosition;
  682. if (!_loaderRotationAxis.CheckPositionIsInStation(loaderRotationPosition, "TRNPA") &&
  683. !_loaderRotationAxis.CheckPositionIsInStation(loaderRotationPosition, "TRNPB"))
  684. {
  685. NotifyError(eEvent.ERR_TRANSPORTER, $"{ModuleName.Loader1} rotation axis {loaderRotationPosition} is not int TRNPA or TRNPB station", -1);
  686. return false;
  687. }
  688. if (_loaderCommonDevice.CommonData.WaferHolderPresent)
  689. {
  690. NotifyError(eEvent.ERR_TRANSPORTER, $"{ModuleName.Loader1} WaferShuttlePresent is on", -1);
  691. return false;
  692. }
  693. }
  694. //Transporter应有WS信息
  695. if (!WaferHolderManager.Instance.HasWaferHolder(Module))
  696. {
  697. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} does not has wafer Shuttle",-1);
  698. return false;
  699. }
  700. //目标Cell没有WS信息
  701. if (WaferHolderManager.Instance.HasWaferHolder(_cellName))
  702. {
  703. NotifyError(eEvent.ERR_TRANSPORTER, $"Cell {_cellName} already has wafer Shuttle", -1);
  704. return false;
  705. }
  706. //检验Lock
  707. if (!_transporterCommon.TransporterData.Lock)
  708. {
  709. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} Drop block lock is off ", -1);
  710. return false;
  711. }
  712. //检验Wafer shuttle hold present
  713. if (!_bypassWaferHolderPresent && !_transporterCommon.TransporterData.WSHoldPresent)
  714. {
  715. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} Wafer shuttle hold present sensor is off ",-1);
  716. return false;
  717. }
  718. //检验Facilities
  719. //var faciltiesResult = _facilities.CheckCDA();
  720. //if (!faciltiesResult.result)
  721. //{
  722. // NotifyError(eEvent.ERR_TRANSPORTER, faciltiesResult.reason, -1);
  723. // return false;
  724. //}
  725. return true;
  726. }
  727. /// <summary>
  728. /// 重试
  729. /// </summary>
  730. /// <param name="step"></param>
  731. public RState Retry(int step)
  732. {
  733. InitializeParameters();
  734. List<Enum> preStepIds = new List<Enum>();
  735. return Runner.Retry(PutDownStep.CheckPreStatus, preStepIds, Module, "PickUp Moveto Retry");
  736. }
  737. /// <summary>
  738. /// 检验前面Unload完成状态
  739. /// </summary>
  740. /// <returns></returns>
  741. public bool CheckCompleteCondition(int index)
  742. {
  743. TransporterEntity transporterEntity = Singleton<RouteManager>.Instance.GetModule<TransporterEntity>(Module);
  744. if (transporterEntity.WaferHolderInfo != null)
  745. {
  746. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} has waferholder", index);
  747. return false;
  748. }
  749. if (!WaferHolderManager.Instance.HasWaferHolder(_cellName))
  750. {
  751. NotifyError(eEvent.ERR_TRANSPORTER, $"{_cellName} does not have waferholder", index);
  752. return false;
  753. }
  754. return true;
  755. }
  756. }
  757. }