FixedAdmittance
PowerSystems.FixedAdmittance — Type
mutable struct FixedAdmittance <: ElectricLoad
name::String
available::Bool
bus::ACBus
Y::Complex{Float64}
dynamic_injector::Union{Nothing, DynamicInjection}
services::Vector{Service}
ext::Dict{String, Any}
internal::InfrastructureSystemsInternal
endA fixed admittance.
Most often used in dynamics or AC power flow studies as a source of 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.,PowerLoadandACBus) 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 toY::Complex{Float64}: Fixed admittance in p.u. (SYSTEM_BASE)dynamic_injector::Union{Nothing, DynamicInjection}: (default:nothing) corresponding dynamic injection model for admittanceservices::Vector{Service}: (default:Device[]) Services that this device contributes toext::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_available — Method
InfrastructureSystems.get_name — Method
InfrastructureSystems.set_available! — Method
PowerSystems.get_Y — Method
PowerSystems.get_bus — Method
PowerSystems.get_dynamic_injector — Method
get_dynamic_injector(
value::FixedAdmittance
) -> Union{Nothing, DynamicInjection}
Get FixedAdmittance dynamic_injector.