TransmissionInterface

PowerSystems.TransmissionInterfaceType
mutable struct TransmissionInterface <: Service
    name::String
    available::Bool
    active_power_flow_limits::MinMax
    violation_penalty::Float64
    direction_mapping::Dict{String, Int}
    time_series_container::InfrastructureSystems.TimeSeriesContainer
    internal::InfrastructureSystemsInternal
end

A collection of branches that make up an interface or corridor for the transfer of power.

Arguments

  • name::String
  • available::Bool
  • active_power_flow_limits::MinMax
  • violation_penalty::Float64: Penalty for violating the flow limits in the interface
  • direction_mapping::Dict{String, Int}: Map to set of multiplier to the flow in the line for cases when the line has a reverse direction with respect to the interface
  • time_series_container::InfrastructureSystems.TimeSeriesContainer: internal time_series storage
  • internal::InfrastructureSystemsInternal: power system internal reference, do not modify
source