TwoTerminalHVDCLine

PowerSystems.TwoTerminalHVDCLineType
mutable struct TwoTerminalHVDCLine <: ACBranch
    name::String
    available::Bool
    active_power_flow::Float64
    arc::Arc
    active_power_limits_from::MinMax
    active_power_limits_to::MinMax
    reactive_power_limits_from::MinMax
    reactive_power_limits_to::MinMax
    loss::NamedTuple{(:l0, :l1), Tuple{Float64, Float64}}
    services::Vector{Service}
    ext::Dict{String, Any}
    time_series_container::InfrastructureSystems.TimeSeriesContainer
    internal::InfrastructureSystemsInternal
end

a High voltage DC line.

Arguments

  • name::String
  • available::Bool
  • active_power_flow::Float64
  • arc::Arc
  • active_power_limits_from::MinMax
  • active_power_limits_to::MinMax
  • reactive_power_limits_from::MinMax
  • reactive_power_limits_to::MinMax
  • loss::NamedTuple{(:l0, :l1), Tuple{Float64, Float64}}
  • services::Vector{Service}: Services that this device contributes to
  • ext::Dict{String, Any}
  • time_series_container::InfrastructureSystems.TimeSeriesContainer: internal time_series storage
  • internal::InfrastructureSystemsInternal: power system internal reference, do not modify
source