Calculate Power in 3 Phase

.three-phase-calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #ddd; border-radius: 8px; background-color: #f9f9f9; color: #333; box-shadow: 0 4px 6px rgba(0,0,0,0.1); } .three-phase-calculator-container h2 { color: #0056b3; text-align: center; margin-top: 0; } .calc-row { margin-bottom: 15px; } .calc-row label { display: block; font-weight: bold; margin-bottom: 5px; } .calc-row input, .calc-row select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .calc-btn { width: 100%; background-color: #0056b3; color: white; padding: 12px; border: none; border-radius: 4px; cursor: pointer; font-size: 18px; font-weight: bold; transition: background-color 0.3s; } .calc-btn:hover { background-color: #004494; } .results-box { margin-top: 25px; padding: 20px; background-color: #fff; border-left: 5px solid #0056b3; border-radius: 4px; } .result-item { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 1.1em; } .result-value { font-weight: bold; color: #d9534f; } .article-section { margin-top: 40px; line-height: 1.6; color: #444; } .article-section h3 { color: #222; border-bottom: 2px solid #0056b3; padding-bottom: 5px; } .formula-box { background: #eee; padding: 15px; border-radius: 5px; font-family: "Courier New", Courier, monospace; margin: 15px 0; }

3-Phase Power Calculator

Real Power (Active): 0.00 kW
Apparent Power: 0.00 kVA
Reactive Power: 0.00 kVAR

Understanding 3-Phase Power Calculation

Three-phase electric power is a common method of alternating current (AC) electric power generation, transmission, and distribution. It is the most frequent method used by electrical grids worldwide to transfer power. It is also used to power large motors and other heavy loads.

In a balanced three-phase system, the power remains constant, which helps reduce vibration in large industrial motors. To calculate the power, we must consider the voltage (V), current (I), and the power factor (PF), which represents the phase shift between voltage and current.

The 3-Phase Power Formula

The standard formula to calculate the real power (P) in a balanced three-phase system using line-to-line voltage is:

P (Watts) = √3 × Voltage (V) × Current (A) × Power Factor (PF)

Where √3 (the square root of 3) is approximately 1.732.

Key Metrics Explained

  • Real Power (kW): Also known as Active Power. This is the actual power used to perform work in a circuit.
  • Apparent Power (kVA): The combination of real power and reactive power. It is the product of the root-mean-square (RMS) voltage and current.
  • Reactive Power (kVAR): The power that oscillates between the source and the load without being "consumed." It is caused by inductive (motors, transformers) or capacitive loads.
  • Power Factor: A ratio (0 to 1) representing how effectively the electricity is being used. A PF of 1.0 is ideal (purely resistive load).

Practical Example

Suppose you have an industrial motor running on a 480V three-phase supply. The measured line current is 50 Amps, and the motor has a power factor of 0.85.

  1. Apparent Power = 1.732 × 480 × 50 = 41,568 VA (or 41.57 kVA).
  2. Real Power = 41,568 × 0.85 = 35,332.8 Watts (or 35.33 kW).
  3. Reactive Power = √(41.57² – 35.33²) = 21.89 kVAR.
function calculateThreePhasePower() { var v = parseFloat(document.getElementById("voltage").value); var i = parseFloat(document.getElementById("current").value); var pf = parseFloat(document.getElementById("powerFactor").value); if (isNaN(v) || isNaN(i) || isNaN(pf) || v <= 0 || i 1 || pf < 0) { alert("Power Factor must be between 0 and 1."); return; } var sqrt3 = Math.sqrt(3); // Apparent Power (S) = sqrt(3) * V * I var s_va = sqrt3 * v * i; var s_kva = s_va / 1000; // Real Power (P) = sqrt(3) * V * I * PF var p_w = s_va * pf; var p_kw = p_w / 1000; // Reactive Power (Q) = sqrt(S^2 – P^2) var q_var = Math.sqrt(Math.pow(s_va, 2) – Math.pow(p_w, 2)); var q_kvar = q_var / 1000; // Update Display document.getElementById("realPower").innerHTML = p_kw.toFixed(2) + " kW"; document.getElementById("apparentPower").innerHTML = s_kva.toFixed(2) + " kVA"; document.getElementById("reactivePower").innerHTML = q_kvar.toFixed(2) + " kVAR"; } // Initial calculation on load window.onload = function() { calculateThreePhasePower(); };

Leave a Comment