LoaderTransPorterElevatorAxisInterLock.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. using Aitex.Core.RT.Device;
  2. using Aitex.Core.RT.Log;
  3. using Aitex.Core.Util;
  4. using CyberX8_RT.Devices.AXIS;
  5. using CyberX8_RT.Modules.Transporter;
  6. using CyberX8_RT.Modules;
  7. using MECF.Framework.Common.Equipment;
  8. using System;
  9. namespace CyberX8_RT.Devices.TransPorter
  10. {
  11. public class LoaderTransPorterElevatorAxisInterLock : IAxisInterLock
  12. {
  13. #region 内部变量
  14. private JetAxisBase _axis;
  15. #endregion
  16. #region 属性
  17. /// <summary>
  18. /// 模块名称
  19. /// </summary>
  20. public string Module { get { return _axis.Module; } }
  21. /// <summary>
  22. /// 子模块名称
  23. /// </summary>
  24. public string Name { get { return _axis.Name; } }
  25. #endregion
  26. /// <summary>
  27. /// 栣函数
  28. /// </summary>
  29. /// <param name="moduleName"></param>
  30. /// <param name="name"></param>
  31. public LoaderTransPorterElevatorAxisInterLock(JetAxisBase axis)
  32. {
  33. _axis = axis;
  34. }
  35. /// <summary>
  36. /// GotoPosition条件检验
  37. /// </summary>
  38. /// <param name="station"></param>
  39. /// <returns></returns>
  40. /// <exception cref="NotImplementedException"></exception>
  41. public bool CheckGotoPosition(string station)
  42. {
  43. if (!AxisManager.Instance.CheckModuleAxisSwitchOn(Module, Name))
  44. {
  45. return false;
  46. }
  47. //ProcessTransporter Home
  48. if (ModuleHelper.IsInstalled(ModuleName.Transporter1))
  49. {
  50. TransporterEntity processTransporterEntity = Singleton<RouteManager>.Instance.GetModule<TransporterEntity>(ModuleName.Transporter1.ToString());
  51. if (processTransporterEntity == null)
  52. {
  53. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{ModuleName.Transporter1.ToString()} entity is null");
  54. return false;
  55. }
  56. if (!processTransporterEntity.IsHomed)
  57. {
  58. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{ModuleName.Transporter1.ToString()} is not home, Cannot execute GotoSavedPosition");
  59. return false;
  60. }
  61. }
  62. //LoaderTransporter Home
  63. if (ModuleHelper.IsInstalled(ModuleName.Transporter2))
  64. {
  65. TransporterEntity loaderTransporterEntity = Singleton<RouteManager>.Instance.GetModule<TransporterEntity>(ModuleName.Transporter2.ToString());
  66. if (loaderTransporterEntity == null)
  67. {
  68. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{ModuleName.Transporter2.ToString()} entity is null");
  69. return false;
  70. }
  71. if (!loaderTransporterEntity.IsHomed)
  72. {
  73. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{ModuleName.Transporter2.ToString()} is not home, Cannot execute GotoSavedPosition");
  74. return false;
  75. }
  76. }
  77. //LoaderTransporter Gantry is not run
  78. JetAxisBase gantryAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Gantry");
  79. if (gantryAxis == null)
  80. {
  81. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{Module} Gantry Axis is null");
  82. return false;
  83. }
  84. if (gantryAxis.Status == CyberX8_Core.RState.Running)
  85. {
  86. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{Module} Gantry Axis is Run");
  87. return false;
  88. }
  89. //Check Gantry at station
  90. double gantryPosition = gantryAxis.MotionData.MotorPosition;
  91. //if(gantryAxis.CheckPositionIsEmpty(gantryPosition))
  92. //{
  93. // LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{Module} Gantry is not in any station");
  94. // return false;
  95. //}
  96. //是否在Load位
  97. if (gantryAxis.CheckPositionIsInStation(gantryPosition, "Loader"))
  98. {
  99. JetAxisBase rotationAxis = DEVICE.GetDevice<JetAxisBase>($"Loader1.Rotation");
  100. double rotationPosition = rotationAxis.MotionData.MotorPosition;
  101. if (!rotationAxis.CheckPositionIsInStation(rotationPosition, "TRNPA") && !rotationAxis.CheckPositionIsInStation(rotationPosition, "TRNPB"))
  102. {
  103. if(station != "UP" && station != "CELLTOP")
  104. {
  105. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"Loader Rotation is not in TRNP, {Module} Gantry only can go to UP or CELLTOP");
  106. return false;
  107. }
  108. }
  109. }
  110. return true;
  111. }
  112. }
  113. }