Switchgear Power Calculator
Calculate key electrical parameters for switchgear and power distribution systems. Determine apparent power (kVA), real power (kW), reactive power (kVAR), and current (I) for single-phase and three-phase systems.
Power Relationship Visualization
System Configuration
Power Factor Range
Typical operating range: 0.8 - 0.95
Enter System Parameters
Common values: 120, 240, 480, 600, 12470 V
Range: 0.7 (minimum) to 1.0 (unity)
Switchgear Technical Reference
Key Formulas
Apparent Power (kVA)
S = P / cosφ
Where: S = Apparent Power (kVA), P = Real Power (kW), cosφ = Power Factor
Reactive Power (kVAR)
Q = P × tanφ
Where: Q = Reactive Power (kVAR), P = Real Power (kW), tanφ = Tangent of Power Factor Angle
Single-Phase Current (A)
I = S × 1000 / V
Where: I = Current (A), S = Apparent Power (kVA), V = Voltage (V)
Three-Phase Current (A)
I = S × 1000 / (√3 × V)
Where: I = Current (A), S = Apparent Power (kVA), V = Line Voltage (V)
Switchgear Selection Guidelines
Current Rating
Select switchgear with continuous current rating ≥ calculated current (125% safety margin recommended)
Short Circuit Rating
Ensure switchgear can withstand available short circuit current at the installation point
Voltage Rating
Switchgear voltage rating must be ≥ system voltage (consider 110% of nominal voltage)
Power Factor Considerations
Lower power factor increases apparent power and current, requiring larger switchgear
Future Expansion
Allow 20-30% capacity margin for future load growth and system modifications
Industry Standards
- • ANSI/IEEE C37.20 - Low-Voltage Switchgear
- • IEC 62271 - High-Voltage Switchgear and Controlgear
- • NEC (NFPA 70) - National Electrical Code
- • NEMA MG 1 - Motors and Generators
Frequently Asked Questions
Apparent Power: ${P} kW / ${pf.toFixed(2)} = ${S.toFixed(1)} kVA
Reactive Power: ${P} kW × ${tanPhi} = ${Q.toFixed(1)} kVAR
Line Current: ${S.toFixed(1)} × 1000 VA / (${sqrt3} × ${V} V) = ${I.toFixed(1)} A
`; } else { formulaDetails.innerHTML = `Apparent Power: ${P} kW / ${pf.toFixed(2)} = ${S.toFixed(1)} kVA
Reactive Power: ${P} kW × ${tanPhi} = ${Q.toFixed(1)} kVAR
Line Current: ${S.toFixed(1)} × 1000 VA / ${V} V = ${I.toFixed(1)} A
`; } // Update power factor indicator updatePfIndicator(); // Show result container resultContainer.classList.remove('hidden'); // Add animation to results [resultKva, resultKvar, resultCurrent, resultAngle].forEach(element => { element.classList.add('scale-110'); setTimeout(() => { element.classList.remove('scale-110'); }, 300); }); } // Add input event listeners for real-time calculation [voltageInput, powerInput, powerFactorInput].forEach(input => { input.addEventListener('input', calculateSwitchgear); }); // Add system type change listener systemTypeRadios.forEach(radio => { radio.addEventListener('change', calculateSwitchgear); }); // Add clear button functionality const addClearButton = () => { const clearButton = document.createElement('button'); clearButton.type = 'button'; clearButton.className = 'mt-4 w-full py-2 text-sm text-gray-600 hover:text-primary transition-colors border border-gray-300 rounded-lg'; clearButton.innerHTML = ' Reset Values'; clearButton.addEventListener('click', () => { voltageInput.value = '480'; powerInput.value = '100'; powerFactorInput.value = '0.85'; document.querySelector('input[name="system-type"][value="three-phase"]').checked = true; calculateSwitchgear(); }); // Add to form if not already present if (!document.querySelector('.clear-button')) { clearButton.classList.add('clear-button'); switchgearForm.appendChild(clearButton); } }; // Initialize clear button addClearButton();