Skip to content

Benchmarking

The AER uses benchmarking analysis as part of its regulatory determinations to assess whether a DNSP’s proposed expenditure is efficient. Benchmarking compares a DNSP’s performance and costs against a peer group to identify efficiency opportunities and set expenditure allowances.

Energy Copilot implements the AER’s published benchmarking methodology, providing DNSPs with self-assessment capability between regulatory resets.

The AER uses two main approaches:

Compares output efficiency across DNSPs:

PFP_index = Σ (Output_quantity × Output_weight) / Σ (Input_cost × Input_weight)

Higher PFP = more output per unit of input = more efficient.

Estimates a statistical cost frontier across the DNSP peer group, accounting for differences in network characteristics (customer density, network length, peak demand):

ln(Cost_i) = α + β₁·ln(Output_i) + β₂·X_i + ε_i
Efficiency_score = exp(-ε_i) // 0-1, 1 = on the frontier

Where X_i includes cost drivers like geographic terrain, climate, urban density.

The primary peer group used in Energy Copilot benchmarking:

DNSPStateNetwork Length (km)CustomersPeak Demand (MW)
AusgridNSW51,0001.7M5,200
Endeavour EnergyNSW48,0001.0M2,800
Essential EnergyNSW187,000870,0001,800
EnergexQLD52,0001.4M4,100
Ergon EnergyQLD155,000730,0001,500
AusNet ServicesVIC97,000720,0002,100
SA Power NetworksSA89,000870,0001,900

Operating expenditure benchmarked on three normalisation bases:

MetricDefinitionAER Weight
$/customerOpex / Total customers40%
$/km networkOpex / Circuit km30%
$/MWh deliveredOpex / Total energy delivered30%
  • Peer group scatter chart: each DNSP plotted on 2D (e.g., network density vs $/km)
  • Percentile ranking for the selected DNSP
  • Trend: how has the DNSP’s relative efficiency position changed over 5 years?

Capex Benchmark (/dnsp/benchmarking/capex)

Section titled “Capex Benchmark (/dnsp/benchmarking/capex)”

Capital expenditure benchmarked by:

  • Replacement capex ($/km replaced)
  • Augmentation capex ($/MVA added)
  • IT and communications capex ($/customer)
  • Total capex ($/customer, $/km)

Contextualised by network age profile: older networks require more replacement capex.

Efficiency Frontier (/dnsp/benchmarking/frontier)

Section titled “Efficiency Frontier (/dnsp/benchmarking/frontier)”

Econometric frontier analysis:

  • Stochastic Frontier Analysis (SFA) model fit to peer group
  • Efficiency scores: how close each DNSP is to the cost frontier
  • Confidence intervals around efficiency estimates
  • Interpretation: “AER may apply a step change efficiency improvement if score falls below X”

The most commercially important use of benchmarking is preparing for regulatory reset submissions. Energy Copilot provides:

Terminal window
POST /api/dnsp/benchmarking/self-assessment
{
"dnsp": "ausgrid",
"reset_year": 2029,
"years_of_historical_data": 5
}
# Returns:
# - Current efficiency scores by methodology
# - Areas of relative strength/weakness vs peer group
# - Narrative text for AER submission (AI-generated)
# - Sensitivity: range of efficiency adjustments AER might apply

Assess whether a proposed expenditure level is likely to be accepted by the AER:

  • Is proposed opex within the range of peer group efficient costs?
  • Are there specific cost drivers that explain above-average costs?
  • What is the risk of an AER-imposed efficiency adjustment?
Terminal window
# Opex benchmark comparison
GET /api/dnsp/benchmarking/opex?dnsp=ausgrid&year=2024
# Capex benchmark
GET /api/dnsp/benchmarking/capex?dnsp=ergon&year=2024
# Efficiency frontier scores
GET /api/dnsp/benchmarking/frontier?dnsp=sa_power_networks&years=5
# Peer group comparison (all metrics)
GET /api/dnsp/benchmarking/peer-comparison?year=2024
# Self-assessment report
POST /api/dnsp/benchmarking/self-assessment
{
"dnsp": "essential_energy",
"reset_year": 2030
}