DEV Community

Cover image for Three-Phase Power: Why That sqrt(3) Keeps Showing Up
NovaSolver
NovaSolver

Posted on • Originally published at novasolver.jp

Three-Phase Power: Why That sqrt(3) Keeps Showing Up

Walk into any industrial plant and look at the machines that move real loads — pumps, compressors, conveyors, large air handlers — and you will find three wires feeding nearly all of them. Three-phase power is the quiet standard behind almost every kilowatt of industrial work, yet the first thing that trips up engineers new to it is a stubborn little constant: the square root of three that appears in every power formula.

This article explains what three-phase power delivers, where that sqrt(3) actually comes from, and how to compute real, reactive, and apparent power for a balanced load without second-guessing the constant.

Why this calculation matters

Three-phase systems dominate power distribution and heavy machinery for solid physical reasons. The three voltages are spaced 120 degrees apart, so their instantaneous sum delivers constant power rather than the pulsing flow of a single-phase supply. That steadier power means smoother torque in motors and less mechanical vibration. Three-phase also moves more power through less conductor metal, which lowers cost across a whole installation.

Getting the power numbers right is not academic. Real power sets the energy bill and the heat a load dissipates. Reactive power, though it does no useful work, still loads up cables and transformers and is what utilities penalize through power-factor charges. Apparent power is what you actually size equipment for. Conductors, breakers, and transformers are rated in apparent power because they must carry the full current whatever the phase angle. Confuse the three and you either undersize hardware or overpay for capacity you never use.

The core formula

Start with one phase. In a single phase, real power is the product of voltage, current, and the power factor — the cosine of the angle between the voltage and current waveforms:

P_phase = V_phase * I_phase * cos(phi)
Enter fullscreen mode Exit fullscreen mode

A balanced three-phase load is just three identical single-phase loads, so the total real power is three times the per-phase value:

P = 3 * V_phase * I_phase * cos(phi)
Enter fullscreen mode Exit fullscreen mode

The trouble is that engineers rarely measure phase quantities. They measure line-to-line voltage and line current, because those are what you can probe at the terminals. The relationship between line and phase quantities differs by connection type. In a star (Y) connection, line voltage is sqrt(3) times phase voltage while line current equals phase current. In a delta connection, line current is sqrt(3) times phase current while line voltage equals phase voltage.

Substitute either set of relations into the equation above and the same result appears both times. Expressed in measurable line quantities:

P = sqrt(3) * VL * IL * cos(phi)
Enter fullscreen mode Exit fullscreen mode

That is where the root three comes from — it is not a fudge factor, it is the geometric consequence of the 120-degree phase spacing surviving the change from phase to line variables. The companion formulas follow the same pattern:

S = sqrt(3) * VL * IL                 (apparent power, VA)
Q = sqrt(3) * VL * IL * sin(phi)      (reactive power, VAR)
Enter fullscreen mode Exit fullscreen mode

The three are linked by the power triangle, where S is the hypotenuse:

S^2 = P^2 + Q^2
Enter fullscreen mode Exit fullscreen mode

A worked example

Take a balanced three-phase load with a line voltage of VL = 400 V, a line current of IL = 20 A, and a power factor of cos(phi) = 0.85.

Step 1 — real power. Use the line-quantity formula directly:

P = sqrt(3) * VL * IL * cos(phi)
P = 1.732 * 400 * 20 * 0.85
P = 11,778 W, about 11.8 kW
Enter fullscreen mode Exit fullscreen mode

Step 2 — apparent power. This is the same expression without the power factor:

S = sqrt(3) * VL * IL
S = 1.732 * 400 * 20
S = 13,856 VA, about 13.9 kVA
Enter fullscreen mode Exit fullscreen mode

Step 3 — reactive power. Rather than recompute with sin(phi), use the power triangle:

Q = sqrt(S^2 - P^2)
Q = sqrt(13856^2 - 11778^2)
Q = 7,298 VAR, about 7.3 kVAR
Enter fullscreen mode Exit fullscreen mode

So this load draws 11.8 kW of useful power but loads the system to 13.9 kVA, with 7.3 kVAR of reactive power circulating to magnetize motors and energize cable capacitance. The cables and breaker must be rated for the 13.9 kVA figure, even though only 11.8 kW does real work. That gap is exactly what power-factor correction aims to close.

Common mistakes

Dropping or misplacing the sqrt(3). The single most common error. The factor belongs in the line-quantity formulas. If you work in phase voltages and phase currents instead, the formula is just 3 times the phase product — no root three. Mixing the two conventions inflates or deflates the answer by 73 percent.

Treating apparent power as the useful number. Apparent power sizes equipment, but it is not what the load consumes as energy. Real power, P, is the figure that turns into work and heat and shows up on the meter.

Assuming the load is balanced when it is not. The sqrt(3) formulas assume three identical phases. An unbalanced load needs each phase computed separately and summed; applying the balanced shortcut to an unbalanced system gives a wrong total and hides the overloaded phase.

Confusing line and phase voltage on the nameplate. A 400 V three-phase system means 400 V line-to-line, which corresponds to about 230 V line-to-neutral in a star connection. Reading the wrong one into the formula scales the result by sqrt(3).

Forgetting that power factor can be leading. Reactive power from inductive loads and from capacitive loads carries opposite sign. Lumping them together without sign — or assuming every load is inductive — misstates the net reactive demand.

Try the interactive NovaSolver calculator

Running these formulas once is easy; building a feel for how the power triangle shifts as the power factor changes is the part worth practicing. The Three-Phase Power Calculator on NovaSolver lets you choose a Y or delta connection, set line voltage, line current, power factor, and frequency, and returns real power, reactive power, apparent power, and the capacitance needed for power-factor correction — with a phasor diagram and power triangle that update as you adjust the inputs.

Related calculators

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

Closing note

Three-phase power calculations come down to a handful of formulas held together by one constant and one triangle. The sqrt(3) is not a mystery — it is the signature of 120-degree phase spacing seen through line-to-line measurements. Keep real, reactive, and apparent power clearly separate, decide which connection you are dealing with, and confirm the load is balanced before you reach for the shortcut. Do that, and the rest of three-phase analysis — from cable sizing to power-factor correction — follows in a straight line.

Top comments (0)