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
    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: Sending end bus number
  • control_mode::Union{Nothing, FACTSOperationModes}: Control mode. Used to describe the behavior of the control device. Options are listed here.
  • voltage_setpoint::Float64: Voltage setpoint at the sending end bus, it has to be a PV bus, in p.u. (SYSTEM_BASE).
  • max_shunt_current::Float64: Maximum shunt current at the sending end bus; entered in MVA at unity voltage.
  • reactive_power_required::Float64: Total MVAr required to hold voltage at sending bus, in %.
  • 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