SynchronousCondenser
PowerSystems.SynchronousCondenser
— Typemutable struct SynchronousCondenser <: StaticInjection
name::String
available::Bool
bus::ACBus
reactive_power::Float64
rating::Float64
reactive_power_limits::Union{Nothing, MinMax}
base_power::Float64
must_run::Bool
active_power_losses::Float64
services::Vector{Service}
dynamic_injector::Union{Nothing, DynamicInjection}
ext::Dict{String, Any}
internal::InfrastructureSystemsInternal
end
A Synchronous Machine connected to the system to provide inertia or reactive power support
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
andACBus
) can have the same nameavailable::Bool
: Indicator of whether the component is connected and online (true
) or disconnected, offline, or down (false
). Unavailable components are excluded during simulationsbus::ACBus
: Bus that this component is connected toreactive_power::Float64
: Initial reactive power set point of the unit (MVAR), validation range:reactive_power_limits
rating::Float64
: Maximum output power rating of the unit (MVA), validation range:(0, nothing)
reactive_power_limits::Union{Nothing, MinMax}
: Minimum and maximum reactive power limits. Set toNothing
if not applicablebase_power::Float64
: Base power of the unit (MVA) for per unitization, validation range:(0, nothing)
must_run::Bool
: (default:false
) Set totrue
if the unit is must runactive_power_losses::Float64
: (default:0.0
) Active Power Loss incurred by having the unit online., validation range:(0, nothing)
services::Vector{Service}
: (default:Device[]
) Services that this device contributes todynamic_injector::Union{Nothing, DynamicInjection}
: (default:nothing
) corresponding dynamic injection deviceext::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
InfrastructureSystems.get_name
— Methodget_name(value::SynchronousCondenser) -> String
Get SynchronousCondenser
name
.
PowerSystems.get_active_power_losses
— Methodget_active_power_losses(value::SynchronousCondenser) -> Any
Get SynchronousCondenser
active_power_losses
.
PowerSystems.get_available
— Methodget_available(value::SynchronousCondenser) -> Bool
Get SynchronousCondenser
available
.
PowerSystems.get_base_power
— Methodget_base_power(value::SynchronousCondenser) -> Float64
Get SynchronousCondenser
base_power
.
PowerSystems.get_bus
— Methodget_bus(value::SynchronousCondenser) -> ACBus
Get SynchronousCondenser
bus
.
PowerSystems.get_dynamic_injector
— Methodget_dynamic_injector(
value::SynchronousCondenser
) -> Union{Nothing, DynamicInjection}
Get SynchronousCondenser
dynamic_injector
.
PowerSystems.get_ext
— Methodget_ext(value::SynchronousCondenser) -> Dict{String, Any}
Get SynchronousCondenser
ext
.
PowerSystems.get_must_run
— Methodget_must_run(value::SynchronousCondenser) -> Bool
Get SynchronousCondenser
must_run
.
PowerSystems.get_rating
— Methodget_rating(value::SynchronousCondenser) -> Any
Get SynchronousCondenser
rating
.
PowerSystems.get_reactive_power
— Methodget_reactive_power(value::SynchronousCondenser) -> Any
Get SynchronousCondenser
reactive_power
.
PowerSystems.get_reactive_power_limits
— Methodget_reactive_power_limits(
value::SynchronousCondenser
) -> Union{Nothing, NamedTuple{(:min, :max), <:Tuple{Any, Any}}}
Get SynchronousCondenser
reactive_power_limits
.
PowerSystems.get_services
— Methodget_services(value::SynchronousCondenser) -> Vector{Service}
Get SynchronousCondenser
services
.
PowerSystems.set_active_power_losses!
— Methodset_active_power_losses!(
value::SynchronousCondenser,
val
) -> Any
Set SynchronousCondenser
active_power_losses
.
PowerSystems.set_available!
— Methodset_available!(value::SynchronousCondenser, val) -> Any
Set SynchronousCondenser
available
.
PowerSystems.set_base_power!
— Methodset_base_power!(value::SynchronousCondenser, val) -> Any
Set SynchronousCondenser
base_power
.
PowerSystems.set_bus!
— Methodset_bus!(value::SynchronousCondenser, val) -> Any
Set SynchronousCondenser
bus
.
PowerSystems.set_ext!
— Methodset_ext!(value::SynchronousCondenser, val) -> Any
Set SynchronousCondenser
ext
.
PowerSystems.set_must_run!
— Methodset_must_run!(value::SynchronousCondenser, val) -> Any
Set SynchronousCondenser
must_run
.
PowerSystems.set_rating!
— Methodset_rating!(value::SynchronousCondenser, val) -> Any
Set SynchronousCondenser
rating
.
PowerSystems.set_reactive_power!
— Methodset_reactive_power!(value::SynchronousCondenser, val) -> Any
Set SynchronousCondenser
reactive_power
.
PowerSystems.set_reactive_power_limits!
— Methodset_reactive_power_limits!(
value::SynchronousCondenser,
val
) -> Any
Set SynchronousCondenser
reactive_power_limits
.
PowerSystems.set_services!
— Methodset_services!(value::SynchronousCondenser, val) -> Any
Set SynchronousCondenser
services
.