| aemo_mlf | R Documentation |
Returns the Marginal Loss Factor applicable to each DUID for the requested financial year(s). MLFs measure the incremental network loss at a connection point relative to the Regional Reference Node (RRN); a DUID with MLF = 0.97 receives 97% of the regional RRP per MWh generated.
aemo_mlf(year = NULL, duid = NULL)
year |
Financial year(s) as |
duid |
Optional character vector of DUIDs to filter on.
|
MLFs are published annually by AEMO under NER 3.6.2 and are
used in settlement calculations and in PPA revenue
reconstruction. The function first attempts to download the
TRANSMISSIONLOSSFACTOR table from the most recent MMSDM monthly
archive; if that fails it returns a bundled static table
covering FY 2020-21 to FY 2025-26 for ~20 well-known DUIDs.
An aemo_tbl with columns financial_year, duid,
connectionpointid, regionid, mlf. From a live MMSDM
download additional columns (participantid,
lastchanged) may also be present.
AEMO MMSDM archive, TRANSMISSIONLOSSFACTOR table. AEMO Copyright Permissions Notice.
aemo_units() for the DUID registry,
aemo_price() for regional RRPs.
Other reference:
aemo_dlf(),
aemo_interconnectors(),
aemo_participants(),
aemo_price_caps(),
aemo_regions(),
aemo_settlement(),
aemo_snapshot(),
aemo_units()
op <- options(aemo.cache_dir = tempdir())
try({
mlf <- aemo_mlf(year = "2024-25")
head(mlf)
})
options(op)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.