DEV Community

Cover image for Why Three-Phase Power Gets Misread So Often in Real Projects
Evgenii Konkin
Evgenii Konkin

Posted on

Why Three-Phase Power Gets Misread So Often in Real Projects

Three-phase power looks simple on paper.

You measure voltage.

You measure current.

You estimate power factor.

Then you calculate kW, kVA, and kVAR.

But in real projects, the mistake usually happens before the math even starts.

Engineers mix up line-to-line and line-to-neutral voltage.

They size equipment from kW instead of kVA.

Or they use a single-phase mindset on a three-phase system.

That is how a system that looks “close enough” on a spreadsheet turns into an undersized transformer, overloaded feeder, or misleading generator estimate.


The Core Formula

For a balanced three-phase system, apparent power is:

S=3×VL×IL1000 S = \frac{\sqrt{3} \times V_L \times I_L}{1000}

Where:

  • S = apparent power, kVA
  • V_L = line-to-line voltage, V
  • I_L = line current, A

Then real power is:

P=S×PF P = S \times PF

And reactive power is:

Q=S2P2 Q = \sqrt{S^2 - P^2}

Where:

  • P = real power, kW
  • Q = reactive power, kVAR
  • PF = power factor

Why the √3 Factor Matters

A lot of field mistakes come from ignoring one number:

3 \sqrt{3}

That factor is not a shortcut.

It comes directly from the 120° phase separation in a balanced three-phase system.

If someone uses:

P=V×I1000 P = \frac{V \times I}{1000}

on a three-phase feeder, the result is wrong from the start.

And if they enter phase-to-neutral voltage instead of line-to-line voltage, they understate system demand even more.

So the formula is not the problem.

The setup is.


What kW, kVA, and kVAR Actually Tell You

These three numbers answer different design questions:

  • kW tells you how much real work the load is doing
  • kVA tells you how much demand the source and conductors must carry
  • kVAR tells you how much reactive burden is flowing through the system

That distinction matters because transformers, generators, UPS systems, and switchgear are not sized from kW alone.

They are constrained by apparent power.

A load may look reasonable in kW and still be a problem in kVA if the power factor is poor.


Real Engineering Example

Let’s take a common industrial case:

  • Line voltage = 480 V
  • Line current = 120 A
  • Power factor = 0.85

Step 1 — Apparent power

S=3×480×1201000 S = \frac{\sqrt{3} \times 480 \times 120}{1000}
S99.67 kVA S \approx 99.67 \text{ kVA}

Step 2 — Real power

P=99.67×0.85 P = 99.67 \times 0.85
P84.72 kW P \approx 84.72 \text{ kW}

Step 3 — Reactive power

Q=99.67284.722 Q = \sqrt{99.67^2 - 84.72^2}
Q52.54 kVAR Q \approx 52.54 \text{ kVAR}

Why This Example Matters

At first glance, 84.72 kW may be the number people focus on.

But for equipment sizing, the more important number may be:

99.67 kVA

That is what the transformer, generator, or UPS must actually support.

This is why engineers get into trouble when they size upstream equipment from real power only.

The load is not just consuming useful power.

It is also demanding reactive support from the system.

And that demand still loads conductors and source equipment.


Where Engineers Usually Go Wrong

You see the same mistakes over and over:

  • entering phase-to-neutral voltage instead of line-to-line voltage
  • using a single-phase formula for a three-phase feeder
  • treating kW as the equipment sizing number
  • ignoring power factor when reviewing actual system loading
  • assuming the circuit is balanced when it is not

The last one matters a lot.

This formula is valid for balanced three-phase systems.

Once the load becomes significantly unbalanced, each phase has to be reviewed separately.


Practical Takeaways

  1. Use line-to-line voltage, not phase-to-neutral, in the standard three-phase formula
  2. Size transformers, generators, and UPS systems from kVA, not just kW
  3. Low power factor increases system burden even when real power looks reasonable
  4. The formula is fast — but only when the system is actually balanced

Because again, the math is rarely the source of the mistake.

The interpretation is.


Try It Yourself

If you want to quickly check kVA, kW, and kVAR for a balanced three-phase load, use the calculator here:

👉 Three-Phase Power Calculator

It is a fast way to screen feeder demand, transformer loading, generator sizing, and power factor impact before you move into deeper system analysis.

Top comments (0)