Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added an article on selecting the right motor for robotics applications. #192

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions _data/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,8 @@ wiki:
url: /wiki/actuation/task-prioritization-control/
- title: Drive-by-wire Conversion for Autonomous Vehicle
url: /wiki/actuation/drive-by-wire/
- title: Selecting the right Motor for your application
url: /wiki/actuation/selecting-the-right-motor/
- title: Machine Learning
url: /wiki/machine-learning/
children:
Expand Down
120 changes: 120 additions & 0 deletions wiki/actuation/selecting-the-right-motor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
---
# Jekyll 'Front Matter' goes here. Most are set by default, and should NOT be
# overwritten except in special circumstances.
# You should set the date the article was last updated like this:
date: 2024-12-02 # YYYY-MM-DD
# This will be displayed at the bottom of the article
# You should set the article's title:
title: Selecting the right Motor for your application.
# The 'title' is automatically displayed at the top of the page
# and used in other parts of the site.
---
Choosing the right motor for your project requires understanding its types, capabilities, and trade-offs. This article provides advanced insights into motor types and the critical trade-offs you must evaluate to ensure optimal performance for your application.

## Types of Motors: An Overview

### Brushed DC Motors
- **Key Features:**
Reliable and cost-effective, offering high torque at low speeds. Brushes and commutators manage current flow but introduce wear and inefficiency.
- **When to use:**
Ideal for prototypes or low-cost systems where lifespan and efficiency are less critical.
- **Critical Insight:**
They experience high inrush current at startup, which can stress power supplies and drivers. Brush wear is predictable, making maintenance planning straightforward.

### Brushless DC Motors (BLDC)
- **Key Features:**
Higher efficiency and longer lifespan due to electronic commutation. Capable of delivering consistent torque and speed with minimal wear.
- **When to use:**
Ideal for high-performance systems like drones and UGVs.
- **Critical Insight:**
The absence of brushes eliminates sparking, making them ideal for explosive environments or medical equipment. Their back-EMF (electromotive force) requires a properly designed controller to manage voltage spikes.

### Stepper Motors
- **Key Features:**
Known for their precision, stepper motors divide full rotations into discrete steps. They operate in open-loop configurations, eliminating the need for feedback in many applications. However, some do come equipped with encoders for closed-loop operations.
- **When to use:**
Ideal for applications requiring precise angular movements.
- **Critical Insight:**
Torque drops significantly at high speeds, so they are better for low-speed, high-accuracy tasks. Additionally, holding torque is high but leads to heat generation, requiring cooling strategies for prolonged use.

### Servo Motors
- **Key Features:**
Provide closed-loop control with feedback mechanisms for precise position, velocity, and torque regulation.
- **When to use:**
Perfect for robotic arms or systems needing both precision and power.
- **Critical Insight:**
While more expensive than stepper motors, servo motors excel in dynamic applications due to their ability to adjust torque and speed in real time based on feedback.

### Geared Motors
- **Key Features:**
They combine a motor and gearbox for torque amplification at the cost of reduced speed.
- **When to use:**
Ideal for heavy lifting, rough terrain vehicles, or force-critical applications.
- **Critical Insight:**
Gearbox efficiency and backlash must be factored in, especially in applications requiring precise motion control. Always match the motor's torque characteristics with the gearbox’s ratings to avoid failure.

### AC Motors (Single and 3-Phase)
- **Key Features:**
Robust, long-lasting motors primarily used in industrial applications. Single-phase motors are simpler, while 3-phase motors offer higher efficiency and smoother performance.
- **When to use:**
Ideal for conveyors, pumps, or high-load industrial robots.
- **Critical Insight:**
3-phase motors offer less vibration and lower torque ripple compared to single-phase motors. However, they require complex drive systems.

## Trade-Offs to Consider

### Brushed vs. Brushless Motors
- **Precision vs. Maintenance:**
Brushed motors provide excellent low-speed torque but require frequent maintenance due to brush wear. Brushless motors, with electronic commutation, are virtually maintenance-free and provide smoother operation.
- **Efficiency vs. Cost:**
Brushless motors are significantly more efficient but cost more due to the need for advanced controllers. If efficiency is crucial, brushless motors are a better investment.
- **Torque vs. Speed:**
Brushed motors excel at producing torque at lower speeds, while brushless motors maintain torque across a wider speed range.

### 3-Phase vs. 2-Phase Motors
- **Smoothness vs. Simplicity:**
3-phase motors deliver smoother torque and better efficiency, making them suitable for high-performance applications. 2-phase motors are simpler, cheaper, and adequate for less demanding tasks.
- **Power Requirements:**
3-phase motors handle higher power loads efficiently, while 2-phase motors are better for low-power systems.

### Precision vs. Torque
- **Stepper vs. Servo Motors:**
Stepper motors excel in precise, repetitive tasks but lose torque at high speeds. Servo motors combine precision with dynamic torque adjustment, making them more versatile for tasks requiring both accuracy and force.
- **Geared Motors for Torque Amplification:**
Use geared motors if raw torque is required, but note the trade-off with speed and potential backlash.

### Speed vs. Force
- **High-Speed Applications:**
BLDC motors are the best choice for high-speed, low-torque applications like drones.
- **Force-Centric Tasks:**
Geared DC motors or high-torque servos are ideal for heavy-load applications.

### Startup Current vs. Steady-State Efficiency
- **Motors with High Startup Current:**
Brushed DC and stepper motors exhibit significant inrush current at startup. Ensure your power supply and drivers can handle these spikes.
- **Motors with High Efficiency:**
BLDC motors shine in applications requiring prolonged operation due to their low energy
consumption.

### Heat Management
- **High Torque Motors:**
Stepper motors generate significant heat under load due to constant current draw. Implement cooling solutions if used for extended periods.
- **High Speed Motors:**
BLDC and servo motors often require active or passive cooling in high-performance scenarios to maintain reliability.

## Summary
To summarize; selecting the right motor for a project involves balancing priorities and understanding the trade-offs between precision, control complexity, maintenance, torque, and cost. For applications requiring high precision, stepper or servo motors are ideal, whereas geared motors or high-torque BLDCs are suited for power-intensive tasks. Simple projects can use brushed motors for their ease of use, while advanced designs may justify the cost and control demands of brushless or servo motors. Brushless and AC motors are better for long-term use due to low maintenance, making them worthwhile investments. To amplify torque, gearboxes are effective, though they can reduce speed and introduce backlash. Finally, while cost-effective motors like brushed or stepper options work for non-critical components, critical applications demand higher-performing, costlier solutions.

## See Also:
- [Motor Controller with Feedback](https://roboticsknowledgebase.com/wiki/actuation/motor-controller-feedback/)
- [Linear Actuator Resources and Quick Reference](https://roboticsknowledgebase.com/wiki/actuation/linear-actuator-resources/)

## Further Reading
- [Back-EMF in BLDC Motors : A Complete Guide](https://mechtex.com/blog/back-emf-in-bldc-motors-a-complete-guide#:~:text=Effects%20of%20Back%2DEMF%20on%20BLDC%20Motor%20Performance,and%20back%2DEMF%20which%20results%20in%20speed%20regulation)
- [Torque Calculator](https://www.omnicalculator.com/physics/torque)

## References
- [Brushless Motors](https://rozum.com/brushless-motors/)
- [Comprehensive Guide to Different Types of Motors Used in Robotics](https://sntoom.net/comprehensive-guide-to-different-types-of-motors-used-in-robotics/)
- [Selecting and Sizing Your Motor](https://www.robotsforroboticists.com/motor-selection/)
- [Stepper Motor Guide](https://anaheimautomation.com/blog/post/stepper-motor-guide?srsltid=AfmBOopyKTO7E7Wi8RO1rmnCROOjSvcui4wTm4Hf8EAMExVWdz4x0P0N)