TransporterPickUpFromRoutine.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  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.Rinse;
  25. using CyberX8_RT.Devices.Metal;
  26. using Aitex.Core.Common;
  27. namespace CyberX8_RT.Modules.Transporter
  28. {
  29. public class TransporterPickUpFromRoutine : RoutineBase, IRoutine
  30. {
  31. private enum PickUpStep
  32. {
  33. CheckPreCondition,
  34. DropBlockLockoff,
  35. ElevatorGotoUp,
  36. ElevatorGotoUpWait,
  37. SafeMoveTo,
  38. CheckMoveToStatus,
  39. GantryPosition,
  40. GantryPoisitionWait,
  41. ElevatorPositionToCell,
  42. ElevatorPositionToCellWait,
  43. Delay,
  44. DropBlockLockOn,
  45. CalculateLiftupSpeed,
  46. PickupDelay,
  47. ElevatorPositionToUp,
  48. ElevatorPositionToUpWait,
  49. UpdateWaferShuttle,
  50. CheckWSPresent,
  51. //ReadBarcodeConfirm,
  52. End
  53. }
  54. #region 内部变量
  55. private string _cellName;
  56. private JetAxisBase _gantryAxis;
  57. private JetAxisBase _elevatorAxis;
  58. private LoaderEntity _loaderEntity;
  59. private JetAxisBase _loaderRotationAxis;
  60. private SystemFacilities _facilities;
  61. private TransporterConflictRoutine _conflictRoutine;
  62. private TransporterCommon _transporterCommon;
  63. private LoaderCommonDevice _loaderCommonDevice;
  64. ProcessLayoutCellItem _cellItem;
  65. private int _pickupTime;
  66. private int _pickupDelayTime;
  67. private int _velocity;
  68. private int _acceleration;
  69. private bool _bypassWaferHolderPresent;
  70. private int _pickMaxRetries = 2;
  71. #endregion
  72. /// <summary>
  73. /// 构造函数
  74. /// </summary>
  75. /// <param name="module"></param>
  76. public TransporterPickUpFromRoutine(string module) : base(module)
  77. {
  78. }
  79. /// <summary>
  80. /// 中止
  81. /// </summary>
  82. public void Abort()
  83. {
  84. Runner.Stop("Manual Abort");
  85. }
  86. /// <summary>
  87. /// 监控
  88. /// </summary>
  89. /// <returns></returns>
  90. public RState Monitor()
  91. {
  92. Runner.Run(PickUpStep.CheckPreCondition, CheckStartPreConfition, _delay_1ms)
  93. //1. 确认DropBlockLock是否off
  94. .Run(PickUpStep.DropBlockLockoff, DropBlockLockoff, _delay_1ms)
  95. //2. Elevator go to up
  96. .Run(PickUpStep.ElevatorGotoUp, ElevatorGotoUP, _delay_1ms)
  97. .WaitWithStopCondition(PickUpStep.ElevatorGotoUpWait, CheckElevatorPositionEndStatus, CheckElevatorPositionEndStatus)
  98. //3. other Transporter Safe Move
  99. .Run(PickUpStep.SafeMoveTo, SafeMoveTo, _delay_1ms)
  100. .WaitWithStopCondition(PickUpStep.CheckMoveToStatus, () => CommonFunction.CheckRoutineEndState(_conflictRoutine),
  101. CheckSafeMoveToStopStatus)
  102. //4. Gantry 移动到目标位置
  103. .Run(PickUpStep.GantryPosition, GantryPositionToCell, _delay_1ms)
  104. .WaitWithStopCondition(PickUpStep.GantryPoisitionWait, CheckGantryPositionStatus, CheckGantryPositionRunStop)
  105. //5. Elevator 移动至对应cell位
  106. .Run(PickUpStep.ElevatorPositionToCell, ElevatorPositionToCell, _delay_1ms)
  107. .WaitWithStopCondition(PickUpStep.ElevatorPositionToCellWait, CheckElevatorPositionEndStatus, CheckElevatorPositionStopStatus)
  108. .Delay(PickUpStep.Delay,500)
  109. //6. Drop Block Lock on,抓取WS
  110. .Run(PickUpStep.DropBlockLockOn, DropBlockLockon, _delay_1ms)
  111. //7. 确认Elevator lift speed
  112. .Run(PickUpStep.CalculateLiftupSpeed,CalculateLiftupSpeed,_delay_1ms)
  113. //8. Pickup delay
  114. .Delay(PickUpStep.PickupDelay,_pickupDelayTime * 1000)
  115. //9. Elevator goto Up
  116. .Run(PickUpStep.ElevatorPositionToUp, ElevatorGotoUP, 100)
  117. .WaitWithStopCondition(PickUpStep.ElevatorPositionToUpWait, CheckElevatorPositionEndStatus, CheckElevatorPositionStopStatus)
  118. //10. Material Tracking Update
  119. .Run(PickUpStep.UpdateWaferShuttle, WaferShuttleTransfer,_delay_1ms)
  120. //11. 确认Transporter的Wafer shuttle hold present信号为on
  121. .Wait(PickUpStep.CheckWSPresent, CheckWSPresent, _delay_2s)
  122. //13. Read Barcode 确认与Material Tracking的转移是否一致
  123. //.Run(PickUpStep.ReadBarcodeConfirm,ReadBarcode,_delay_1ms)
  124. .End(PickUpStep.End,NullFun,100);
  125. return Runner.Status;
  126. }
  127. /// <summary>
  128. /// 关闭DropBlockLock
  129. /// </summary>
  130. /// <returns></returns>
  131. private bool DropBlockLockoff()
  132. {
  133. if (_transporterCommon.TransporterData.Lock)
  134. {
  135. return _transporterCommon.UnlockOperation("", null);
  136. }
  137. return true;
  138. }
  139. /// <summary>
  140. /// 打开DropBlockLock
  141. /// </summary>
  142. /// <returns></returns>
  143. private bool DropBlockLockon()
  144. {
  145. if (!_transporterCommon.TransporterData.Lock)
  146. {
  147. return _transporterCommon.LockOperation("", null);
  148. }
  149. return true;
  150. }
  151. /// <summary>
  152. /// 安全避障移动
  153. /// </summary>
  154. /// <returns></returns>
  155. private bool SafeMoveTo()
  156. {
  157. _cellItem = ProcessLayoutManager.Instance.GetProcessLayoutCellItemByModuleName(_cellName);
  158. string stationName = _cellName;
  159. if (_cellItem != null)
  160. {
  161. if (_cellName.ToLower() != "loader" && _cellName.ToLower() != "park")
  162. {
  163. stationName = $"Cell{_cellItem.CellId}";
  164. }
  165. }
  166. else
  167. {
  168. NotifyError(eEvent.ERR_TRANSPORTER, $"{_cellName} not in layout", 0);
  169. return false;
  170. }
  171. var result = _gantryAxis.GetPositionByStation(stationName);
  172. if(result.success)
  173. {
  174. bool isPositive = false;
  175. if(_gantryAxis.MotionData.MotorPosition<result.position)
  176. {
  177. isPositive = true;
  178. }
  179. return _conflictRoutine.Start(result.position, isPositive) == RState.Running;
  180. }
  181. else
  182. {
  183. NotifyError(eEvent.ERR_TRANSPORTER, $"{_cellName} not in station list",0);
  184. return false;
  185. }
  186. }
  187. /// <summary>
  188. /// 检验安全避让异常结束状态
  189. /// </summary>
  190. /// <returns></returns>
  191. private bool CheckSafeMoveToStopStatus()
  192. {
  193. bool result = CommonFunction.CheckRoutineStopState(_conflictRoutine);
  194. if (result)
  195. {
  196. NotifyError(eEvent.ERR_TRANSPORTER, "Safe Move failed", 0);
  197. }
  198. return result;
  199. }
  200. /// <summary>
  201. /// Gantry Position To cell
  202. /// </summary>
  203. /// <returns></returns>
  204. private bool GantryPositionToCell()
  205. {
  206. _cellItem= ProcessLayoutManager.Instance.GetProcessLayoutCellItemByModuleName(_cellName);
  207. bool result = false;
  208. if (_cellItem != null)
  209. {
  210. if (_cellName.ToLower() != "loader"&&_cellName.ToLower()!="park")
  211. {
  212. result= _gantryAxis.PositionStation($"Cell{_cellItem.CellId}", false);
  213. }
  214. else
  215. {
  216. result= _gantryAxis.PositionStation(_cellName,false);
  217. }
  218. if (!result)
  219. {
  220. NotifyError(eEvent.ERR_TRANSPORTER, "gantry axis motion failed", 0);
  221. }
  222. return result;
  223. }
  224. else
  225. {
  226. NotifyError(eEvent.ERR_TRANSPORTER, $"{_cellName} not in layout", 0);
  227. return false;
  228. }
  229. }
  230. /// <summary>
  231. /// Elevator Position to cell
  232. /// </summary>
  233. /// <returns></returns>
  234. private bool ElevatorPositionToCell()
  235. {
  236. bool result = false;
  237. if( _cellItem != null )
  238. {
  239. if (_cellName.ToLower()!="loader")
  240. {
  241. result= _elevatorAxis.PositionStation($"Cell{_cellItem.CellId}", false);
  242. }
  243. else
  244. {
  245. result= _elevatorAxis.PositionStation(_cellName, false);
  246. }
  247. if (!result)
  248. {
  249. NotifyError(eEvent.ERR_TRANSPORTER, "elevator axis motion failed", 0);
  250. }
  251. return result;
  252. }
  253. else
  254. {
  255. NotifyError(eEvent.ERR_TRANSPORTER, $"{_cellName} not in layout",0);
  256. return false;
  257. }
  258. }
  259. /// <summary>
  260. /// 检验Vertical移动状态
  261. /// </summary>
  262. /// <returns></returns>
  263. private bool CheckElevatorPositionEndStatus()
  264. {
  265. return _elevatorAxis.Status == RState.End;
  266. }
  267. /// <summary>
  268. /// 检验Vertical是否还在运动
  269. /// </summary>
  270. /// <returns></returns>
  271. private bool CheckElevatorPositionStopStatus()
  272. {
  273. bool result = _elevatorAxis.Status == RState.Failed || _elevatorAxis.Status == RState.Timeout ;
  274. if (result)
  275. {
  276. NotifyError(eEvent.ERR_TRANSPORTER, "elevator axis motion failed",0);
  277. }
  278. return result;
  279. }
  280. /// <summary>
  281. /// 检验Gantry移动状态
  282. /// </summary>
  283. /// <returns></returns>
  284. private bool CheckGantryPositionStatus()
  285. {
  286. return _gantryAxis.Status == RState.End;
  287. }
  288. /// <summary>
  289. /// 检验Gantry是否还在运动
  290. /// </summary>
  291. /// <returns></returns>
  292. private bool CheckGantryPositionRunStop()
  293. {
  294. bool result= _gantryAxis.Status == RState.Failed||_gantryAxis.Status==RState.Timeout;
  295. if(result)
  296. {
  297. NotifyError(eEvent.ERR_TRANSPORTER, "Gantry Motion failed", 0);
  298. }
  299. return result;
  300. }
  301. /// <summary>
  302. /// 计算提升速度
  303. /// </summary>
  304. /// <returns></returns>
  305. private bool CalculateLiftupSpeed()
  306. {
  307. if(_pickupTime==0)
  308. {
  309. return true;
  310. }
  311. BeckhoffStationAxis stationAxis = BeckhoffStationLocationManager.Instance.GetStationAxis(Module, "Elevator", 0);
  312. Station upStation = stationAxis.Stations.Find(O => O.Name.EndsWith("UP"));
  313. Station cellStation = null;
  314. if (_cellName == "Loader")
  315. {
  316. cellStation = stationAxis.Stations.Find(O => O.Name.EndsWith("Loader"));
  317. }
  318. else
  319. {
  320. cellStation = stationAxis.Stations.Find(O => O.Name.EndsWith($"Cell{_cellItem.CellId}"));
  321. }
  322. if(upStation==null)
  323. {
  324. NotifyError(eEvent.ERR_TRANSPORTER, "UP is not in Station List",0);
  325. return false;
  326. }
  327. if(cellStation==null)
  328. {
  329. NotifyError(eEvent.ERR_TRANSPORTER, $"Cell{_cellItem.CellId} is not in Station List",0);
  330. return false;
  331. }
  332. if(!double.TryParse(cellStation.Position,out double cellStationPosition))
  333. {
  334. NotifyError(eEvent.ERR_TRANSPORTER, $"Cell{_cellItem.CellId} Station Position is invalid",0);
  335. return false;
  336. }
  337. if (!double.TryParse(upStation.Position, out double upStationPosition))
  338. {
  339. NotifyError(eEvent.ERR_TRANSPORTER, $"Cell{_cellItem.CellId} Station Position is invalid", 0);
  340. return false;
  341. }
  342. int distance =(int)Math.Round(Math.Abs(cellStationPosition - upStationPosition));
  343. double tmpVelocity = (double) distance/ _pickupTime;
  344. _velocity = _elevatorAxis.CalculateMultiplySpeedRatio(_elevatorAxis.CalculateValueMultiplyScale(tmpVelocity));
  345. double tmpAccelaration = (double)(2 * distance) / Math.Pow(_pickupTime, 2);
  346. _acceleration = _elevatorAxis.CalculateMultiplyAccelerationRatio(_elevatorAxis.CalculateValueMultiplyScale(tmpAccelaration));
  347. LOG.WriteBackgroundLog(eEvent.INFO_TRANSPORTER, Module, "adjust profile speed");
  348. return true;
  349. }
  350. /// <summary>
  351. /// Elevator运动至UP
  352. /// </summary>
  353. /// <returns></returns>
  354. private bool ElevatorGotoUP()
  355. {
  356. bool result= _elevatorAxis.PositionStation("UP", false, _velocity, _acceleration, _acceleration);
  357. if(!result)
  358. {
  359. NotifyError(eEvent.ERR_TRANSPORTER, "elevator goto up failed",0);
  360. }
  361. return result;
  362. }
  363. /// <summary>
  364. /// 更新WaferHolder移动信息
  365. /// </summary>
  366. /// <returns></returns>
  367. private bool WaferShuttleTransfer()
  368. {
  369. bool isMetal = false;
  370. DateTime lastMetalRecipeTime = DateTime.Now;
  371. if(Enum.TryParse(_cellName,out ModuleName moduleName)&&ModuleHelper.IsMetal(moduleName))
  372. {
  373. isMetal = true;
  374. WaferHolderInfo info = WaferHolderManager.Instance.GetWaferHolder(_cellName);
  375. if (info != null)
  376. {
  377. lastMetalRecipeTime = info.LastMetalRecipeCompleteTime;
  378. }
  379. }
  380. bool result= WaferHolderManager.Instance.TransferWaferHolder(Module,_cellName, Module);
  381. if (!result)
  382. {
  383. NotifyError(eEvent.ERR_TRANSPORTER, "tranfer waferHolder message failed", 0);
  384. }
  385. else
  386. {
  387. if (!Singleton<RouteManager>.Instance.IsAutoRunning)
  388. {
  389. return true;
  390. }
  391. WaferHolderInfo waferHolderInfo = WaferHolderManager.Instance.GetWaferHolder(Module);
  392. if (waferHolderInfo == null)
  393. {
  394. return true;
  395. }
  396. string strTime = DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss");
  397. waferHolderInfo.SchedulerModules.Add($"{strTime} {_cellName} => {Module}");
  398. if (isMetal)
  399. {
  400. int waferShuttleSoakMaxTime = SC.GetValue<int>("Metal.WaferShuttleSoakMaxTime");
  401. double soakTime = Math.Round(DateTime.Now.Subtract(lastMetalRecipeTime).TotalMinutes,2);
  402. if (soakTime > waferShuttleSoakMaxTime)
  403. {
  404. LOG.WriteLog(eEvent.WARN_METAL, _cellName, $"time of {waferHolderInfo.Id} soak in metal is {soakTime} minute over {waferShuttleSoakMaxTime}");
  405. }
  406. else
  407. {
  408. LOG.WriteLog(eEvent.INFO_METAL, _cellName, $"time of {waferHolderInfo.Id} soak in metal is {soakTime} minute");
  409. }
  410. }
  411. }
  412. return result;
  413. }
  414. /// <summary>
  415. /// 检验WHPresent与Lock状态
  416. /// </summary>
  417. /// <returns></returns>
  418. private bool CheckWSPresent()
  419. {
  420. bool locked = _transporterCommon.TransporterData.Lock;
  421. bool whPresent= _transporterCommon.TransporterData.WSHoldPresent;
  422. bool result= locked && (whPresent||_bypassWaferHolderPresent);
  423. if (!result)
  424. {
  425. NotifyError(eEvent.ERR_TRANSPORTER, "check wafer Shuttle present and locked failed", 0);
  426. }
  427. return result;
  428. }
  429. /// <summary>
  430. /// 读取条码
  431. /// </summary>
  432. /// <returns></returns>
  433. private bool ReadBarcode()
  434. {
  435. string str=_transporterCommon.ReaderBarcode();
  436. str = str.Trim();
  437. if(!string.IsNullOrEmpty(str))
  438. {
  439. TransporterEntity transporterEntity = Singleton<RouteManager>.Instance.GetModule<TransporterEntity>(Module.ToString());
  440. if (transporterEntity == null)
  441. {
  442. return true;
  443. }
  444. WaferHolderInfo waferHolderInfo = transporterEntity.WaferHolderInfo;
  445. if (waferHolderInfo == null)
  446. {
  447. return true;
  448. }
  449. if (waferHolderInfo.Id == str)
  450. {
  451. return true;
  452. }
  453. WaferHolderManager.Instance.SwitchWaferHolderId(waferHolderInfo,Module,str);
  454. return true;
  455. }
  456. return true;
  457. }
  458. /// <summary>
  459. /// 启动
  460. /// </summary>
  461. /// <param name="objs"></param>
  462. /// <returns></returns>
  463. public RState Start(params object[] objs)
  464. {
  465. _cellName = objs[0].ToString();
  466. _elevatorAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Elevator");;
  467. _gantryAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Gantry");
  468. _loaderEntity = Singleton<RouteManager>.Instance.GetModule<LoaderEntity>(ModuleName.Loader1.ToString());
  469. _loaderRotationAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.Rotation");
  470. _conflictRoutine = new TransporterConflictRoutine(Module);
  471. _transporterCommon = DEVICE.GetDevice<TransporterCommon>($"{Module}.Common");
  472. _loaderCommonDevice = DEVICE.GetDevice<LoaderCommonDevice>($"{ModuleName.Loader1}.Common");
  473. _bypassWaferHolderPresent = SC.GetValue<bool>("Transporter.BypassWaferHolderPresent");
  474. _velocity = 0;
  475. _acceleration = 0;
  476. _pickMaxRetries = SC.GetValue<int>("Transporter.MaxPickTries");
  477. string preConfig = SC.GetConfigPreContent(_cellName);
  478. if (SC.ContainsItem($"{preConfig}.PickTimeSeconds"))
  479. {
  480. _pickupTime = SC.GetValue<int>($"{preConfig}.PickTimeSeconds");
  481. }
  482. if (SC.ContainsItem($"{preConfig}.PickDelaySeconds"))
  483. {
  484. _pickupDelayTime = SC.GetValue<int>($"{preConfig}.PickDelaySeconds");
  485. }
  486. return Runner.Start(Module, $"PickUpFrom {_cellName}");
  487. }
  488. /// <summary>
  489. /// 启动校验条件
  490. /// </summary>
  491. /// <returns></returns>
  492. private bool CheckStartPreConfition()
  493. {
  494. //所有轴上电并Homed
  495. bool result = CheckPreCondition();
  496. if(!result)
  497. {
  498. return false;
  499. }
  500. //Transporter的Wafer shuttle hold present信号为off
  501. if (!_bypassWaferHolderPresent && _transporterCommon.TransporterData.WSHoldPresent)
  502. {
  503. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} WaferShuttleHoldPresent is on", -1);
  504. return false;
  505. }
  506. //Loader is Home
  507. if (!_loaderEntity.IsHomed)
  508. {
  509. NotifyError(eEvent.ERR_TRANSPORTER, $"{ModuleName.Loader1} is not homed", -1);
  510. return false;
  511. }
  512. //若目标Cell为Loader, 则Loader需在TRNA或TRANB位置且WaferShuttlePresent信号on
  513. if (_cellName == "Loader")
  514. {
  515. double loaderRotationPosition = _loaderRotationAxis.MotionData.MotorPosition;
  516. if (!_loaderRotationAxis.CheckPositionIsInStation(loaderRotationPosition, "TRNPA") &&
  517. !_loaderRotationAxis.CheckPositionIsInStation(loaderRotationPosition, "TRNPB"))
  518. {
  519. NotifyError(eEvent.ERR_TRANSPORTER, $"{ModuleName.Loader1} rotation axis {loaderRotationPosition} is not int TRNPA or TRNPB station",-1);
  520. return false;
  521. }
  522. if(!_loaderCommonDevice.CommonData.WaferHolderPresent)
  523. {
  524. NotifyError(eEvent.ERR_TRANSPORTER, $"{ModuleName.Loader1} WaferShuttlePresent is off", -1);
  525. return false;
  526. }
  527. }
  528. //Transporter没有WS信息
  529. if (WaferHolderManager.Instance.HasWaferHolder(Module))
  530. {
  531. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} already has wafer Shuttle", -1);
  532. return false;
  533. }
  534. //目标Cell应有WS信息
  535. if (!WaferHolderManager.Instance.HasWaferHolder(_cellName))
  536. {
  537. NotifyError(eEvent.ERR_TRANSPORTER, $"{_cellName} does not has wafer shuttle", -1);
  538. return false;
  539. }
  540. //检验Facilities
  541. //var faciltiesResult = _facilities.CheckCDA();
  542. //if (!faciltiesResult.result)
  543. //{
  544. // NotifyError(eEvent.ERR_TRANSPORTER, faciltiesResult.reason, -1);
  545. // return false;
  546. //}
  547. return true;
  548. }
  549. /// <summary>
  550. /// 检验前置条件
  551. /// </summary>
  552. /// <returns></returns>
  553. private bool CheckPreCondition()
  554. {
  555. if (!_gantryAxis.IsSwitchOn)
  556. {
  557. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} gantry axis is not switch on ", -1);
  558. return false;
  559. }
  560. if (!_gantryAxis.IsHomed)
  561. {
  562. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} gantry axis is not homed ",-1);
  563. return false;
  564. }
  565. if (!_elevatorAxis.IsSwitchOn)
  566. {
  567. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} elevator axis is not switch on ", -1);
  568. return false;
  569. }
  570. if (!_elevatorAxis.IsHomed)
  571. {
  572. NotifyError(eEvent.ERR_TRANSPORTER, $"{Module} elevator axis is not homed ",-1);
  573. return false;
  574. }
  575. return true;
  576. }
  577. }
  578. }