Skip to content

Savings Finder

The Savings Finder compares your current utility rate against every available alternative tariff to surface savings opportunities. It works at both the per-property and portfolio-wide level.


How It Works

flowchart TD A["Property's Current Tariff\n+ Historical Usage Data"] --> B["Savings Engine"] C["All Available Tariffs\nfor this Utility"] --> B B --> D["Estimate Annual Cost\nunder Each Tariff"] D --> E["Rank by Savings\nand Feasibility"] E --> F["Top Recommendations\nwith $ Savings"]

The savings engine follows this process:

  1. Gather usage profile -- Collects monthly kWh consumption, peak demand (kW), and time-of-use patterns from the property's bill history.
  2. Identify available tariffs -- Looks up all tariffs offered by the property's serving utility that match the customer class (commercial, industrial, etc.).
  3. Simulate annual cost -- For each candidate tariff, calculates the estimated annual cost by applying the tariff's rate structure to the property's actual usage profile.
  4. Rank and recommend -- Sorts candidates by potential savings and flags any eligibility restrictions (minimum demand, voltage requirements, etc.).

Data Requirements

For accurate savings analysis, MeterBase needs at least 3 months of bill history. With 12 months of data, the analysis accounts for seasonal variation and produces the most reliable estimates.


Per-Property Analysis

Running an Analysis

  1. Navigate to a property's detail page
  2. Click Savings tab
  3. Click Run Analysis (or results appear automatically if bill data exists)
  4. Review the ranked list of alternative tariffs
curl -X POST https://api.meterbase.io/api/savings/analyze \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"property_id": 1}'

Understanding Results

Each recommendation includes:

Field Description
Tariff name Rate schedule identifier (e.g., TOU-GS-2-D)
Utility Utility company offering the tariff
Estimated annual cost What you would pay under this tariff based on your usage
Annual savings Dollar savings vs. your current tariff
Savings percent Percentage reduction
Confidence High, Medium, or Low based on data quality
Eligibility notes Any requirements or restrictions for this tariff
Key differences What makes this tariff cheaper (e.g., lower demand charges, better off-peak rates)

Example output:

{
  "current_tariff": "TOU-GS-2-B",
  "current_annual_cost": 57930.00,
  "data_months": 12,
  "confidence": "high",
  "recommendations": [
    {
      "tariff_name": "TOU-GS-2-D",
      "estimated_annual_cost": 52140.00,
      "annual_savings": 5790.00,
      "savings_percent": 10.0,
      "confidence": "high",
      "eligibility": "Demand must be under 200 kW. Your peak demand: 67 kW.",
      "key_differences": "Lower summer demand charges ($11.50 vs $15.00/kW)"
    }
  ]
}

Portfolio-Wide Analysis

Run savings analysis across every property in a portfolio in a single call:

  1. Navigate to the portfolio page
  2. Click Portfolio Savings Analysis
  3. MeterBase analyzes all properties in the portfolio
  4. Results are shown as a ranked table sorted by highest dollar savings
curl -X POST https://api.meterbase.io/api/savings/portfolio-analyze \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"portfolio_id": 1}'

Portfolio analysis returns:

  • Total portfolio savings potential -- Sum of savings across all properties
  • Per-property breakdown -- Best recommendation for each property
  • Properties with no savings -- Properties already on the optimal tariff
  • Properties with insufficient data -- Properties that need more bill history

Prioritize by Impact

Sort the portfolio results by dollar savings to identify which properties to focus on first. A $5,000/year savings at one property is worth more effort than $200/year across ten properties.


Savings Opportunity Details

Click into any recommendation to see the full comparison:

Side-by-Side Rate Comparison

Component Current (TOU-GS-2-B) Recommended (TOU-GS-2-D)
Summer On-Peak Energy $0.12/kWh $0.11/kWh
Summer Off-Peak Energy $0.08/kWh $0.08/kWh
Winter Energy $0.09/kWh $0.085/kWh
Demand Charge (Summer) $15.00/kW $11.50/kW
Demand Charge (Winter) $10.00/kW $9.00/kW
Customer Charge $300/mo $350/mo

Monthly Cost Projection

A chart showing estimated monthly cost under both the current and recommended tariff, using your actual usage profile.

Payback and ROI

For tariffs that require equipment changes (e.g., time-of-use rates that benefit from load shifting), MeterBase estimates:

  • Upfront cost (if applicable)
  • Monthly savings
  • Payback period
  • 3-year and 5-year ROI

Taking Action on Recommendations

Once you identify a savings opportunity:

  1. Verify eligibility -- Review the eligibility notes. Some tariffs have demand minimums, voltage requirements, or application deadlines.
  2. Contact your utility -- Most rate changes require a formal request to the utility. MeterBase provides the tariff name and utility contact information.
  3. Update MeterBase -- After the rate change takes effect, update the property's current tariff in MeterBase so future analyses reflect the new rate.
  4. Track actual savings -- Compare subsequent bills against the baseline to measure actual savings achieved.

Rate Change Timing

Utilities typically process rate change requests within 1-2 billing cycles. Some utilities restrict how often you can change rates (e.g., once per 12 months). Check with your utility for specific policies.


Re-Running Analysis

Savings analysis should be re-run when:

  • New bill data is uploaded (particularly if it changes the usage profile)
  • Utility tariff rates are updated (MeterBase refreshes tariff data periodically)
  • The property's current tariff changes
  • Significant operational changes occur (e.g., adding EV chargers, solar panels)

MeterBase automatically flags properties where the analysis may be stale (older than 90 days or based on outdated tariff data).