InterruptibleStandardLoad
PowerSystems.InterruptibleStandardLoad — Typemutable struct InterruptibleStandardLoad <: ControllableLoad
name::String
available::Bool
bus::ACBus
base_power::Float64
operation_cost::Union{LoadCost, MarketBidCost}
conformity::LoadConformity
constant_active_power::Float64
constant_reactive_power::Float64
impedance_active_power::Float64
impedance_reactive_power::Float64
current_active_power::Float64
current_reactive_power::Float64
max_constant_active_power::Float64
max_constant_reactive_power::Float64
max_impedance_active_power::Float64
max_impedance_reactive_power::Float64
max_current_active_power::Float64
max_current_reactive_power::Float64
services::Vector{Service}
dynamic_injector::Union{Nothing, DynamicInjection}
ext::Dict{String, Any}
internal::InfrastructureSystemsInternal
endA voltage-dependent ZIP load, most commonly used for dynamics modeling.
A StandardLoad breaks the ZIP into three pieces: Z (constant impedance), I (constant current), and P (constant power), according to P = P_P * V^0 + P_I * V^1 + P_Z * V^2 for active power and Q = Q_P * V^0 + Q_I * V^1 + Q_Z * V^2 for reactive power. (Voltage V is in per unit.)
For an alternative exponential formulation of the ZIP model, see ExponentialLoad. For a simpler load model with no voltage dependency, see PowerLoad
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 tobase_power::Float64: Base power of the load (MVA) for per unitization, validation range:(0, nothing)operation_cost::Union{LoadCost, MarketBidCost}:OperationalCostof interrupting loadconformity::LoadConformity: (default:LoadConformity.UNDEFINED) Indicates whether the specified load is conforming or non-conforming. Options are listed here.constant_active_power::Float64: (default:0.0) Constant active power demand in MW (P_P)constant_reactive_power::Float64: (default:0.0) Constant reactive power demand in MVAR (Q_P)impedance_active_power::Float64: (default:0.0) Active power coefficient in MW for constant impedance load (P_Z)impedance_reactive_power::Float64: (default:0.0) Reactive power coefficient in MVAR for constant impedance load (Q_Z)current_active_power::Float64: (default:0.0) Active power coefficient in MW for constant current load (P_I)current_reactive_power::Float64: (default:0.0) Reactive power coefficient in MVAR for constant current load (Q_I)max_constant_active_power::Float64: (default:0.0) Maximum active power (MW) drawn by constant power loadmax_constant_reactive_power::Float64: (default:0.0) Maximum reactive power (MVAR) drawn by constant power loadmax_impedance_active_power::Float64: (default:0.0) Maximum active power (MW) drawn by constant impedance loadmax_impedance_reactive_power::Float64: (default:0.0) Maximum reactive power (MVAR) drawn by constant impedance loadmax_current_active_power::Float64: (default:0.0) Maximum active power (MW) drawn by constant current loadmax_current_reactive_power::Float64: (default:0.0) Maximum reactive power (MVAR) drawn by constant current loadservices::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_available — Methodget_available(value::InterruptibleStandardLoad) -> Bool
Get InterruptibleStandardLoad available.
InfrastructureSystems.get_name — Methodget_name(value::InterruptibleStandardLoad) -> String
Get InterruptibleStandardLoad name.
InfrastructureSystems.set_available! — Methodset_available!(value::InterruptibleStandardLoad, val) -> Any
Set InterruptibleStandardLoad available.
PowerSystems.get_base_power — Methodget_base_power(value::InterruptibleStandardLoad) -> Float64
Get InterruptibleStandardLoad base_power.
PowerSystems.get_bus — Methodget_bus(value::InterruptibleStandardLoad) -> ACBus
Get InterruptibleStandardLoad bus.
PowerSystems.get_conformity — Methodget_conformity(
value::InterruptibleStandardLoad
) -> LoadConformity
Get InterruptibleStandardLoad conformity.
PowerSystems.get_constant_active_power — Methodget_constant_active_power(
value::InterruptibleStandardLoad
) -> Float64
Get InterruptibleStandardLoad constant_active_power.
PowerSystems.get_constant_reactive_power — Methodget_constant_reactive_power(
value::InterruptibleStandardLoad
) -> Float64
Get InterruptibleStandardLoad constant_reactive_power.
PowerSystems.get_current_active_power — Methodget_current_active_power(
value::InterruptibleStandardLoad
) -> Float64
Get InterruptibleStandardLoad current_active_power.
PowerSystems.get_current_reactive_power — Methodget_current_reactive_power(
value::InterruptibleStandardLoad
) -> Float64
Get InterruptibleStandardLoad current_reactive_power.
PowerSystems.get_dynamic_injector — Methodget_dynamic_injector(
value::InterruptibleStandardLoad
) -> Union{Nothing, DynamicInjection}
Get InterruptibleStandardLoad dynamic_injector.
PowerSystems.get_ext — Methodget_ext(
value::InterruptibleStandardLoad
) -> Dict{String, Any}
Get InterruptibleStandardLoad ext.
PowerSystems.get_impedance_active_power — Methodget_impedance_active_power(
value::InterruptibleStandardLoad
) -> Float64
Get InterruptibleStandardLoad impedance_active_power.
PowerSystems.get_impedance_reactive_power — Methodget_impedance_reactive_power(
value::InterruptibleStandardLoad
) -> Float64
Get InterruptibleStandardLoad impedance_reactive_power.
PowerSystems.get_max_constant_active_power — Methodget_max_constant_active_power(
value::InterruptibleStandardLoad
) -> Float64
Get InterruptibleStandardLoad max_constant_active_power.
PowerSystems.get_max_constant_reactive_power — Methodget_max_constant_reactive_power(
value::InterruptibleStandardLoad
) -> Float64
Get InterruptibleStandardLoad max_constant_reactive_power.
PowerSystems.get_max_current_active_power — Methodget_max_current_active_power(
value::InterruptibleStandardLoad
) -> Float64
Get InterruptibleStandardLoad max_current_active_power.
PowerSystems.get_max_current_reactive_power — Methodget_max_current_reactive_power(
value::InterruptibleStandardLoad
) -> Float64
Get InterruptibleStandardLoad max_current_reactive_power.
PowerSystems.get_max_impedance_active_power — Methodget_max_impedance_active_power(
value::InterruptibleStandardLoad
) -> Float64
Get InterruptibleStandardLoad max_impedance_active_power.
PowerSystems.get_max_impedance_reactive_power — Methodget_max_impedance_reactive_power(
value::InterruptibleStandardLoad
) -> Float64
Get InterruptibleStandardLoad max_impedance_reactive_power.
PowerSystems.get_operation_cost — Methodget_operation_cost(
value::InterruptibleStandardLoad
) -> Union{LoadCost, MarketBidCost}
Get InterruptibleStandardLoad operation_cost.
PowerSystems.get_services — Methodget_services(
value::InterruptibleStandardLoad
) -> Vector{Service}
Get InterruptibleStandardLoad services.
PowerSystems.set_base_power! — Methodset_base_power!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad base_power.
PowerSystems.set_bus! — Methodset_bus!(value::InterruptibleStandardLoad, val) -> Any
Set InterruptibleStandardLoad bus.
PowerSystems.set_conformity! — Methodset_conformity!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad conformity.
PowerSystems.set_constant_active_power! — Methodset_constant_active_power!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad constant_active_power.
PowerSystems.set_constant_reactive_power! — Methodset_constant_reactive_power!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad constant_reactive_power.
PowerSystems.set_current_active_power! — Methodset_current_active_power!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad current_active_power.
PowerSystems.set_current_reactive_power! — Methodset_current_reactive_power!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad current_reactive_power.
PowerSystems.set_ext! — Methodset_ext!(value::InterruptibleStandardLoad, val) -> Any
Set InterruptibleStandardLoad ext.
PowerSystems.set_impedance_active_power! — Methodset_impedance_active_power!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad impedance_active_power.
PowerSystems.set_impedance_reactive_power! — Methodset_impedance_reactive_power!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad impedance_reactive_power.
PowerSystems.set_max_constant_active_power! — Methodset_max_constant_active_power!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad max_constant_active_power.
PowerSystems.set_max_constant_reactive_power! — Methodset_max_constant_reactive_power!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad max_constant_reactive_power.
PowerSystems.set_max_current_active_power! — Methodset_max_current_active_power!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad max_current_active_power.
PowerSystems.set_max_current_reactive_power! — Methodset_max_current_reactive_power!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad max_current_reactive_power.
PowerSystems.set_max_impedance_active_power! — Methodset_max_impedance_active_power!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad max_impedance_active_power.
PowerSystems.set_max_impedance_reactive_power! — Methodset_max_impedance_reactive_power!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad max_impedance_reactive_power.
PowerSystems.set_operation_cost! — Methodset_operation_cost!(
value::InterruptibleStandardLoad,
val
) -> Any
Set InterruptibleStandardLoad operation_cost.
PowerSystems.set_services! — Methodset_services!(value::InterruptibleStandardLoad, val) -> Any
Set InterruptibleStandardLoad services.