DEV Community

Cover image for Belt Drive Power Transmission: How Friction Sets the Tension and the Power
NovaSolver
NovaSolver

Posted on • Originally published at novasolver.jp

Belt Drive Power Transmission: How Friction Sets the Tension and the Power

Lift the hood of almost any car and you will find a single serpentine belt threading past five or six pulleys, driving the alternator, the water pump, and the air-conditioning compressor at once. It carries real power, yet it grips the pulleys by nothing more than friction. No teeth, no keys — just a rubber band wrapped around a wheel, pulled tight.

That arrangement works because of a beautiful piece of mechanics: the ratio of tension on the two sides of a belt is not a small effect, it is exponential in the wrap angle and the friction coefficient. This article explains the relationship, works a full numerical example, and points out where belt drives are pushed past what friction can deliver.

Why this calculation matters

Belt drives are everywhere precisely because they are cheap, quiet, tolerant of misalignment, and forgiving of shock loads. They move power in machine tools, conveyors, pumps, fans, agricultural equipment, and engine accessories. But a belt is not a rigid coupling. It transmits torque only through the friction grip between belt and pulley, and that grip has a hard ceiling.

Understanding the limit is the whole point of the calculation. Below the ceiling, the belt carries the load steadily. Push past it and the belt slips: it keeps the pulley moving but loses speed, generates heat, glazes, and wears out fast. The exponential tension law tells you exactly where that ceiling sits for a given friction coefficient and wrap angle, which is what lets you choose belt size, pulley diameters, and pretension before the drive is ever built. It also explains practical fixes — a larger pulley, a tighter wrap, an idler — in a single consistent picture.

The core formula

Consider a flat belt wrapped around a pulley. As it runs, one side is pulled tight and the other goes slack; the difference between those two tensions is what drives the pulley. Analysing a tiny element of belt against the pulley surface — balancing friction against the change in tension around the arc — gives the capstan, or belt-friction, equation:

T1 / T2 = e^(mu * theta)
Enter fullscreen mode Exit fullscreen mode

T1 is the tight-side tension, T2 is the slack-side tension, mu is the coefficient of friction between belt and pulley, and theta is the wrap angle in radians — the arc of pulley that the belt actually touches. The relationship is exponential, which is why even a modest friction coefficient and a half-turn of wrap produce a large tension ratio.

The power transmitted is set by the difference in tension, not the ratio, multiplied by the belt speed:

P = (T1 - T2) * v
Enter fullscreen mode Exit fullscreen mode

Here P is power in watts, the tensions are in newtons, and v is the belt's linear speed in metres per second. The belt speed itself comes from the driving pulley:

v = pi * D * n / 60
Enter fullscreen mode Exit fullscreen mode

with D the pulley diameter in metres and n its rotational speed in rev/min.

Two ideas tie these together. First, the capstan equation sets the maximum ratio T1/T2 that friction can sustain; ask for more difference than that and the belt slips. Second, for a given tight-side tension — usually limited by belt strength — power rises if you can raise the friction coefficient, increase the wrap angle, or run the belt faster. That is exactly why V-belts, which wedge into a grooved pulley and behave as if mu were much larger, transmit more power than flat belts of the same width.

A worked example

Take a flat-belt drive with a friction coefficient mu = 0.3 and a 180-degree wrap around the pulley.

Step 1 — convert the wrap angle to radians.

A 180-degree wrap is exactly half a turn:

theta = 180 degrees = pi rad = 3.1416 rad
Enter fullscreen mode Exit fullscreen mode

Step 2 — find the tension ratio from the capstan equation.

T1 / T2 = e^(mu * theta)
T1 / T2 = e^(0.3 * pi)
T1 / T2 = e^0.9425
T1 / T2 = 2.57
Enter fullscreen mode Exit fullscreen mode

So friction alone allows the tight side to carry up to 2.57 times the slack-side tension before the belt slips.

Step 3 — find the slack-side tension.

Suppose the tight side is at its working value T1 = 800 N:

T2 = T1 / 2.57 = 800 / 2.57 = 311 N
Enter fullscreen mode Exit fullscreen mode

Step 4 — compute the transmitted power.

At a belt speed of v = 10 m/s:

P = (T1 - T2) * v
P = (800 - 311) * 10
P = 4,890 W
Enter fullscreen mode Exit fullscreen mode

The drive transmits about 4.9 kW. Notice that the useful pull is T1 - T2 = 489 N — only a fraction of the 800 N in the tight side. The rest of the tight-side tension is the price of keeping the belt gripping at all. That is the trade every belt drive makes.

Common mistakes

Using degrees instead of radians in the exponent. The capstan equation needs theta in radians. Substituting 180 instead of pi turns a sensible ratio into an astronomically large one. Convert first, every time.

Confusing the tension difference with the tension ratio. The ratio T1/T2 tells you whether the belt slips; the difference T1 - T2 tells you how much power it carries. A belt can have a huge ratio yet transmit little power if both tensions are small.

Forgetting that the small pulley sets the limit. The two pulleys in a drive usually have different wrap angles, and the smaller pulley has the smaller wrap. Slip starts there first, so the smaller pulley's wrap angle governs the drive — not the larger one.

Treating the friction coefficient as a fixed constant. mu depends on belt and pulley material, surface condition, temperature, and contamination. Oil, dust, or a glazed belt can cut it sharply. Design with a realistic, slightly conservative value rather than an optimistic textbook number.

Ignoring centrifugal tension at high speed. As belt speed climbs, the belt's own mass adds a centrifugal tension that does no useful work but eats into the strength budget. Above roughly 25 to 30 m/s it becomes significant, and the power a belt can carry actually peaks and then falls with further speed.

Try the interactive NovaSolver calculator

Working one operating point by hand is straightforward, but a real drive means balancing pulley sizes, speed, friction, and belt strength together. The Belt & Chain Transmission Calculator on NovaSolver lets you set both pulley diameters, the centre distance, rotation speed, power, and friction coefficient, and returns the speed ratio, belt speed, belt length, tight-side and slack-side tensions, wrap angle, driven speed, and a safety factor — with an animated view of the belt geometry as you change the inputs.

Related calculators

You can browse the full set in the mechanical engineering tools hub.

Closing note

A belt drive is a reminder that friction, often treated as a nuisance, can be the working principle of a machine. The capstan equation captures it in one line: tension ratio grows exponentially with wrap angle and friction coefficient, and that ratio caps the difference — and therefore the power — the belt can carry. Keep the angle in radians, watch the smaller pulley, design with an honest friction coefficient, and a humble loop of belt will move several kilowatts as quietly and reliably as the day it was fitted.

Top comments (0)