GenericArcImpedance

PowerSystems.GenericArcImpedanceType
mutable struct GenericArcImpedance <: ACTransmission
    name::String
    available::Bool
    active_power_flow::Float64
    reactive_power_flow::Float64
    max_flow::Float64
    arc::Arc
    r::Float64
    x::Float64
    ext::Dict{String, Any}
    internal::InfrastructureSystemsInternal
end

A virtual impedance between two buses that does not correspond to a physical component. This can be used to model the effects of network reductions (e.g. Ward reduction).

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)
  • max_flow::Float64: Maximum allowable flow on the generic impedance. When defining a GenericArcImpedance before it is attached to a System, max_flow must be in pu (SYSTEM_BASE) using the base power of the System it will be attached to
  • arc::Arc: An Arc defining this line from a bus to another bus
  • r::Float64: Resistance in pu (SYSTEM_BASE)
  • x::Float64: Reactance in pu (SYSTEM_BASE)
  • 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