FACTSControlDevice

PowerSystems.FACTSControlDeviceType
mutable struct FACTSControlDevice <: StaticInjection
    name::String
    available::Bool
    bus::ACBus
    control_mode::Union{Nothing, FACTSOperationModes}
    voltage_setpoint::Float64
    max_shunt_current::Float64
    max_reactive_power::Float64
    shunt_control_type::FACTSShuntControlType
    regulated_bus_number::Int
    reactive_power_required::Float64
    services::Vector{Service}
    dynamic_injector::Union{Nothing, DynamicInjection}
    ext::Dict{String, Any}
    internal::InfrastructureSystemsInternal
end

Facts control devices.

Most often used in AC power flow studies as a control of voltage and, active and reactive power.

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
  • bus::ACBus: The sending-end ACBus
  • control_mode::Union{Nothing, FACTSOperationModes}: Control mode. Used to describe the behavior of the control device. See FACTSOperationModes.
  • voltage_setpoint::Float64: (default: 1.0) Voltage setpoint at the sending end bus, it has to be a PV bus, in p.u. (SYSTEM_BASE).
  • max_shunt_current::Float64: (default: 9999.0) Maximum shunt current at unity voltage (PSS/E SHMX), MVA; the STATCOM current limit and SVC susceptance base.
  • max_reactive_power::Float64: (default: 9999.0) Independent maximum reactive power ceiling (MVA); the device reactive limit is min(the current/susceptance law on maxshuntcurrent, this value). Non-binding at the 9999.0 default.
  • shunt_control_type::FACTSShuntControlType: (default: FACTSShuntControlType.STATCOM) Device class selecting the reactive-limit law (SVC vs STATCOM)
  • regulated_bus_number::Int: (default: 0) Bus whose voltage this device regulates; 0 ⇒ local (sending) bus (PSS/E FCREG)
  • reactive_power_required::Float64: (default: 0.0) Solver-populated: delivered reactive power after solve (output; not parsed from input)
  • services::Vector{Service}: (default: Device[]) Services that this device contributes to
  • dynamic_injector::Union{Nothing, DynamicInjection}: (default: nothing) Corresponding dynamic injection model for FACTS control device
  • 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