HomeEngineering & Automotive › Three-Phase Power Calculator

Three-Phase Power Calculator

Computes real, apparent and reactive power of a balanced three-phase load from line voltage, line current and power factor, or the line current needed for a given real power, and reports the phase voltage and phase current for wye (star) or delta connection.

When to use

You need the power drawn by a three-phase motor, heater or feeder from its current, the full-load current for a given kW, or the per-phase voltage and current for a wye or delta winding.

Do not use when: The load is unbalanced (compute each phase separately), single-phase (use kva-kw-power-factor or electric-power), or you only know kVA and power factor without a voltage (use kva-kw-power-factor).

Formula

apparent_power_kva = √3 × line_voltage_v × current_a / 1000; real_power_kw = apparent_power_kva × power_factor; reactive_power_kvar = √(S² − P²); current_a = real_power_kw × 1000 / (√3 × line_voltage_v × power_factor); wye: phase_voltage_v = line_voltage_v / √3, phase_current_a = current_a; delta: phase_voltage_v = line_voltage_v, phase_current_a = current_a / √3; power_per_phase_kw = real_power_kw / 3

Balanced sinusoidal three-phase system: the √3 relations hold for both wye and delta when line quantities are used, so total power does not depend on the connection. Motor nameplate kW is shaft output; divide by efficiency to obtain the electrical input power before computing current.

Inputs

ParameterTypeUnitRequiredDescription
modeenum: power_from_current | current_from_poweryespower_from_current needs current_a; current_from_power needs real_power_kw.
line_voltage_vnumberVdefault 400RMS line-to-line voltage (400 V Europe, 480 V North America, 415 V UK/Australia, 208 V US commercial). Range: > 0, ≤ 1000000
current_anumberAnoRMS line current per conductor (power_from_current mode). Range: ≥ 0, ≤ 1000000
real_power_kwnumberkWnoReal (active) power drawn by the load in kilowatts (current_from_power mode); for a motor use input power = shaft kW / efficiency. Range: > 0, ≤ 10000000
power_factornumberdefault 0.85cos φ of the load: 0.85 typical for loaded induction motors, 1.0 for resistive heaters. Range: > 0, ≤ 1
connectionenum: wye | deltadefault wyeWinding connection; it changes only the per-phase values, not the total power.

Outputs

OutputTypeUnitDescription
real_power_kwnumberkWP = √3 × V_L × I_L × PF / 1000.
apparent_power_kvanumberkVAS = √3 × V_L × I_L / 1000.
reactive_power_kvarnumberkVARQ = √(S² − P²).
current_anumberAI_L = P × 1000 / (√3 × V_L × PF), or the given current.
phase_voltage_vnumberVVoltage across one winding: V_L / √3 for wye, V_L for delta.
phase_current_anumberACurrent through one winding: I_L for wye, I_L / √3 for delta.
power_per_phase_kwnumberkWP / 3 = V_phase × I_phase × PF / 1000.
phase_angle_degreesnumber°arccos(power_factor).

Example

400 V, 10 A, PF 0.85, wye: {"mode":"power_from_current","line_voltage_v":400,"current_a":10,"power_factor":0.85,"connection":"wye"}{"real_power_kw":5.889,"apparent_power_kva":6.928,"reactive_power_kvar":3.65,"current_a":10,"phase_voltage_v":230.94,"phase_current_a":10,"power_per_phase_kw":1.963}

15 kW at 400 V, PF 0.85, delta: {"mode":"current_from_power","line_voltage_v":400,"real_power_kw":15,"power_factor":0.85,"connection":"delta"}{"current_a":25.471,"apparent_power_kva":17.647,"reactive_power_kvar":9.296,"phase_voltage_v":400,"phase_current_a":14.706}

GET https://tttkmbb.com/api/v1/calculate/three-phase-power?mode=power_from_current&line_voltage_v=400&current_a=10&power_factor=0.85&connection=wye

Machine access

Sources

FAQ

Why does the connection not change the power?

With line-to-line voltage and line current the power is √3 × V_L × I_L × PF in both cases; wye and delta only differ in how that splits into winding voltage and winding current.

Is the voltage line-to-line or line-to-neutral?

Enter the line-to-line (phase-to-phase) voltage, e.g. 400 V in a 230/400 V system; the calculator reports the 230 V line-to-neutral value as the wye phase voltage.

How do I get a motor's current from its nameplate kW?

Nameplate kW is mechanical output; use real_power_kw = kW / efficiency (e.g. 15 / 0.9 = 16.7 kW) with the nameplate power factor for a realistic full-load current.

Related calculators