Santee Cooper Rate Calculator

Santee Cooper Rate Calculator .sc-calc-container { max-width: 800px; margin: 0 auto; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; border: 1px solid #e0e0e0; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); background-color: #ffffff; padding: 30px; } .sc-calc-header { text-align: center; margin-bottom: 30px; background-color: #005f73; color: white; padding: 15px; border-radius: 6px; } .sc-calc-header h2 { margin: 0; font-size: 24px; } .sc-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; } .sc-col { flex: 1; min-width: 250px; } .sc-form-group { margin-bottom: 15px; } .sc-form-group label { display: block; margin-bottom: 5px; font-weight: 600; color: #333; } .sc-form-group input, .sc-form-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; } .sc-form-group .note { font-size: 12px; color: #666; margin-top: 4px; } .sc-btn { width: 100%; padding: 12px; background-color: #0a9396; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .sc-btn:hover { background-color: #005f73; } .sc-results { margin-top: 30px; background-color: #f8f9fa; padding: 20px; border-radius: 6px; border-left: 5px solid #0a9396; display: none; } .sc-result-row { display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #e9ecef; } .sc-result-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .sc-result-label { color: #555; font-weight: 500; } .sc-result-value { font-weight: bold; color: #333; } .sc-total { font-size: 22px; color: #005f73; margin-top: 10px; padding-top: 10px; border-top: 2px solid #ccc; } .sc-content { margin-top: 50px; line-height: 1.6; color: #444; } .sc-content h3 { color: #005f73; border-bottom: 2px solid #eee; padding-bottom: 10px; } .sc-content ul { padding-left: 20px; } .sc-content li { margin-bottom: 8px; }

Santee Cooper Residential Bill Estimator

Non-Summer (Oct – May) Summer (Jun – Sep)
Summer rates are typically higher due to peak demand.
Check your meter or previous bill for usage.
Fixed monthly base fee.
Base cost per kilowatt-hour.
Variable rate based on fuel costs.
Enter local tax rate if applicable.
Base Customer Charge:
Energy Charge Cost:
Fuel Adjustment Cost:
Taxes & Fees:
Total Estimated Bill:
*Estimates only. Actual bill may vary based on specific riders, demand charges, or recent rate adjustments.

Understanding Santee Cooper Rates

Santee Cooper, South Carolina's state-owned electric and water utility, utilizes specific rate structures that determine your monthly electricity bill. Unlike simple flat-rate pricing, your bill is composed of several distinct components that fluctuate based on the season and global fuel markets. This calculator helps residential customers (Rate RG) estimate their monthly costs.

Key Bill Components

  • Customer Charge: This is a fixed monthly fee (often around $19.50 for residential customers) that covers the cost of maintaining the grid, metering, and billing, regardless of how much electricity you use.
  • Energy Charge (kWh): This is the cost for the actual electricity consumed. Santee Cooper utilizes seasonal pricing:
    • Summer (June – September): Rates are generally higher during these months due to the high demand placed on the grid by air conditioning.
    • Non-Summer (October – May): Rates are typically lower during these off-peak months.
  • Fuel Adjustment: This is a variable component that passes through the actual cost of fuel (coal, natural gas) used to generate electricity. This rate can change frequently and is applied per kWh used.
  • Demand Charge: While standard residential users typically pay per kWh, some specific rate plans or commercial accounts include a demand charge based on the highest amount of power (kW) drawn at any single point during the month.

How to Calculate Your Usage

To get the most accurate result from the Santee Cooper Rate Calculator, you need to know your monthly consumption in Kilowatt-hours (kWh). You can find this on your previous monthly statements or by reading your electric meter. An average South Carolina home may use between 800 kWh (mild months) to over 1,500 kWh (hot summer months) depending on the efficiency of the HVAC system and home insulation.

Tips for Lowering Your Bill

Since the Energy Charge and Fuel Adjustment are tied directly to usage, the best way to lower your bill is energy efficiency. Consider upgrading to LED lighting, sealing windows, and setting your thermostat to 78°F in the summer and 68°F in the winter to minimize the high-cost usage tiers.

// Pre-defined approximate rates for demonstration. // Users can edit fields, but these provide realistic defaults. var summerRate = 0.1195; // Approximate Summer Rate var nonSummerRate = 0.0995; // Approximate Non-Summer Rate function updateScRates() { var season = document.getElementById('scSeason').value; var rateInput = document.getElementById('energyRate'); if (season === 'summer') { rateInput.value = summerRate; } else { rateInput.value = nonSummerRate; } // Trigger calculation update if usage is already present var usage = document.getElementById('monthlyUsage').value; if(usage && usage > 0) { calculateSanteeBill(); } } function calculateSanteeBill() { // 1. Get Input Values var usage = parseFloat(document.getElementById('monthlyUsage').value); var baseCharge = parseFloat(document.getElementById('customerCharge').value); var rate = parseFloat(document.getElementById('energyRate').value); var fuelAdj = parseFloat(document.getElementById('fuelAdj').value); var taxPercent = parseFloat(document.getElementById('taxRate').value); // 2. Validation if (isNaN(usage) || usage < 0) { alert("Please enter a valid Usage amount in kWh."); return; } if (isNaN(baseCharge)) baseCharge = 0; if (isNaN(rate)) rate = 0; if (isNaN(fuelAdj)) fuelAdj = 0; if (isNaN(taxPercent)) taxPercent = 0; // 3. Perform Calculations var energyCost = usage * rate; var fuelCost = usage * fuelAdj; var subTotal = baseCharge + energyCost + fuelCost; var taxAmount = subTotal * (taxPercent / 100); var totalBill = subTotal + taxAmount; // 4. Update UI document.getElementById('resBase').innerText = "$" + baseCharge.toFixed(2); document.getElementById('resEnergy').innerText = "$" + energyCost.toFixed(2); document.getElementById('resFuel').innerText = "$" + fuelCost.toFixed(2); document.getElementById('resTax').innerText = "$" + taxAmount.toFixed(2); document.getElementById('resTotal').innerText = "$" + totalBill.toFixed(2); // Show results container document.getElementById('scResults').style.display = "block"; }

Leave a Comment