TModelHVDCLine

PowerSystems.TModelHVDCLineType
mutable struct TModelHVDCLine <: DCBranch
    name::String
    available::Bool
    active_power_flow::Float64
    arc::Arc
    r::Float64
    l::Float64
    c::Float64
    active_power_limits_from::MinMax
    active_power_limits_to::MinMax
    services::Vector{Service}
    ext::Dict{String, Any}
    internal::InfrastructureSystemsInternal
end

a HVDC T-Model DC line.

Arguments

  • name::String
  • available::Bool
  • active_power_flow::Float64
  • arc::Arc
  • r::Float64: Series Resistance system per-unit value
  • l::Float64: Series Inductance system per-unit value
  • c::Float64: Shunt capacitance system per-unit value
  • active_power_limits_from::MinMax
  • active_power_limits_to::MinMax
  • services::Vector{Service}: Services that this device contributes to
  • ext::Dict{String, Any}
  • internal::InfrastructureSystemsInternal: power system internal reference, do not modify
source