outages_fallbacks: Get Fall-Back Procedures. (IFs IN 7.2, mFRR 3.11, aFRR 3.10)

View source: R/en_outages.R

outages_fallbacksR Documentation

Get Fall-Back Procedures. (IFs IN 7.2, mFRR 3.11, aFRR 3.10)

Description

It publishes of application of fall back procedures by participants in European platforms as a result of disconnection of DSO from the European platform, unavailability of European platform itself (planned or unplanned outage) or the situation where the algorithm used on the platform fails or does not find solution.

Usage

outages_fallbacks(
  eic = NULL,
  period_start = lubridate::ymd(Sys.Date() - lubridate::days(x = 7L), tz = "CET"),
  period_end = lubridate::ymd(Sys.Date(), tz = "CET"),
  process_type = "A63",
  event_nature = "A53",
  tidy_output = TRUE,
  security_token = Sys.getenv("ENTSOE_PAT")
)

Arguments

eic

Energy Identification Code of the bidding zone/ control area

period_start

the starting date of the in-scope period in POSIXct or YYYY-MM-DD HH:MM:SS format

period_end

the ending date of the outage in-scope period in POSIXct or YYYY-MM-DD HH:MM:SS format

process_type

"A47" = mFRR "A51" = aFRR "A63" = imbalance netting defaults to "A63"

event_nature

"C47" = Disconnection, "A53" = Planned maintenance, "A54": Unplanned outage, "A83" = Auction cancellation (used in case no solution found or algorithm failure); Defaults to "A53".

tidy_output

Defaults to TRUE. flatten nested tables

security_token

Security token for ENTSO-E transparency platform

Examples

#'
df <- entsoeapi::outages_fallbacks(
  eic          = "10YBE----------2",
  period_start = lubridate::ymd(x = "2023-01-01", tz = "CET"),
  period_end   = lubridate::ymd(x = "2024-01-01", tz = "CET"),
  process_type = "A51",
  event_nature = "C47")

str(df)


krose/entsoeapi documentation built on Jan. 13, 2025, 9:01 p.m.