aemo_dlf: Distribution Loss Factors (DLF) by connection point

View source: R/loss_factors.R

aemo_dlfR Documentation

Distribution Loss Factors (DLF) by connection point

Description

Returns the Distribution Loss Factor for NEM connection points from the MMSDM LOSSFACTORMODEL table. DLFs measure the average energy loss on the distribution network between a connection point and the transmission network boundary; a DLF of 1.02 means the generator must produce 2% more energy than it delivers to the transmission system.

Usage

aemo_dlf(year = NULL, connection_point_id = NULL)

Arguments

year

Financial year(s) as "YYYY-YY". NULL returns all available years.

connection_point_id

Optional character vector of connection point IDs.

Details

DLFs are published annually by AEMO (NER 3.6.3) and combined with MLFs in settlement to give the total loss factor (TLF = MLF x DLF) used in energy payments.

Value

An aemo_tbl with at minimum financial_year, connectionpointid, and dlf.

Source

AEMO MMSDM archive, LOSSFACTORMODEL table. AEMO Copyright Permissions Notice.

See Also

Other reference: aemo_interconnectors(), aemo_mlf(), aemo_participants(), aemo_price_caps(), aemo_regions(), aemo_settlement(), aemo_snapshot(), aemo_units()

Examples


op <- options(aemo.cache_dir = tempdir())
try({
  dlf <- aemo_dlf(year = "2024-25")
  head(dlf)
})
options(op)


aemo documentation built on April 29, 2026, 1:07 a.m.