Unit 02 · lesson
Choose the Mechanism from the Task
A common beginner mistake is starting with a part:
We have a motor. What can we build with it?
Engineering usually works better in the opposite direction:
The robot must do this job under these constraints. What mechanism can satisfy them?
Turn the mission into motion
Suppose the mission is:
Pick up a foam cube from the floor and place it on a shelf.
That sentence hides several mechanical requirements.
The robot may need to:
- approach the object;
- capture it despite small position error;
- hold it while moving;
- raise it to shelf height;
- release it without throwing it;
- fit inside a size limit.
Now the mechanism can be discussed intelligently.
Functional decomposition
Break the task into functions before parts.
MISSION
↓
acquire object
↓
retain object
↓
change height
↓
position over target
↓
release object
Each function can have several physical solutions.
For acquire object, options might include rollers, a claw, a scoop, or a funnel. For change height, options might include an arm, elevator, linkage, or rotating turret geometry.
This creates a design space rather than a single idea.
Decision matrix example
Score 1-5 only when you can explain the score.
| Candidate | Captures misalignment | Low complexity | Holds when stopped | Score notes |
|---|---|---|---|---|
| rigid claw | 2 | 4 | 4 | narrow capture zone |
| compliant rollers | 5 | 3 | 3 | actively centers object |
| passive scoop | 3 | 5 | 2 | easiest, but limited control |
The numbers are not truth. They force your assumptions into the open.
A fake decision matrix gives every favorite idea high scores. A useful matrix makes tradeoffs visible.
Failure case: designing only the ideal path
A mechanism can work perfectly in CAD and fail in the real world because the object arrives 40 mm off center, the floor is uneven, a shaft bends, the battery is low, or the robot approaches at an angle.
Robotic mechanisms should tolerate uncertainty where possible.
That might mean:
- funnels instead of exact alignment;
- compliance instead of rigid contact;
- larger capture zones;
- mechanical hard stops;
- sensor confirmation;
- recovery states.
Add to the dossier
Choose one robot task. Build a one-page mechanism decision:
- mission statement;
- functional decomposition;
- at least three candidate mechanisms;
- two or more constraints;
- final selection;
- one non-ideal condition your design must tolerate.
This is the first time your dossier moves from "what parts exist?" to "why this architecture?"