DEV Community

Cover image for Induction Motor Slip: Why the Rotor Must Always Fall Behind
NovaSolver
NovaSolver

Posted on • Originally published at novasolver.jp

Induction Motor Slip: Why the Rotor Must Always Fall Behind

Put a clamp meter on a running induction motor and check its shaft speed against the nameplate. A motor stamped 1500 rpm will turn at perhaps 1440 or 1460 under load. That gap looks like a defect, the kind of thing you might want to tune out. It is not. That shortfall is the entire reason the motor produces torque at all. Erase it and the shaft would coast to a stop.

This article explains what slip is, why an induction motor cannot run without it, and how to compute synchronous speed, slip, and the rotor frequency for a standard machine.

Why this calculation matters

Induction motors are the workhorses of industry. They drive pumps, fans, conveyors, compressors, and machine tools, and together they account for a large share of all electricity consumed by industry. They are rugged and cheap largely because the rotor has no brushes, no commutator, and no electrical connection to the outside world. But that same simplicity means the rotor cannot be told what to do — its behavior emerges entirely from slip.

Slip is the variable that ties together a motor's speed, torque, current, and efficiency. The starting torque, the pull-out torque, the rotor heating, and the operating efficiency all depend on it. An engineer who can read slip can predict how a motor will behave under load, diagnose why one runs hot, and judge whether a drive will hold speed when the load swings. Without that number, the rest of the equivalent-circuit analysis has no anchor.

The core method

The stator windings of a three-phase induction motor carry currents 120 degrees apart, and together they create a magnetic field that rotates around the air gap. The speed of that rotating field is the synchronous speed, set only by the supply frequency and the number of magnetic poles:

n_s = 120 * f / p
Enter fullscreen mode Exit fullscreen mode

Here n_s is in rpm, f is the supply frequency in Hz, and p is the number of poles. More poles means a slower field; a higher frequency means a faster one.

Now the key idea. The rotating field sweeps past the rotor bars and induces currents in them — that is the induction in "induction motor." Those rotor currents interact with the field to produce torque. But induction needs relative motion. If the rotor ever caught up to the field and turned at exactly synchronous speed, the field would no longer sweep past the bars, no current would be induced, and the torque would vanish. The rotor must therefore always run a little slower than the field.

That speed deficit, expressed as a fraction of synchronous speed, is the slip:

s = (n_s - n_r) / n_s
Enter fullscreen mode Exit fullscreen mode

where n_r is the actual rotor speed. Slip is dimensionless. At standstill the rotor speed is zero, so s = 1. At synchronous speed s = 0. A motor running normally under load sits at a small slip, often between 0.01 and 0.05.

One more quantity follows directly. The rotor bars see the field passing them at the slip speed, not the full synchronous speed, so the frequency of the induced rotor currents is the supply frequency scaled by slip:

f_rotor = s * f
Enter fullscreen mode Exit fullscreen mode

This slip frequency is low in normal running, which is why rotor iron losses stay small even though the rotor carries substantial current.

A worked example

Take a 4-pole induction motor connected to a 50 Hz supply.

Step 1 — synchronous speed. Use the field-speed formula with f = 50 Hz and p = 4:

n_s = 120 * f / p
n_s = 120 * 50 / 4
n_s = 1500 rpm
Enter fullscreen mode Exit fullscreen mode

The stator field rotates at 1500 rpm. No matter what the rotor does, the field holds this speed.

Step 2 — slip. Suppose the loaded rotor is measured turning at n_r = 1440 rpm. The slip is the normalized gap:

s = (n_s - n_r) / n_s
s = (1500 - 1440) / 1500
s = 60 / 1500 = 0.04
Enter fullscreen mode Exit fullscreen mode

So this motor runs at 4 percent slip — a typical value for a motor near its rated load.

Step 3 — rotor frequency. The induced rotor currents alternate at the slip frequency:

f_rotor = s * f
f_rotor = 0.04 * 50 = 2 Hz
Enter fullscreen mode Exit fullscreen mode

The rotor currents alternate at just 2 Hz, even though the supply is 50 Hz. Note what would happen at zero slip: a rotor turning at exactly 1500 rpm would see no relative motion, induce no current, and produce no torque. The 60 rpm shortfall is not waste — it is what makes the machine work.

Common mistakes

Thinking slip is a fault. New engineers sometimes treat the speed gap as inefficiency to be eliminated. It is the operating principle. A loaded induction motor must slip; the question is only how much.

Reversing the slip fraction. Slip is (n_s - n_r) divided by n_s, the synchronous speed — not divided by the rotor speed. Using the rotor speed in the denominator gives a slightly wrong number that drifts further off as load increases.

Forgetting that slip rises with load. Slip is not a fixed property of a motor. A lightly loaded machine runs near synchronous speed at very low slip; as the load grows, the rotor falls further behind and slip climbs. Quoting a single slip value without naming the load is incomplete.

Confusing poles with pole pairs. The formula n_s = 120f/p uses the total number of poles, which is always even. A "2-pole-pair" machine has 4 poles. Plugging in pole pairs doubles the synchronous speed and throws off everything downstream.

Ignoring the runaway region near pull-out. Past the pull-out (maximum-torque) slip, more slip produces less torque, not more. A motor pushed beyond that point stalls rather than digging in. Slip and torque are not monotonically related across the whole range.

Try the interactive NovaSolver calculator

Working slip by hand is quick, but the way slip, torque, current, and efficiency move together across the speed range is best seen rather than computed point by point. The Three-Phase Induction Motor Calculator on NovaSolver lets you set the pole count, supply frequency, voltage, and the equivalent-circuit parameters R1, X1, Xm, R2, and X2, then plots the full torque-speed curve and returns synchronous speed, starting torque, maximum torque, and rated efficiency — so you can watch the pull-out point shift as you change rotor resistance.

Related calculators

You can browse the full set in the electromagnetics tools hub.

Closing note

Slip is one of those ideas that flips from looking like a flaw to looking like the whole point once you see it clearly. The rotor falls behind the field because it must — relative motion is what induces the currents that make torque. Compute synchronous speed from poles and frequency, take the normalized gap to the measured rotor speed, and you have the single number that unlocks an induction motor's torque, current, and efficiency. Get slip right and the rest of the machine's behavior follows.

Top comments (0)