XYZ axes running slower than expected

XYZ axes running slower than expected

One of our customers faced a problem with Slow Speed on all Axes.  They just changed the Y axis Drives with a different type and changed the UNITS (higher) which seems good becasue they can move the Axis more precisely.  But now when running XYZ interpolated moves it runs slow.  They didn't have this problem before.  The axes are running from a MC403 and using Pulse+Direction.
What can be the reason?

================================================================================================================

If the new Y axis has different UNITS to the X and Z, then that may be the problem.  For interpolated moves like MOVEABS(x, y, z) the 3 axes must have the same UNITS or else the actual speeds will not be correct.  The moves are actually done in counts on the axes. So the UNITS of the BASE axis is applied to all 3 in a XYZ move.

To make the UNITS match, use STEP_RATIO when the axes are driven by pulse+direction.  Use ENCODER_RATIO for analogue Servo axes.  Use both for EtherCAT CSP axes.

For example the X has 32000 counts per mm, the Y has 384000 per mm and the Z has 16000 per mm.  Set up the STEP_RATIO so that all 3 axes have the highest value of UNITS.  In this case UNITS should be 384000.

BASE(x_axis)
STEP_RATIO(32, 384)
UNITS = 384000
BASE(y)
STEP_RATIO(1, 1)
UNITS = 384000
BASE(z)
STEP_RATIO(16, 384)
UNITS = 384000



    • Related Articles

    • MOVEABS not ending in Target positon

      The cause the problem is that a MOVEABS takes ENDMOVE of the previous move as the start point. When we cancel the move in the MTYPE, it stops before ENDMOVE so it is not a valid start point any more. Here is a possible solution but it is not perfect. ...
    • Inconsistent speed

      The max speed of the axis might be acceleration limited. For example: SPEED = 800 ACCEL = 1200 DECEL = 1200 Say the vector length = 600 - 500 = 100. ie the MOVE length is 100. From the standard equation of motion: v^2 = u^2 + 2as u is 0 v = SQR(2 * ...
    • 'Forward' speed change during move

      FORWARD commands do not need to buffer. Just set FORWARD once and leave it running. You can change SPEED any time on the fly. SPEED set to 0 will stop the axis. A negative SPEED value will make the axis move in reverse. You only need to CANCEL when ...
    • How many axes work synchronously in the Euro408?

      In all the Motion Coordinators it is possible to run all axes synchronously.  There is no limit. So in the Euro404 you can run all 4 axes with for example a MOVEABS(x, y, z, a) In the Euro408 you can run all 8 axes with MOVEABS(x, y, z, a, b, c, d, ...
    • Linking Motion of Two Axes

      If needed, make the second motor direction the same as the first. Either reverse it in the servo-drive, or you can put the following 2 commands in the startup: STEP_RATIO(-1, 1) ENCODER_RATIO(-1, 1) It will be easier to use CONNECT etc. because you ...