DEV Community

Cover image for Transformer Turns Ratio: How Coils Trade Voltage for Current
NovaSolver
NovaSolver

Posted on • Originally published at novasolver.jp

Transformer Turns Ratio: How Coils Trade Voltage for Current

The wall outlet in your home delivers a few hundred volts, but the transmission lines feeding your neighborhood carry hundreds of thousands. Somewhere between the power plant and your charger, that voltage is stepped down again and again, each time by a quiet steel-and-copper device with no moving parts. The whole transformation rests on a single number: how many times each winding wraps around the core.

This article explains what the turns ratio actually does, how voltage and current trade places across it, and how to run the numbers for a single-phase transformer without losing track of which quantity goes which way.

Why this calculation matters

The transformer is the component that makes the modern grid possible. Power travels efficiently at high voltage because line losses scale with current squared, so cutting current by raising voltage cuts losses dramatically. But generation and consumption both happen at lower, safer voltages. The transformer is the bridge, and the turns ratio is what sets the height of that bridge.

The same idea reaches well beyond the grid. Switching power supplies, audio output stages, isolation transformers in medical equipment, and impedance-matching networks in RF design all depend on choosing a turns ratio correctly. Get it wrong and you either deliver the wrong voltage or, just as bad, force the wrong current through a winding and overheat it. Because the transformer touches voltage, current, and impedance all at once, a small error in the ratio propagates through every one of them.

The core formula

A transformer has two windings sharing a common magnetic core. An alternating current in the primary winding sets up a changing magnetic flux; that same flux threads the secondary winding and induces a voltage in it. Each turn of wire sees the same flux, so the induced voltage in each winding is proportional to its number of turns.

That gives the central relationship. With N1 primary turns and N2 secondary turns, the voltages divide in the same proportion:

V2 / V1 = N2 / N1
Enter fullscreen mode Exit fullscreen mode

The ratio N1/N2 is called the turns ratio, often written a. For an ideal transformer, power in equals power out — there is nowhere for energy to go. Apparent power on the primary side must equal apparent power on the secondary side:

V1 * I1 = V2 * I2
Enter fullscreen mode Exit fullscreen mode

Combine the two and the current relationship falls out. Current transforms inversely to voltage:

I2 / I1 = N1 / N2 = V1 / V2
Enter fullscreen mode Exit fullscreen mode

So a step-down transformer that halves the voltage doubles the available current, and vice versa. There is no free lunch — the transformer trades one for the other.

A third consequence is worth keeping in mind: impedance transforms as the square of the turns ratio.

Z_primary = (N1 / N2)^2 * Z_secondary
Enter fullscreen mode Exit fullscreen mode

That square is why transformers are the standard tool for impedance matching. A modest 5:1 turns ratio reflects a load impedance back to the source multiplied by 25.

A worked example

Take an ideal single-phase transformer with a primary winding of N1 = 500 turns and a secondary of N2 = 100 turns. The primary is connected to V1 = 240 V.

Step 1 — find the secondary voltage. The turns ratio sets the voltage split directly:

V2 = V1 * (N2 / N1)
V2 = 240 * (100 / 500)
V2 = 240 * 0.2 = 48 V
Enter fullscreen mode Exit fullscreen mode

So this is a step-down transformer: 240 V in, 48 V out.

Step 2 — find the primary current for a given load. Suppose the secondary feeds a load drawing I2 = 5 A. Current transforms inversely to voltage, so the primary current is smaller by the same factor:

I1 = I2 * (N2 / N1)
I1 = 5 * 0.2 = 1.0 A
Enter fullscreen mode Exit fullscreen mode

Step 3 — confirm power is conserved. In the ideal case, apparent power must match on both sides:

Primary:   V1 * I1 = 240 * 1.0 = 240 VA
Secondary: V2 * I2 = 48 * 5   = 240 VA
Enter fullscreen mode Exit fullscreen mode

Both sides agree at 240 VA. The transformer dropped the voltage by a factor of five and raised the current-handling by the same factor, leaving the power untouched. That is the whole behavior of an ideal transformer in three lines of arithmetic.

Common mistakes

Inverting the ratio. The most frequent slip is writing V2/V1 = N1/N2 instead of N2/N1. A quick sanity check fixes it: the winding with more turns always carries the higher voltage. If your answer puts the higher voltage on the fewer-turns side, you flipped the fraction.

Forgetting that current goes the other way. Voltage and turns rise together; current falls. The high-voltage winding carries the low current and is wound from thinner wire. Treating current as proportional to turns is a guaranteed wiring error.

Assuming the ideal transformer is the real one. Real units have winding resistance, leakage inductance, core hysteresis, and eddy-current loss. Efficiency is high — often well above 95 percent for power transformers — but it is never 100 percent. The ideal equations give the design target, not the measured output.

Ignoring the volts-per-turn constraint. The induced voltage per turn depends on frequency, core area, and peak flux density through E = 4.44 * f * N * B_max * A_c. You cannot pick any turns count you like; the core must support the flux without saturating. A ratio that looks fine on paper can still demand an impractically large core.

Mixing up VA and W. A transformer is rated in volt-amperes, not watts, because it must carry the full current regardless of the load's power factor. Sizing a transformer from real power alone undersizes it for reactive loads.

Try the interactive NovaSolver calculator

Working the ratio once by hand is straightforward, but seeing how voltage, current, core flux, and efficiency move together is where the intuition forms. The Transformer Design & Calculator on NovaSolver lets you set primary and secondary voltage, apparent power, frequency, and peak core flux density, then returns the turns ratio, the required primary and secondary turns, and the core cross-section — with live B-H loop, voltage and current waveforms, and an efficiency-versus-load chart so you can watch the design respond as you change inputs.

Related calculators

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

Closing note

The transformer is one of the most elegant devices in electrical engineering: no moving parts, decades of service life, and a behavior governed almost entirely by counting turns of wire. Keep the core ideas straight — voltage follows turns, current runs inverse to it, power is conserved, and impedance scales as the square — and most single-phase transformer problems become a matter of careful bookkeeping. Run your own numbers, check that the power balances on both sides, and let the turns ratio be the anchor that the rest of the design hangs from.

Top comments (0)