DiscreteControlledACBranch

PowerSystems.DiscreteControlledACBranchType
mutable struct DiscreteControlledACBranch <: ACTransmission
    name::String
    available::Bool
    active_power_flow::Float64
    reactive_power_flow::Float64
    arc::Arc
    r::Float64
    x::Float64
    rating::Float64
    discrete_branch_type::DiscreteControlledBranchType
    branch_status::DiscreteControlledBranchStatus
    ext::Dict{String, Any}
    internal::InfrastructureSystemsInternal
end

Used to represent switches and breakers connecting AC Buses

Arguments

  • name::String: Name of the component. Components of the same type (e.g., PowerLoad) must have unique names, but components of different types (e.g., PowerLoad and ACBus) can have the same name
  • available::Bool: Indicator of whether the component is connected and online (true) or disconnected, offline, or down (false). Unavailable components are excluded during simulations
  • active_power_flow::Float64: Initial condition of active power flow on the line (MW)
  • reactive_power_flow::Float64: Initial condition of reactive power flow on the line (MVAR)
  • arc::Arc: An Arc defining this line from a bus to another bus
  • r::Float64: Resistance in pu (SYSTEM_BASE), validation range: (0, 4)
  • x::Float64: Reactance in pu (SYSTEM_BASE), validation range: (0, 4)
  • rating::Float64: Thermal rating (MVA). Flow on the branch must be between -rating and rating. When defining a line before it is attached to a System, rating must be in pu (SYSTEM_BASE) using the base power of the System it will be attached to
  • discrete_branch_type::DiscreteControlledBranchType: (default: DiscreteControlledBranchType.OTHER) Type of discrete control
  • branch_status::DiscreteControlledBranchStatus: (default: DiscreteControlledBranchStatus.CLOSED) Open or Close status
  • ext::Dict{String, Any}: (default: Dict{String, Any}()) An extra dictionary for users to add metadata that are not used in simulation.
  • internal::InfrastructureSystemsInternal: (Do not modify.) PowerSystems.jl internal reference
source