[comp.robotics] stepper motor sychronization: need help

smiller@wet.UUCP (Gregory Shane Miller) (04/26/91)

Thursday 24 April 1991
---------------

I need help with a very standard problem in motion control.
I have two stepper motors, each connected to a seperate axis
(like a plotter or CNC XY table).

[a] I want axis A to go 20000 steps.
[b] I want axis B to go 13000 steps in the same time as axis B so
    that a straight line results.
[c] assume a constant acceleration rate of 1000 steps/s*s is given

What would the algorithm look like during acceleration?

If there were no acceleration, I could solve the problem; but the
fact that my application requires acceleration has confused me
greatly.

I order for each axis to go along a straight line, the ratios
of the accelerations must be constant in time. (eg. when axis A is
doing a constant acceleration so must B; when axis A has
acceleration 0 (eg. it's ramped up) so must B)).

What's the standard approach to this problem?  Is there a book
I should refer?

Thanks for any info. smiller@wet.UUCP
-- 
G. Shane Miller [ smiller@wet.UUCP (415) 453-4926 ]

mack@intvax.UUCP (Michael J. McDonald) (04/30/91)

> 
> I need help with a very standard problem in motion control.
> (like a plotter or CNC XY table).
> 
> [a] I want axis A to go 20000 steps.
> [b] I want axis B to go 13000 steps in the same time as axis B so
>     that a straight line results.
> [c] assume a constant acceleration rate of 1000 steps/s*s is given
> 
> What would the algorithm look like during acceleration?
> 

jj
axis. That is, if axis A and B both accelerate at the same rates,
then one of the axis will get to a constant speed before the other
and thereby put your motions out of sync. 

Think about your problem thus:

1) axis B must always move at 13/20-ths the speed of axis b.
2) The velocity profiles of both axis will be a trapezoidal, i.e.,
   the velocity will ramp up at a constant rate for t seconds
   then stay constant until the move gets within t seconds of 
   terminating at which time it will ramp down for t seconds.
3) Compute the trapezoidal move velocity profile for axis A just
   as you would for making any linear move in A.
4) the velocity profile for axis B should then be 13/20ths of the
   move profile for axis A.

I hope that this approach is useful

markh@csd4.csd.uwm.edu (Mark William Hopkins) (05/07/91)

In article <2350@wet.UUCP> smiller@wet.UUCP (Gregory Shane Miller) writes:
>What would the algorithm look like during acceleration?
>
>If there were no acceleration, I could solve the problem; but the
>fact that my application requires acceleration has confused me
>greatly.

If you're controlling the stepper motor by sending out (say 50 microsecond)
pulses for each step then you've got to come to terms with the fact that the
speed of the stepper motor at any time will be *inversely* proportional to
the delay between pulses, and the length of time spent at that speed is then
proportional to that delay multiplied by the number of pulses sent out.

The best way to accomplish acceleration (if the controller can't do division
quickly) is to use a look-up table for converting desired speeds into desired
pulse delays, and to "accelerate" the motor by driving it incrementally at 
higher and higher speeds.

I set up such a lookup table for an application that listed delays for
multiples of 25 RPM, which comes out to 250/3 pulses per second at 200 encoder
pulses per rotation, and listed values for speeds 25 RPM to 2000 RPM.

The natural time unit in this application was 3/250 second (the inverse of
25 RPM).  So if you wanted to drive the motor at N multiples of 25 RPM for
T seconds, you'd send out 250/3 x N x T pulses.

The machine's instruction cycle rate was 921600 Hz, so the delay for a 25 RPM
pulse was 921600*3/250 = 11059.2 cycles.  The delay for N multiples of 25 RPM
was 11059.2/N.  These were the numbers stored in the table.

So accelerating the motor simply came down to driving it at 25 RPM for a small
fraction of a second, at 50 RPM for the same duration, 75 RPM for the same
duration, and so on up to the desired speed.

If you try to express constant acceleration as a function of pulse delay
versus number of pulses sent out, you come up with something involving square
roots and such.  You could set up a lookup table for this function too and use
that to drive the motor at constant acceleration.

THe way to figure out this function is to express the number of steps
as a function of time (assuming constant acceleration), invert this
function to get the time versus the number of steps and then take
differences the time values at succeeding integer values of steps
to get the corresponding delays.