|
@@ -17,6 +17,8 @@ using System.Reflection;
|
|
|
using System.Text;
|
|
|
using System.Threading.Tasks;
|
|
|
using CyberX8_RT.Devices.AXIS.Galil;
|
|
|
+using MECF.Framework.Common.Device.Galil;
|
|
|
+using MECF.Framework.Common.Utilities;
|
|
|
|
|
|
namespace CyberX8_RT.Devices.AXIS.GalilLipsel
|
|
|
{
|
|
@@ -50,6 +52,9 @@ namespace CyberX8_RT.Devices.AXIS.GalilLipsel
|
|
|
/// <param name="Module"></param>
|
|
|
public GalilRotationAxis(string Module, string name) : base(Module, name)
|
|
|
{
|
|
|
+ //deg->RPM
|
|
|
+ _commandMotionData.FileProfileVelocity /= 6;
|
|
|
+ _commandMotionData.FileHomingVelocity /= 6;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 初始化参数
|
|
@@ -57,7 +62,7 @@ namespace CyberX8_RT.Devices.AXIS.GalilLipsel
|
|
|
protected override void InitializeParameter()
|
|
|
{
|
|
|
_accelerationRatio = 1;
|
|
|
- _speedRatio = 1;
|
|
|
+ _speedRatio = 6;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 初始化Routine
|
|
@@ -331,22 +336,22 @@ namespace CyberX8_RT.Devices.AXIS.GalilLipsel
|
|
|
case PROFILE_VELOCITY:
|
|
|
_profileVelocity = CalculateMultiplySpeedRatio(CalculateValueMultiplyScale(value));
|
|
|
_commandMotionData.FileProfileVelocity = value;
|
|
|
- BeckhoffAxisManager.Instance.WriteVariableValue($"{Module}.{Name}.{arg}", _profileVelocity);
|
|
|
+ GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "SP", BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_profileVelocity));
|
|
|
break;
|
|
|
case PROFILE_ACCEL:
|
|
|
_profileAcceleration = CalculateDivideAccelerationRatio(CalculateValueMultiplyScale(value));
|
|
|
- _commandMotionData.FileAcceleration = value;
|
|
|
- BeckhoffAxisManager.Instance.WriteVariableValue($"{Module}.{Name}.{arg}", _profileAcceleration);
|
|
|
+ _commandMotionData.FileAcceleration = value;
|
|
|
+ GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "AC", _profileAcceleration);
|
|
|
break;
|
|
|
case PROFILE_DECEL:
|
|
|
_profileDeceleration = CalculateDivideAccelerationRatio(CalculateValueMultiplyScale(value));
|
|
|
_commandMotionData.FileDeceleration = value;
|
|
|
- BeckhoffAxisManager.Instance.WriteVariableValue($"{Module}.{Name}.{arg}", _profileDeceleration);
|
|
|
+ GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "DC", _profileDeceleration);
|
|
|
break;
|
|
|
case HOMING_VELOCITY:
|
|
|
_profileHomingVelocity = CalculateMultiplySpeedRatio(CalculateValueMultiplyScale(value));
|
|
|
_commandMotionData.FileHomingVelocity = value;
|
|
|
- TwincatCoeManager.Instance.WriteVariableValue($"{Module}.{Name}", arg, _profileHomingVelocity);
|
|
|
+ GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "SP", BeckhoffVelocityUtil.ConvertVelocityToDegPerSecondByRPM(_profileHomingVelocity));
|
|
|
break;
|
|
|
case HOMING_VELOCITY_SLOW:
|
|
|
_profileHomingVelocitySlow = CalculateMultiplySpeedRatio(CalculateValueMultiplyScale(value));
|
|
@@ -356,7 +361,7 @@ namespace CyberX8_RT.Devices.AXIS.GalilLipsel
|
|
|
case HOMING_ACCEL:
|
|
|
_profileHomingAccel = CalculateDivideAccelerationRatio(CalculateValueMultiplyScale(value));
|
|
|
_commandMotionData.FileHomingAccel = value;
|
|
|
- TwincatCoeManager.Instance.WriteVariableValue($"{Module}.{Name}", arg, _profileHomingAccel);
|
|
|
+ GalilControllerCfgManager.Instance.SetAxisCommand(Module, Name, "AC", _profileHomingAccel);
|
|
|
break;
|
|
|
}
|
|
|
}
|