Determine the appropriate generator size for your needs by inputting your essential appliance loads.
120V
240V
208V
277V
480V
Single Phase
Three Phase
Recommended Generator Size: —
Understanding Generator Sizing for Your Needs
Selecting the right generator is crucial for ensuring you have reliable power when you need it most, whether for backup during outages, powering remote sites, or for events. An undersized generator might struggle to start and run your essential appliances, potentially leading to damage or failure. Conversely, an oversized generator can be inefficient and more costly than necessary.
The Math Behind Generator Sizing
Generator sizing primarily relies on understanding two key power figures:
Running Wattage (Rated Wattage): This is the continuous amount of power a generator can produce. It's the sum of the wattage of all the appliances you plan to run simultaneously.
Peak Wattage (Starting Wattage/Surge Wattage): Many appliances, especially those with motors (like refrigerators, air conditioners, pumps), require a significant surge of power to start up. This surge wattage can be two to three times their running wattage.
The formula used in this calculator aims to provide a safe and reliable recommendation by considering these factors:
Calculate Total Running Wattage: Sum the running wattage of all appliances you intend to operate at the same time.
Calculate Total Peak Wattage: Identify the appliance with the highest starting wattage requirement. Add this highest starting wattage to the total running wattage of all other appliances. (Alternative Method: For simplicity in calculators, we often calculate the total running wattage and add a safety margin for starting needs).
Apply Safety Factor: It's wise to add a safety margin (often 25% or more) to your calculated total wattage. This accounts for potential increases in load, aging of the generator, and ensures it doesn't operate at its absolute limit, which can shorten its lifespan.
However, a more practical approach for a simple calculator is to ensure the generator's running wattage can handle the combined load plus a safety margin, and its peak wattage can handle the highest starting surge plus other running loads. This calculator simplifies by taking your direct inputs for Peak and Running wattage requirements and applying a safety factor to the running wattage for a recommended running capacity, and ensuring the peak is sufficient.
Simplified Calculator Logic: It takes your specified 'Peak Wattage Required' and 'Running Wattage Required', applies the 'Safety Factor' to the Running Wattage to get a 'Recommended Running Wattage', and then ensures the 'Peak Wattage Required' input is also met.
Additional Considerations: Voltage and Phase
Voltage (V): Generators come in various voltage outputs (e.g., 120V, 240V). Your choice depends on the voltage requirements of your appliances. Most household appliances run on 120V, while larger appliances like dryers or central air conditioners might use 240V. A generator capable of 240V can also supply 120V through specific outlets.
Phase: Most homes and small businesses use Single Phase power. Larger industrial facilities often require Three Phase power, which delivers power more smoothly for heavy machinery.
How to Use This Calculator
List Your Essential Appliances: Identify which appliances you absolutely need to run during an outage or at your site.
Find Wattage Ratings: Check the labels on your appliances for their running (rated) and starting (peak/surge) wattage. If only one number is listed, assume it's the running wattage and estimate the starting wattage (often 2-3 times the running wattage for motor-driven appliances).
Sum Running Wattage: Add up the running wattage of all appliances you plan to run simultaneously.
Identify Highest Starting Wattage: Find the single appliance with the highest starting wattage requirement.
Input Values: Enter the total running wattage, the highest single starting wattage, your desired safety factor percentage, and select the appropriate voltage and phase for your needs.
Calculate: Click the button to get a recommended generator size. Remember, it's always better to have a little more capacity than not enough.
Example: Suppose you need to run a refrigerator (running: 800W, starting: 2000W), a sump pump (running: 1200W, starting: 2400W), lights (total running: 200W), and a microwave (running: 1000W). Your total running wattage is 800 + 1200 + 200 + 1000 = 3200W. The highest starting wattage is from the sump pump at 2400W. If you want a 25% safety factor, you'd input 3200W for running, 2400W for peak, and 25% for safety factor.
function calculateGeneratorSize() {
var peakWattageInput = document.getElementById("peakWattage");
var runningWattageInput = document.getElementById("runningWattage");
var safetyFactorInput = document.getElementById("safetyFactor");
var voltageInput = document.getElementById("voltage");
var phaseInput = document.getElementById("phase");
var resultDiv = document.getElementById("result");
var peakWattage = parseFloat(peakWattageInput.value);
var runningWattage = parseFloat(runningWattageInput.value);
var safetyFactor = parseFloat(safetyFactorInput.value);
var voltage = parseFloat(voltageInput.value);
var phase = parseFloat(phaseInput.value);
var recommendedRunningWattage = 0;
var recommendedPeakWattage = 0;
var outputMessage = "";
// Validate inputs
if (isNaN(peakWattage) || isNaN(runningWattage) || isNaN(safetyFactor)) {
outputMessage = "Please enter valid numbers for wattage and safety factor.";
resultDiv.innerHTML = "Recommended Generator Size: " + outputMessage + "";
resultDiv.style.backgroundColor = "#dc3545"; // Red for error
return;
}
if (safetyFactor < 0) {
outputMessage = "Safety factor cannot be negative.";
resultDiv.innerHTML = "Recommended Generator Size: " + outputMessage + "";
resultDiv.style.backgroundColor = "#dc3545"; // Red for error
return;
}
// Calculate recommended running wattage with safety factor
recommendedRunningWattage = runningWattage * (1 + safetyFactor / 100);
// Ensure peak wattage requirement is also met by the generator's peak capacity
// For simplicity in this calculator, we ensure the generator's peak capacity
// is at least the highest *input* peak wattage, plus the calculated running wattage
// to account for simultaneous loads.
recommendedPeakWattage = Math.max(peakWattage, recommendedRunningWattage + (peakWattage – runningWattage));
// A common approach is to ensure the generator's peak rating is at least
// the highest starting surge plus the sum of other running loads.
// Or, more simply, that the generator's peak rating is at least the input peak wattage.
// We'll make sure the generator's peak is at least the input peak wattage requirement.
// If running wattage is significantly higher than peak (unlikely but possible with inputs),
// we still ensure the calculated running capacity is met.
var finalRecommendedPeak = Math.max(peakWattage, recommendedRunningWattage);
// For a more robust calculation, one might want to consider the highest single starting surge
// and add the sum of *other* running loads to it.
// Since we are given Peak and Running as requirements, we will ensure both are met with a buffer.
// Let's refine: Ensure generator's running capacity meets the *buffered* running load,
// and the generator's peak capacity meets the *required* peak load.
// Often, generators are rated by their continuous (running) output and their surge (peak) output.
// We want a generator where:
// Generator Running Wattage >= calculated Recommended Running Wattage
// Generator Peak Wattage >= input Peak Wattage Required
var generatorRunningCapacityNeeded = runningWattage * (1 + safetyFactor / 100);
var generatorPeakCapacityNeeded = peakWattage; // The highest single surge event
// For practical recommendations, we often look for a generator that can meet both.
// The recommended size should be at least the higher of the two calculated needs.
// A generator that can output X running watts and Y peak watts.
// We'll recommend a generator size based on the higher calculated need, ensuring it covers both.
var finalRecommendedSize = Math.max(generatorRunningCapacityNeeded, generatorPeakCapacityNeeded);
// Often, generators have a specific peak rating. We'll ensure our recommendation
// implies a generator that can meet the peak requirement.
// A generator might list 5000 peak / 4000 running.
// Let's provide a single number for simplicity, representing the required continuous output.
// We will ensure this number respects the peak load requirement.
var finalGeneratorRecommendation = Math.max(runningWattage * (1 + safetyFactor / 100), peakWattage);
outputMessage = "" + finalGeneratorRecommendation.toFixed(0) + " Running Watts / " + Math.max(peakWattage, finalGeneratorRecommendation).toFixed(0) + " Peak Watts";
resultDiv.innerHTML = "Recommended Generator Size: " + outputMessage;
resultDiv.style.backgroundColor = "#28a745"; // Green for success
}