ProcessTransporterElevatorAxisInterLock.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. namespace CyberX8_RT.Devices.TransPorter
  9. {
  10. public class ProcessTransporterElevatorAxisInterLock : IAxisInterLock
  11. {
  12. #region 内部变量
  13. private JetAxisBase _axis;
  14. #endregion
  15. #region 属性
  16. /// <summary>
  17. /// 模块名称
  18. /// </summary>
  19. public string Module { get { return _axis.Module; } }
  20. /// <summary>
  21. /// 子模块名称
  22. /// </summary>
  23. public string Name { get { return _axis.Name; } }
  24. #endregion
  25. /// <summary>
  26. /// 构造函数
  27. /// </summary>
  28. /// <param name="Module"></param>
  29. /// <param name="name"></param>
  30. public ProcessTransporterElevatorAxisInterLock(JetAxisBase axis)
  31. {
  32. _axis = axis;
  33. }
  34. /// <summary>
  35. /// GotoPosition条件检验
  36. /// </summary>
  37. /// <param name="station"></param>
  38. /// <returns></returns>
  39. public bool CheckGotoPosition(string station)
  40. {
  41. if (!AxisManager.Instance.CheckModuleAxisSwitchOn(Module, Name))
  42. {
  43. return false;
  44. }
  45. //ProcessTransporter Home
  46. if (ModuleHelper.IsInstalled(ModuleName.Transporter1))
  47. {
  48. TransporterEntity processTransporterEntity = Singleton<RouteManager>.Instance.GetModule<TransporterEntity>(ModuleName.Transporter1.ToString());
  49. if (processTransporterEntity == null)
  50. {
  51. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{ModuleName.Transporter1.ToString()} entity is null");
  52. return false;
  53. }
  54. if (!processTransporterEntity.IsHomed)
  55. {
  56. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{ModuleName.Transporter1.ToString()} is not home, Cannot execute GotoSavedPosition");
  57. return false;
  58. }
  59. }
  60. //LoaderTransporter Home
  61. if (ModuleHelper.IsInstalled(ModuleName.Transporter2))
  62. {
  63. TransporterEntity loaderTransporterEntity = Singleton<RouteManager>.Instance.GetModule<TransporterEntity>(ModuleName.Transporter2.ToString());
  64. if (loaderTransporterEntity == null)
  65. {
  66. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{ModuleName.Transporter2.ToString()} entity is null");
  67. return false;
  68. }
  69. if (!loaderTransporterEntity.IsHomed)
  70. {
  71. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{ModuleName.Transporter2.ToString()} is not home, Cannot execute GotoSavedPosition");
  72. return false;
  73. }
  74. }
  75. //ProcessTransporter Gantry is not run
  76. JetAxisBase gantryAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Gantry");
  77. if (gantryAxis == null)
  78. {
  79. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{Module} Gantry Axis is null");
  80. return false;
  81. }
  82. if (gantryAxis.Status == CyberX8_Core.RState.Running)
  83. {
  84. LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{Module} Gantry Axis is Run");
  85. return false;
  86. }
  87. //Check Gantry at station
  88. //double gantryPosition = gantryAxis.MotionData.MotorPosition;
  89. //if (gantryAxis.CheckPositionIsEmpty(gantryPosition))
  90. //{
  91. // LOG.WriteLog(eEvent.ERR_TRANSPORTER, Module, $"{Module} Gantry is not in any station");
  92. // return false;
  93. //}
  94. return true;
  95. }
  96. }
  97. }