Switchgear VA to Amps Calculator | Power Distribution tailwind.config = { theme: { extend: { colors: { primary: '#0F4C81', secondary: '#26A69A', accent: '#FF9800', neutral: '#F5F7FA', dark: '#1A202C', danger: '#E53E3E', warning: '#ED8936', success: '#38A169', }, fontFamily: { inter: ['Inter', 'system-ui', 'sans-serif'], }, boxShadow: { 'card': '0 10px 30px -5px rgba(15, 76, 129, 0.1)', 'hover': '0 20px 40px -5px rgba(15, 76, 129, 0.15)', } }, } } @layer utilities { .content-auto { content-visibility: auto; } .input-focus { @apply focus:border-primary focus:ring-2 focus:ring-primary/20 focus:outline-none; } .card-hover { @apply hover:shadow-hover hover:-translate-y-1 transition-all duration-300; } .formula-highlight { @apply bg-primary/10 text-primary font-medium px-2 py-1 rounded; } .unit-selector { @apply appearance-none bg-white border border-gray-300 rounded-lg py-3 pl-3 pr-8 focus:outline-none focus:ring-2 focus:ring-primary/20 focus:border-primary cursor-pointer; } } /* Base Animations */ @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } .animate-fade-in { animation: fadeIn 0.5s ease-out forwards; } /* Smooth Scrolling */ html { scroll-behavior: smooth; } /* Remove Number Input Arrows */ input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; } input[type="number"] { -moz-appearance: textfield; } /* Current Calculation Visualization */ .current-visualization { position: relative; width: 240px; height: 200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; } .current-diagram { width: 100%; height: 100%; } .diagram-label { position: absolute; text-align: center; font-size: 12px; }

Switchgear VA to Amps Calculator

Convert apparent power (VA/kVA) to electrical current (amps) for switchgear selection and power distribution systems. Supports both single-phase and three-phase configurations with common voltage presets for industrial applications.

Current Calculation Visualization

VA V = ? Amps

System Configuration

Calculation Formula

I = S / (√3 × V)

Three-Phase Current

I = Current (A), S = Apparent Power (VA), V = Voltage (V)

Enter Switchgear Parameters

VA kVA

Typical switchgear ratings: 10kVA - 5000kVA

V

Switchgear Current Rating Guidelines

Current Calculation Formulas

Single-Phase Current (A)

I = S / V

Where: I = Current (A), S = Apparent Power (VA), V = Voltage (V)

Three-Phase Current (A)

I = S / (√3 × V)

Where: I = Current (A), S = Apparent Power (VA), V = Line Voltage (V)

Recommended Rating (A)

Irated = I × 1.25

125% safety margin for continuous operation

Switchgear Selection Criteria

Continuous Current Rating

Select switchgear with continuous current rating ≥ 125% of calculated full-load current

Standard Current Ratings

Common ratings: 100A, 150A, 200A, 400A, 600A, 800A, 1200A, 1600A, 2000A

Voltage Considerations

Switchgear voltage rating must exceed system voltage by at least 10% for safety

Short Circuit Rating

Ensure equipment can withstand available short circuit current at the installation point

Industry Standards

Frequently Asked Questions

// FAQ Toggle Functionality const faqToggles = document.querySelectorAll('.faq-toggle'); faqToggles.forEach(toggle => { toggle.addEventListener('click', () => { const content = toggle.nextElementSibling; const icon = toggle.querySelector('i'); // Toggle current FAQ item content.classList.toggle('hidden'); icon.classList.toggle('rotate-45'); // Close other FAQ items faqToggles.forEach(otherToggle => { if (otherToggle !== toggle) { const otherContent = otherToggle.nextElementSibling; const otherIcon = otherToggle.querySelector('i'); otherContent.classList.add('hidden'); otherIcon.classList.remove('rotate-45'); } }); }); }); // VA to Amps Calculation Functionality const vaToAmpsForm = document.getElementById('va-to-amps-form'); const apparentPowerInput = document.getElementById('apparent-power'); const powerUnitSelect = document.getElementById('power-unit'); const voltageInput = document.getElementById('voltage'); const systemTypeRadios = document.querySelectorAll('input[name="system-type"]'); const resultContainer = document.getElementById('result-container'); // Get result elements const resultCurrent = document.getElementById('result-current'); const resultPower = document.getElementById('result-power'); const resultVoltage = document.getElementById('result-voltage'); const resultSafeCurrent = document.getElementById('result-safe-current'); const calcSystemType = document.getElementById('calc-system-type'); const calcPower = document.getElementById('calc-power'); const calcVoltage = document.getElementById('calc-voltage'); const usedFormula = document.getElementById('used-formula'); const calcDetails = document.getElementById('calc-details'); const calcSafeDetails = document.getElementById('calc-safe-details'); const standardRating = document.getElementById('standard-rating'); const formulaDisplay = document.getElementById('formula-display'); const systemTypeText = document.getElementById('system-type-text'); // Standard current ratings for reference const standardRatings = [100, 150, 200, 400, 600, 800, 1200, 1600, 2000, 2500, 3000]; // Initial calculation calculateCurrent(); // Voltage preset buttons const voltagePresets = document.querySelectorAll('.voltage-preset'); voltagePresets.forEach(preset => { preset.addEventListener('click', () => { voltageInput.value = preset.dataset.voltage; calculateCurrent(); }); }); // Form submission handling vaToAmpsForm.addEventListener('submit', (e) => { e.preventDefault(); calculateCurrent(); // Smooth scroll to result resultContainer.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }); // Input change handlers [apparentPowerInput, powerUnitSelect, voltageInput].forEach(input => { input.addEventListener('input', calculateCurrent); }); // System type change handler systemTypeRadios.forEach(radio => { radio.addEventListener('change', () => { updateFormulaDisplay(); calculateCurrent(); }); }); // Update formula display based on system type function updateFormulaDisplay() { const systemType = document.querySelector('input[name="system-type"]:checked').value; if (systemType === 'three-phase') { formulaDisplay.innerHTML = `

I = S / (√3 × V)

Three-Phase Current

I = Current (A), S = Apparent Power (VA), V = Voltage (V)

`; systemTypeText.textContent = '3Φ'; usedFormula.textContent = 'I = S / (√3 × V)'; } else { formulaDisplay.innerHTML = `

I = S / V

Single-Phase Current

I = Current (A), S = Apparent Power (VA), V = Voltage (V)

`; systemTypeText.textContent = '1Φ'; usedFormula.textContent = 'I = S / V'; } } // Calculate current from VA/kVA and voltage function calculateCurrent() { // Get input values let apparentPower = parseFloat(apparentPowerInput.value) || 100000; const powerUnit = powerUnitSelect.value; const voltage = parseFloat(voltageInput.value) || 480; const systemType = document.querySelector('input[name="system-type"]:checked').value; // Convert to VA if in kVA if (powerUnit === 'kva') { apparentPower = apparentPower * 1000; } // Validate inputs if (apparentPower <= 0 || voltage rating >= safeCurrent) || standardRatings[standardRatings.length - 1]; // Update result displays resultCurrent.textContent = `${current.toFixed(1)} A`; resultVoltage.textContent = `${voltage} V`; // Format power display if (apparentPower >= 1000) { resultPower.textContent = `${(apparentPower / 1000).toFixed(0)} kVA`; calcPower.textContent = `${apparentPower.toLocaleString()} VA (${(apparentPower / 1000).toFixed(0)} kVA)`; } else { resultPower.textContent = `${apparentPower.toFixed(0)} VA`; calcPower.textContent = `${apparentPower.toLocaleString()} VA`; } // Update safety margin values resultSafeCurrent.textContent = `${safeCurrent.toFixed(0)} A`; calcSafeDetails.textContent = `${current.toFixed(1)} × 1.25 = ${safeCurrent.toFixed(1)} A`; standardRating.textContent = `${standardRatingValue} A (Nearest Standard)`; // Update calculation parameters calcSystemType.textContent = systemType === 'three-phase' ? 'Three-Phase (3Φ)' : 'Single-Phase (1Φ)'; calcVoltage.textContent = `${voltage} V (Line Voltage)`; // Show result container resultContainer.classList.remove('hidden'); // Add animation to results [resultCurrent, resultSafeCurrent].forEach(element => { element.classList.add('scale-110'); setTimeout(() => { element.classList.remove('scale-110'); }, 300); }); } // 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', () => { apparentPowerInput.value = '100000'; powerUnitSelect.value = 'kva'; voltageInput.value = '480'; document.querySelector('input[name="system-type"][value="three-phase"]').checked = true; updateFormulaDisplay(); calculateCurrent(); }); // Add to form if not already present if (!document.querySelector('.clear-button')) { clearButton.classList.add('clear-button'); vaToAmpsForm.appendChild(clearButton); } }; // Initialize clear button addClearButton(); // Initialize formula display updateFormulaDisplay();