SRDHomeRoutine.cs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. using Aitex.Core.RT.Device;
  2. using Aitex.Core.RT.Log;
  3. using Aitex.Core.RT.Routine;
  4. using MECF.Framework.Common.Equipment;
  5. using MECF.Framework.Common.Routine;
  6. using MECF.Framework.Common.Utilities;
  7. using CyberX8_Core;
  8. using CyberX8_RT.Devices.AXIS;
  9. using CyberX8_RT.Devices.Facilities;
  10. using CyberX8_RT.Devices.PUF;
  11. using CyberX8_RT.Devices.SRD;
  12. using System;
  13. using System.Collections.Generic;
  14. using System.Linq;
  15. using System.Text;
  16. using System.Threading.Tasks;
  17. using CyberX8_RT.Devices.Safety;
  18. namespace CyberX8_RT.Modules.Transporter
  19. {
  20. public class SRDHomeRoutine : RoutineBase, IRoutine
  21. {
  22. private enum HomeAllStep
  23. {
  24. //CheckSafety,
  25. CheckPreCondition,
  26. CloseDoor,
  27. CheckDoorClosed,
  28. HomeSRDRotation,
  29. CheckRotationHome,
  30. RotationHome,
  31. RotationHomeWait,
  32. OpenDoor,
  33. CheckDoorOpened,
  34. End
  35. }
  36. #region 内部变量
  37. private JetAxisBase _rotationAxis;
  38. private SrdCommonDevice _common;
  39. private SrdCommonDoorCloseRoutine _doorCloseRoutine;
  40. private string _module;
  41. #endregion
  42. #region 属性
  43. /// <summary>
  44. /// 当前子状态机
  45. /// </summary>
  46. public string CurrentStateMachine
  47. {
  48. get { return Runner.CurrentStep.ToString(); }
  49. }
  50. #endregion
  51. public SRDHomeRoutine(string module) : base(module)
  52. {
  53. _module = module;
  54. }
  55. public void Abort()
  56. {
  57. Runner.Stop("Manual Abort");
  58. }
  59. public RState Monitor()
  60. {
  61. Runner//.Run(HomeAllStep.CheckSafety,CheckSafety,_delay_1ms)
  62. .Run(HomeAllStep.CheckPreCondition, CheckPreCondition,NullFun,_delay_1ms)
  63. .Run(HomeAllStep.CloseDoor, () => { return _doorCloseRoutine.Start(true) == RState.Running; }, NullFun, _delay_1ms)
  64. .WaitWithStopCondition(HomeAllStep.CheckDoorClosed, () => CommonFunction.CheckRoutineEndState(_doorCloseRoutine), () => CommonFunction.CheckRoutineStopState(_doorCloseRoutine))
  65. .Run(HomeAllStep.HomeSRDRotation, RotationAxisHome,_delay_1ms)
  66. .WaitWithStopCondition(HomeAllStep.CheckRotationHome, () => { return _rotationAxis.IsHomed && _rotationAxis.Status == RState.End; }, () => { return _rotationAxis.Status == RState.Failed; })
  67. .Run(HomeAllStep.RotationHome, () => { return _rotationAxis.PositionStation("Home",true); }, NullFun, 100)
  68. .WaitWithStopCondition(HomeAllStep.RotationHomeWait, () => { return _rotationAxis.Status == RState.End; }, () => { return _rotationAxis.Status == RState.Failed; })
  69. .Run(HomeAllStep.OpenDoor, () => { return _doorCloseRoutine.Start(false) == RState.Running; },NullFun,_delay_1ms)
  70. .WaitWithStopCondition(HomeAllStep.CheckDoorOpened,()=>CommonFunction.CheckRoutineEndState(_doorCloseRoutine),()=>CommonFunction.CheckRoutineStopState(_doorCloseRoutine))
  71. .End(HomeAllStep.End,NullFun);
  72. return Runner.Status;
  73. }
  74. /// <summary>
  75. /// 检验Safety
  76. /// </summary>
  77. /// <returns></returns>
  78. private bool CheckSafety()
  79. {
  80. SafetyDevice safetyDevice = DEVICE.GetDevice<SafetyDevice>("Safety");
  81. if (safetyDevice == null)
  82. {
  83. LOG.WriteLog(eEvent.ERR_SRD, Module.ToString(), "Safety device is null");
  84. return false;
  85. }
  86. if (safetyDevice.SafetyData.SrdCommErr)
  87. {
  88. LOG.WriteLog(eEvent.ERR_SRD, Module.ToString(), "Twincat SRD Communication status is error");
  89. return false;
  90. }
  91. if (safetyDevice.SafetyData.SrdFunctionBlockErr)
  92. {
  93. LOG.WriteLog(eEvent.ERR_SRD, Module.ToString(), "Twincat SRD function block status is error");
  94. return false;
  95. }
  96. return true;
  97. }
  98. /// <summary>
  99. /// 检验前置条件
  100. /// </summary>
  101. /// <returns></returns>
  102. private bool CheckPreCondition()
  103. {
  104. //检查电机谁否开启
  105. if(!_rotationAxis.IsSwitchOn)
  106. {
  107. LOG.WriteLog(eEvent.ERR_SRD, Module, $"{_module}.Rotation is switchoff");
  108. return false;
  109. }
  110. //检查CDA与N2是否开启
  111. SystemFacilities systemFacilities = DEVICE.GetDevice<SystemFacilities>("System.Facilities");
  112. var result = systemFacilities.CheckCDAN2();
  113. if (!result.result)
  114. {
  115. LOG.WriteLog(eEvent.ERR_SRD, Module, $"CDA or N2 is not enabled");
  116. return false;
  117. }
  118. return true;
  119. }
  120. /// <summary>
  121. /// Rotation Home
  122. /// </summary>
  123. /// <returns></returns>
  124. private bool RotationAxisHome()
  125. {
  126. return _rotationAxis.Home();
  127. }
  128. /// <summary>
  129. /// 检验Rotation Home状态
  130. /// </summary>
  131. /// <returns></returns>
  132. private bool CheckRotationHome()
  133. {
  134. return _rotationAxis.IsHomed&&_rotationAxis.Status==RState.End;
  135. }
  136. /// <summary>
  137. /// 启动
  138. /// </summary>
  139. /// <param name="objs"></param>
  140. /// <returns></returns>
  141. public RState Start(params object[] objs)
  142. {
  143. _rotationAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Rotation");
  144. _common = DEVICE.GetDevice<SrdCommonDevice>($"{Module}.Common");
  145. _doorCloseRoutine = new SrdCommonDoorCloseRoutine(Module);
  146. return Runner.Start(Module, "Home");
  147. }
  148. }
  149. }