How to Calculate Demand Rate

.demand-calc-container { padding: 25px; background-color: #f9f9f9; border: 1px solid #ddd; border-radius: 10px; max-width: 650px; margin: 20px auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #333; } .demand-calc-container h2 { margin-top: 0; color: #2c3e50; text-align: center; } .demand-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 20px; } .demand-input-group { display: flex; flex-direction: column; } .demand-input-group label { font-weight: 600; font-size: 14px; margin-bottom: 5px; } .demand-input-group input { padding: 10px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px; } .demand-calc-btn { width: 100%; padding: 15px; background-color: #27ae60; color: white; border: none; border-radius: 5px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .demand-calc-btn:hover { background-color: #219150; } .demand-results { margin-top: 25px; padding: 15px; background-color: #fff; border: 2px solid #27ae60; border-radius: 5px; } .demand-results h3 { margin-top: 0; font-size: 18px; color: #27ae60; border-bottom: 1px solid #eee; padding-bottom: 10px; } .demand-result-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f1f1f1; } .demand-result-item span:last-child { font-weight: bold; color: #2c3e50; } .demand-article { margin-top: 40px; line-height: 1.6; } .demand-article h2, .demand-article h3 { color: #2c3e50; } .demand-article table { width: 100%; border-collapse: collapse; margin: 20px 0; } .demand-article th, .demand-article td { border: 1px solid #ddd; padding: 12px; text-align: left; } .demand-article th { background-color: #f4f4f4; }

Electric Demand Rate Calculator

Calculation Results

Average Demand: 0 kW
Load Factor: 0%
Monthly Demand Charge: $0.00
Estimated Energy Cost Share: Calculated via Peak

Understanding How to Calculate Demand Rate

In the world of commercial and industrial electricity billing, "Demand Rate" is one of the most critical components of your utility bill. Unlike residential bills that primarily focus on total energy consumption (kWh), industrial bills include a "Demand Charge" based on the maximum amount of power you require at any single point in time.

What is Demand Rate?

The Demand Rate is the price your utility company charges per kilowatt (kW) of peak power used during a billing cycle. While Energy is the total volume of electricity used over time, Demand represents the speed at which you use it. Think of it like a car: Energy (kWh) is the distance traveled, while Demand (kW) is the maximum speed reached during the trip.

The Demand Rate Formula

To calculate various aspects of demand, we use three primary formulas:

  1. Average Demand (kW): Total Energy (kWh) / Total Hours in Period (h)
  2. Load Factor (%): (Average Demand / Peak Demand) x 100
  3. Demand Charge ($): Peak Demand (kW) x Rate per kW ($/kW)

Step-by-Step Example

Suppose a small manufacturing facility consumes 10,000 kWh in a 30-day month (720 hours). During that month, their highest recorded 15-minute power spike was 40 kW. The utility charges a demand rate of $15.00 per kW.

  • Average Demand: 10,000 kWh / 720 hours = 13.89 kW
  • Demand Charge: 40 kW x $15.00 = $600.00
  • Load Factor: (13.89 / 40) x 100 = 34.7%

Why Demand Rates Matter

Metric Importance
Peak Demand (kW) Determines the infrastructure the utility must maintain for your site.
Load Factor A higher percentage indicates more efficient, steady energy usage.
Demand Charge Can often account for 30% to 70% of a total commercial electric bill.

Tips to Lower Your Demand Rate Charges

To reduce your bill, you must "level out" your consumption. This is known as peak shaving. You can achieve this by:

  • Staggering Equipment Starts: Avoid turning on all large motors or HVAC units at the same time.
  • Battery Storage: Use stored energy during peak periods to lower the pull from the grid.
  • Operational Scheduling: Move high-energy processes to off-peak hours when the peak demand calculation might be lower or ignored.
function calculateDemand() { var totalKwh = parseFloat(document.getElementById("totalKwh").value); var timePeriod = parseFloat(document.getElementById("timePeriod").value); var peakKw = parseFloat(document.getElementById("peakKw").value); var ratePerKw = parseFloat(document.getElementById("ratePerKw").value); // Validate inputs if (isNaN(totalKwh) || isNaN(timePeriod) || timePeriod 0) { loadFactor = (avgDemand / peakKw) * 100; } var demandCharge = 0; if (!isNaN(peakKw) && !isNaN(ratePerKw)) { demandCharge = peakKw * ratePerKw; } // Display Results document.getElementById("resAvgDemand").innerText = avgDemand.toFixed(2) + " kW"; if (!isNaN(peakKw) && peakKw > 0) { document.getElementById("resLoadFactor").innerText = loadFactor.toFixed(1) + "%"; } else { document.getElementById("resLoadFactor").innerText = "Peak required"; } if (!isNaN(demandCharge) && demandCharge > 0) { document.getElementById("resDemandCharge").innerText = "$" + demandCharge.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); } else { document.getElementById("resDemandCharge").innerText = "Rate required"; } document.getElementById("resEnergyShare").innerText = "Peak: " + (peakKw ? peakKw.toFixed(2) : "0") + " kW vs Avg: " + avgDemand.toFixed(2) + " kW"; document.getElementById("demandResultSection").style.display = "block"; }

Leave a Comment