Tradeoff between DC motors and stepper motors
This is small comparison made between three types of motors: DC motors and stepper motors. Let’s see what are their cons and pros:
- Stepper motors doesn’t require feedback to determine position. The position is determined by microcontroller by sending pulses to stepper motor;
- When load is to high to stepper motor, then it may stall and there is no way to report this to microcontroller;
- DC motors with feedback can report stalls on high loads or other conditions;
- Stepper motor has no brushes – there is no EMI;
- Stepper motor may produce full torque – this enables them to hold rotor in desired position;
- DC motors deliver more torque at higher speeds than stepper motors;
- Stepper motors can produce low speed without loss of torque.
- Dc motors looses torque at low speed because of low current;
Lets conclude this all. Systems with stepper motors and without feedback cannot determine what motor is really doing. For this reason stepper motors usually are used where loads are known (like floppy disk or printer).
If loads are known and determined, then there some smart control can be applied – for smaller loads there can be smaller current applied in other hand for higher loads the current may be increased.
When the load isn’t determined then there DC motor should be used. Sometimes DC motor with appropriate feedback encoder may give better results than stepper motors. Feedback allows easily adjusting supply current if DC motors speed or position is not correct.
What should be a good solution? The answer is to add feedback encoder to stepper motor. The cost is higher but you get benefits of both types of systems. But remember that stepper motors cannot reach high speeds as DC motors.
Blogsphere: TechnoratiFeedsterBloglines
Bookmark: Del.icio.usSpurlFurlSimpyBlinkDigg
RSS feed for comments on this post | TrackBack URI for this post
New on WinAVR Tutorial
Running TX433 and RX433 RF modules with AVR microcontrollers,Sometimes in embedded design you may want to go wireless. Might be you will want to log various readi …Programming AVR ADC module with WinAVR,Most of AVR microcontrollers have Analog to Digital Converter (ADC) integrated in to chip. Such solut … |
New on WinARM Tutorial
What are differences between WinARM and WinAVR,Everyone who is working with AVR microcontrollers knows this powerful tool – WinAVR (http://win …LPC2000 watchdog timer,As in all microcontrollers watchdog timers purpose isto reset microcontroller after reasonable amount … |

June 4th, 2008 at 9:54 pm
Interesting article. You make a good point about stepper motors not being able to reach the same speeds at DC motors, but I haven’t found myself needing that extra speed yet.