When a motor isn't the right muscle
Most robots move using an electric motor: spin a shaft, gear it down, and push the joint. But an actuator — the general name for whatever turns a control signal into motion — doesn't have to be a spinning motor. Some of the strongest and gentlest robots in the world get their muscle from pressurized oil, compressed air, hidden springs, or bending rubber. This guide is a tour of those four alternatives, and of why an engineer would reach past the obvious motor to pick one.
A good way to keep the four straight: hydraulics push oil for brute force, pneumatics push air for cheap speed and bounce, series-elastic actuators add a spring so the robot can feel and meter out force, and soft actuators bend whole bodies instead of pivoting at a hinge. Each trades away something a motor does well to gain something a motor does badly.
Hydraulics: oil that lifts mountains
A hydraulic actuator works by pumping oil under enormous pressure into a sealed cylinder, where the pressure pushes a piston that drives the joint. Because liquids barely compress, the oil behaves like a solid rod that you can make as long or as forceful as you like just by sending more oil. This is the same trick an excavator uses to curl its bucket through hard clay, and it is why hydraulics dominate when raw force matters most.
The headline number is force density: a small hydraulic cylinder can output far more force for its weight than a motor-and-gearbox of the same size. That is why the famous early generations of big legged robots — the ones that could keep their footing when shoved or walk over rubble — were hydraulic. When a joint has to absorb a hard landing or push back against a person leaning on it, oil shrugs it off.
Pneumatics: cheap, fast, and a little bouncy
Swap the oil for compressed air and you get a pneumatic actuator. Air is everywhere, the parts are cheap, and a blast of pressure can snap a piston from one end to the other almost instantly — perfect for the rapid, repetitive clamping and stamping you see all over factory automation. Cut the pressure and a spring or gravity returns the piston, so the whole thing can be wonderfully simple.
But air, unlike oil, compresses — and that one fact shapes everything. Push on a pneumatic piston and the trapped air squishes a bit, so the actuator behaves like a built-in air spring. That springiness is lovely when you want a forgiving, shock-absorbing grip, but it is a nightmare when you want to stop a joint at an exact angle: the air keeps bouncing, and holding a precise mid-stroke position is genuinely hard. Pneumatics shine at "slam to one end or the other," not at "hover gently at 37.2 degrees."
Series-elastic actuators: putting a spring in the way on purpose
Engineers usually fight to make joints stiff and direct. A series-elastic actuator (SEA) does the opposite on purpose: it bolts a calibrated spring between the motor and the load, so the motor never touches the world rigidly. It sounds backwards, but that spring is a superpower — it turns a force problem into a position problem the robot already knows how to solve.
Here is the trick. A spring's deflection is a clean, linear stand-in for the force squeezing it: Hooke's law says force equals stiffness times how far the spring has deflected. So if you measure how much the spring has squashed — easy, with a cheap position sensor — you instantly know the force the joint is applying, no expensive force/torque sensor required. And by commanding the motor to chase a target deflection, you control force directly and smoothly.
force_on_load = spring_stiffness * spring_deflection # Measure deflection with a cheap encoder, and force comes for free. # Want 10 N out? Command the motor until deflection = 10 / stiffness.
The spring buys two more things. It adds mechanical compliance — gentle give — so the joint cushions impacts and stays safe around people instead of clobbering them, the foundation of impedance control. And it improves backdrivability: push the limb by hand and it yields, because the spring lets the motor sense and follow you. The cost is a softer joint that responds a touch more slowly, so SEAs suit walking, gentle pushing, and physical human contact more than razor-sharp precision tasks.
Soft actuators: robots that bend instead of pivot
Everything so far still moves at a rigid hinge. Soft actuators throw out the hinge entirely. A pneumatic artificial muscle is the classic example: a rubber tube wrapped in a braided mesh that, when you inflate it with air, bulges fatter and shortens — pulling like a real muscle rather than spinning like a motor. Pump it up and it contracts; let the air out and it relaxes.
Other soft actuators are whole bendable structures: chambers molded into a rubber finger that curl when inflated, or materials that flex when heated or charged. Because the body itself deforms, there are no precise joints to align and nothing hard to pinch a person or shatter a fragile object. This is the heart of soft robotics and a favorite tool of bio-inspired robotics, which copies octopus arms, elephant trunks, and worms.
Softness wins when contact is unpredictable: gripping a ripe tomato, hugging an oddly shaped package, or working safely beside a body in rehabilitation robotics. It loses when you need stiffness, speed, or pinpoint accuracy — a soft arm sags under load and can't hold a fine position. So the real lesson of this whole guide is that there is no single best muscle: hydraulics for force, pneumatics for cheap speed, series-elastic for gentle controlled force, soft for safe contact. Good robot design is choosing the actuator whose weakness you can live with.