Skip to content

AER Regulatory

The Australian Energy Regulator (AER) regulates DNSPs under a building block revenue regulation model. Every five years, the AER conducts a regulatory determination that sets the maximum revenue a DNSP can earn. Between determinations, the DNSP must comply with extensive annual reporting requirements via Regulatory Information Notices (RINs).

The AER’s building block model sets the allowed revenue as the sum of:

Allowed_Revenue = WACC × RAB + Depreciation + Opex_Allowance + Incentive_Adjustments + Tax

Where:

  • WACC: Weighted Average Cost of Capital (set by AER, ~5–7%)
  • RAB: Regulatory Asset Base (see RAB Roll-Forward)
  • Depreciation: straight-line depreciation of regulatory assets
  • Opex Allowance: approved operating expenditure
  • Incentive Adjustments: STPIS, EBSS, CESS (see below)
  • Tax: regulated return on tax asset base

Current determination periods:

DNSPRegulatory PeriodRevenue Determination Date
Ausgrid2024–2029June 2023
Endeavour Energy2024–2029June 2023
Essential Energy2024–2029June 2023
Energex2025–2030June 2024
Ergon Energy2025–2030June 2024
AusNet2026–2031In progress
SA Power Networks2025–2030June 2024

The Energy Copilot platform tracks the current determination period for each DNSP and highlights when the next reset submission is due.

The AER issues RINs to collect information needed for economic regulation. There are two main categories:

Filed annually for each financial year, covering:

  • Actual expenditure (capex and opex)
  • Revenue and tariff data
  • Asset information
  • Customer and service data
  • Regulatory compliance attestations

Filed as part of the regulatory reset process (every 5 years), covering:

  • Revenue proposal documentation
  • Asset management plans
  • Demand forecasts
  • Expenditure justification

AER Regulatory Dashboard (/dnsp/aer-regulatory)

Section titled “AER Regulatory Dashboard (/dnsp/aer-regulatory)”
  • Current determination period status for each DNSP
  • RIN filing calendar with due dates and completion status
  • Revenue comparison: actual vs allowance by building block
  • RAB movements: additions, disposals, depreciation
  • WACC tracker: current AER-set WACC vs market benchmarks
-- Revenue allowance vs actual by year
SELECT
financial_year,
dnsp_name,
revenue_allowance_aud,
actual_revenue_aud,
revenue_variance_aud,
variance_pct,
over_under_recovery
FROM energy_copilot.gold.dnsp_revenue_tracking
WHERE financial_year >= YEAR(CURRENT_DATE()) - 3
ORDER BY financial_year DESC, dnsp_name;

The AER’s incentive schemes adjust DNSP revenue based on performance:

SchemeAcronymMeasuresDirection
Service Target Performance IncentiveSTPISSAIDI, SAIFI, MAIFIBetter = earn more
Efficiency Benefit Sharing SchemeEBSSOpex efficiency vs allowanceSave more = earn more
Capital Expenditure Sharing SchemeCESSCapex underspend vs allowanceUnderspend = earn more
Terminal window
# Current regulatory period details
GET /api/dnsp/regulatory/period?dnsp=ausgrid
# Revenue allowance vs actual
GET /api/dnsp/regulatory/revenue?dnsp=energex&years=3
# RIN filing calendar
GET /api/dnsp/regulatory/rin-calendar?dnsp=essential_energy
# Determination timeline
GET /api/dnsp/regulatory/determination-timeline?dnsp=ausnet