GalilRotationHomeRoutine.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. WaitDP,
  28. End
  29. }
  30. #region 常量
  31. private const int HOME_STOP_CODE = 10;
  32. #endregion
  33. #region 内部变量
  34. private JetAxisBase _axis;
  35. private int _timeout = 5000;
  36. private int _homingAcceleration = 0;
  37. private int _homingDeceleration = 0;
  38. private int _homingSpeed = 0;
  39. private int _homingOffset = 0;
  40. private int _cnType = 0;
  41. #endregion
  42. public GalilRotationHomeRoutine(string module,JetAxisBase axis) : base(module)
  43. {
  44. _axis = axis;
  45. }
  46. public void Abort()
  47. {
  48. Runner.Stop("Manual Abort");
  49. }
  50. public RState Monitor()
  51. {
  52. Runner.Run(HomeStep.HomingAcceleration, () => { return _axis.WriteAcceleration(_homingAcceleration); }, _delay_1ms)
  53. .Run(HomeStep.HomingDeceleration, () => { return _axis.WriteDeceleration(_homingDeceleration); }, _delay_1ms)
  54. .Run(HomeStep.HomingSpeed, () => { return _axis.WriteSpeed(_homingSpeed); }, _delay_1ms)
  55. //增加CN类型用于区分process transporter gantry与elevator home方向相反
  56. .RunIf(HomeStep.WriteCNType, _cnType!=0, () => { return _axis.WriteCNCommand($",{_cnType}"); },_delay_1ms)
  57. .Run(HomeStep.SetHomeModel, () => { return _axis.WriteFIAxisCommand(); }, _delay_1ms)
  58. .Run(HomeStep.StartMotion, () => { return _axis.WriteStartMotion(); }, _delay_1ms)
  59. .Delay(HomeStep.Delay,500)
  60. .WaitWithStopCondition(HomeStep.CheckHomingEnd, () => {
  61. return _axis.MotionData.StopCode == HOME_STOP_CODE&&!_axis.IsRun; },CheckErrorOrWarning,_timeout)
  62. .Delay(HomeStep.DPDelay,1000)
  63. .Run(HomeStep.DP, () => { return _axis.WriteDP(_homingOffset); }, _delay_1ms)
  64. .Wait(HomeStep.WaitDP, () => { return Math.Round(Math.Abs(_axis.MotionData.MotorPosition - _homingOffset / _axis.ScaleFactor), 2) <= _axis.ToleranceDefault; }, _delay_1s)
  65. .End(HomeStep.End,NullFun,100);
  66. return Runner.Status;
  67. }
  68. /// <summary>
  69. /// 检验是否出错或告警
  70. /// </summary>
  71. /// <returns></returns>
  72. private bool CheckErrorOrWarning()
  73. {
  74. //byte stopCode = _axis.MotionData.StopCode;
  75. //if (stopCode != 0 && stopCode != HOME_STOP_CODE)
  76. //{
  77. // LOG.WriteLog(eEvent.ERR_AXIS, Module, $"axis home stopcode is {stopCode}");
  78. // return true;
  79. //}
  80. return false;
  81. }
  82. public RState Start(params object[] objs)
  83. {
  84. _timeout = (int)objs[0];
  85. _homingAcceleration = (int)objs[1];
  86. _homingDeceleration = (int)objs[2];
  87. _homingSpeed = (int)objs[3];
  88. _homingOffset = (int)objs[4];
  89. _cnType = objs.Length >= 6 ? (int)objs[5] : 0;
  90. return Runner.Start(Module, "Home");
  91. }
  92. }
  93. }