19
  • How could I achieve this?
  • What are the stepper motor facts and principless that I have to keep in mind to design a circuit to achive this goal?
  • Are there any readymade/open source alternatives and circuits available to achieve this task?
  • Do I have to approach design for geared and non-geared stepper motors?
Kevin Boyd
  • 1,971
  • 4
  • 23
  • 28

3 Answers3

41

How can I drive a stepper motor greater than 1000 rpm?

A 200 step per revolution motor, running at 1,000 RPM must have a stepper drive capable of doing full steps at 3.4kHz, which is well within the range of most motor drive circuits.

However, keep in mind that if you start out the motor at 3.4kHz, it will merely vibrate due to inertia - you don't start a car at 60 miles per hour, you start at 0 and ramp up to 60 MPH, otherwise you just spin your tires.

So you have to design your circuit to ramp the frequency up from 0 to 3.4kHz slowly enough that the motor can keep up. This means you'll also have to take into account the whole drive train - stepper motor, gears, belts, and anything else the stepper motor is moving. This may be a large platform if you're doing CNC, and the inertia may require a very slow ramp up to avoid skipping steps.

Lastly, if the motor isn't powerful enough to move the load at 1,000RPM, then you'll need a more powerful stepper motor. Torque falls as speed increases due to internal motor losses.

What are the stepper motor facts and principless that I have to keep in mind to design a circuit to achive this goal?

Gecko has a decent basic introduction to stepper motors. Power supply design, matching the drive with the motor so you don't lose too much power in mismatch problems, etc are covered in very basic terms there. Once you understand the basics, ask more detailed questions for specific answers.

Are there any readymade/open source alternatives and circuits available to achieve this task?

If you are running a low power design, the RepRap project has some reasonable stepper motor drivers. Alternately, a simple google search gives a lot of open source stepper driver information.

Since you don't provide any more detail as to what you're driving, and what motor you're using, I can't suggest anything specific.

Do I have to approach design for geared and non-geared stepper motors?

Not in terms of driver design - the only difference is that a gear train adds more mass to the drive line, requiring a slower ramp-up time.

However, the larger the gear train, the more backlash you might experience, so there's a lot more to the mechanical design if you require speed and accuracy.

But the stepper driver design is the same in either case.

If you want more speed and/or power, you should consider looking at CNC servo motors rather than steppers.

C--
  • 691
  • 4
  • 9
  • 18
Adam Davis
  • 20,339
  • 7
  • 59
  • 95
  • 1
    The link to the Gecko's document is dead. – abdullah kahraman Sep 24 '12 at 10:01
  • 2
    @abdullahkahraman I've updated the link. If it breaks again in the future, searching for [*"step motor basics guide pdf"*](http://www.google.com/search?q=step+motor+basics+guide+pdf) should bring it up. – Adam Davis Sep 24 '12 at 20:15
  • 1
    I have fixed it once again, since the PDF is taken down, and an HTML version is available right now. – C-- Feb 21 '19 at 14:04
  • As a response to a question raising concerns about driving a stepper at speed which makes no specific mention of winding inductance or overcoming it with higher voltage chopping drivers, this is a bit incomplete to merit the number of upvotes it has received. The claim that "torque falls with speed" is *not* fundamental, but rather a result of *not* taking measures to overcome the winding inductance, which when driving with only the steady state voltage limits the rise of current after each step and thus the torque produced; if rated current is forced by higher voltage, torque *does not* drop. – Chris Stratton Feb 21 '19 at 17:08
  • @ChrisStratton You are correct. This question is very basic, and the answer is similarly basic. It might be worthwhile for you to craft another question delving deeper into high speed stepping driver design which you could then answer and provide the details necessary to create such a system. – Adam Davis Feb 22 '19 at 19:12
4

If you're trying to drive a stepper motor at high speed, you should really use a constant-current driver circuit, since the voltage required to operate at high speeds will be much greater than that required at low speeds, and since driving enough voltage for high-speed operation into a stalled motor would quickly destroy it if the current weren't limited. If a current-limited supply is used, the motor should continue to supply the expected torque until it's running fast enough that the compliance voltage of the supply is reached.

supercat
  • 45,939
  • 2
  • 84
  • 143
  • I think what this answer proposes is to use a driver circuit that is capable of working with a much higher voltage supply in order to "overcome" the inductance of stepper windings in reaching a new current level at the beginning of each step. Once that current level is reached, the driver maintains that current level by chopping (= PWMing the voltage to the winding). This is the mode of operation for many stepper driver chips, such as A4988 and compatibles, and various larger Toshiba stepper drivers.... – gwideman Apr 08 '14 at 22:24
1

There are great constant current driver boards commercially available. But there is a limit to what voltage can accomplish in the ways of overcoming inductance. At some point motor selection becomes extremely important. I don't know your application but the lowest induction motor that satisfies your torque requirements is best for speed but this might mean a large motor case with a high inertia as it will use leverage from diameter or attraction over a long relutor to get torque instead of a strong electro magnet. If a small size motor like a nema 17 will do with torque you may be able to find them with a lower step count such as 100 or 64. A lower step count would help with speed.

Check out www.mycncuk.com/1524-What-size-stepper-motor-do-i-need for calculations

Dan
  • 11
  • 1
  • Very old post, but I've found that inductance and RMF aren't nearly as important as they're made out to be. Without significant load, I managed to drive a SL42STH40 at 11'000 rpm today. 32V supply, DRV8825 in full step mode, and AVR Timer / Interrupt based step signal generation. – towe Sep 25 '19 at 14:34
  • Can you provide code snippet to understand how you are calculating the frequency required for steps per revolution. – Rahul S Saksule Oct 19 '22 at 05:53