GalilRotationHomeRoutine.cs 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. using Aitex.Core.RT.Log;
  2. using Aitex.Core.RT.Routine;
  3. using MECF.Framework.Common.CommonData.PUF;
  4. using MECF.Framework.Common.Routine;
  5. using CyberX8_Core;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace CyberX8_RT.Devices.AXIS.Galil
  12. {
  13. public class GalilRotationHomeRoutine : RoutineBase, IRoutine
  14. {
  15. private enum HomeStep
  16. {
  17. HomingAcceleration,
  18. HomingDeceleration,
  19. HomingSpeed,
  20. WriteCNType,
  21. SetHomeModel,
  22. StartMotion,
  23. Delay,
  24. CheckHomingEnd,
  25. DPDelay,
  26. DP,
  27. End
  28. }
  29. #region 常量
  30. private const int HOME_STOP_CODE = 10;
  31. #endregion
  32. #region 内部变量
  33. private JetAxisBase _axis;
  34. private int _timeout = 5000;
  35. private int _homingAcceleration = 0;
  36. private int _homingDeceleration = 0;
  37. private int _homingSpeed = 0;
  38. private int _homingOffset = 0;
  39. private int _cnType = 0;
  40. #endregion
  41. public GalilRotationHomeRoutine(string module,JetAxisBase axis) : base(module)
  42. {
  43. _axis = axis;
  44. }
  45. public void Abort()
  46. {
  47. Runner.Stop("Manual Abort");
  48. }
  49. public RState Monitor()
  50. {
  51. Runner.Run(HomeStep.HomingAcceleration, () => { return _axis.WriteAcceleration(_homingAcceleration); }, _delay_1ms)
  52. .Run(HomeStep.HomingDeceleration, () => { return _axis.WriteDeceleration(_homingDeceleration); }, _delay_1ms)
  53. .Run(HomeStep.HomingSpeed, () => { return _axis.WriteSpeed(_homingSpeed); }, _delay_1ms)
  54. //增加CN类型用于区分process transporter gantry与elevator home方向相反
  55. .RunIf(HomeStep.WriteCNType, _cnType!=0, () => { return _axis.WriteCNCommand($",{_cnType}"); },_delay_1ms)
  56. .Run(HomeStep.SetHomeModel, () => { return _axis.WriteFIAxisCommand(); }, _delay_1ms)
  57. .Run(HomeStep.StartMotion, () => { return _axis.WriteStartMotion(); }, _delay_1ms)
  58. .Delay(HomeStep.Delay,500)
  59. .WaitWithStopCondition(HomeStep.CheckHomingEnd, () => {
  60. return _axis.MotionData.StopCode == HOME_STOP_CODE&&!_axis.IsRun; },CheckErrorOrWarning,_timeout)
  61. .Delay(HomeStep.DPDelay,1000)
  62. .Run(HomeStep.DP, () => { return _axis.WriteDP(_homingOffset); }, _delay_1ms)
  63. .End(HomeStep.End,NullFun,100);
  64. return Runner.Status;
  65. }
  66. /// <summary>
  67. /// 检验是否出错或告警
  68. /// </summary>
  69. /// <returns></returns>
  70. private bool CheckErrorOrWarning()
  71. {
  72. //byte stopCode = _axis.MotionData.StopCode;
  73. //if (stopCode != 0 && stopCode != HOME_STOP_CODE)
  74. //{
  75. // LOG.WriteLog(eEvent.ERR_AXIS, Module, $"axis home stopcode is {stopCode}");
  76. // return true;
  77. //}
  78. return false;
  79. }
  80. public RState Start(params object[] objs)
  81. {
  82. _timeout = (int)objs[0];
  83. _homingAcceleration = (int)objs[1];
  84. _homingDeceleration = (int)objs[2];
  85. _homingSpeed = (int)objs[3];
  86. _homingOffset = (int)objs[4];
  87. _cnType = objs.Length >= 6 ? (int)objs[5] : 0;
  88. return Runner.Start(Module, "Home");
  89. }
  90. }
  91. }