ThermalStandard
PowerSystems.ThermalStandard — Typemutable struct ThermalStandard <: ThermalGen
    name::String
    available::Bool
    status::Bool
    bus::Bus
    active_power::Float64
    reactive_power::Float64
    rating::Float64
    active_power_limits::NamedTuple{(:min, :max), Tuple{Float64, Float64}}
    reactive_power_limits::Union{Nothing, Min_Max}
    ramp_limits::Union{Nothing, NamedTuple{(:up, :down), Tuple{Float64, Float64}}}
    operation_cost::OperationalCost
    base_power::Float64
    time_limits::Union{Nothing, NamedTuple{(:up, :down), Tuple{Float64, Float64}}}
    prime_mover::PrimeMovers
    fuel::ThermalFuels
    services::Vector{Service}
    time_at_status::Float64
    dynamic_injector::Union{Nothing, DynamicInjection}
    ext::Dict{String, Any}
    time_series_container::InfrastructureSystems.TimeSeriesContainer
    internal::InfrastructureSystemsInternal
endData Structure for thermal generation technologies.
Arguments
- name::String
- available::Bool
- status::Bool
- bus::Bus
- active_power::Float64, validation range:- active_power_limits, action if invalid:- warn
- reactive_power::Float64, validation range:- reactive_power_limits, action if invalid:- warn
- rating::Float64: Thermal limited MVA Power Output of the unit. <= Capacity, validation range:- (0, nothing), action if invalid:- error
- active_power_limits::NamedTuple{(:min, :max), Tuple{Float64, Float64}}, validation range:- (0, nothing), action if invalid:- warn
- reactive_power_limits::Union{Nothing, Min_Max}
- ramp_limits::Union{Nothing, NamedTuple{(:up, :down), Tuple{Float64, Float64}}}: ramp up and ramp down limits in MW (in component base per unit) per minute, validation range:- (0, nothing), action if invalid:- error
- operation_cost::OperationalCost
- base_power::Float64: Base power of the unit in MVA, validation range:- (0, nothing), action if invalid:- warn
- time_limits::Union{Nothing, NamedTuple{(:up, :down), Tuple{Float64, Float64}}}: Minimum up and Minimum down time limits in hours, validation range:- (0, nothing), action if invalid:- error
- prime_mover::PrimeMovers: Prime mover technology according to EIA 923
- fuel::ThermalFuels: Prime mover fuel according to EIA 923
- services::Vector{Service}: Services that this device contributes to
- time_at_status::Float64
- dynamic_injector::Union{Nothing, DynamicInjection}: corresponding dynamic injection device
- ext::Dict{String, Any}
- time_series_container::InfrastructureSystems.TimeSeriesContainer: internal time_series storage
- internal::InfrastructureSystemsInternal: power system internal reference, do not modify
InfrastructureSystems.get_name — Methodget_name(value::ThermalStandard) -> String
Get ThermalStandard name.
InfrastructureSystems.get_time_series_container — Methodget_time_series_container(value::ThermalStandard) -> InfrastructureSystems.TimeSeriesContainer
Get ThermalStandard time_series_container.
InfrastructureSystems.set_name! — Methodset_name!(value::ThermalStandard, val) -> Any
Set ThermalStandard name.
PowerSystems.get_active_power — Methodget_active_power(value::ThermalStandard) -> Any
Get ThermalStandard active_power.
PowerSystems.get_active_power_limits — Methodget_active_power_limits(value::ThermalStandard) -> NamedTuple{(:min, :max), _A} where _A<:Tuple{Any, Any}
Get ThermalStandard active_power_limits.
PowerSystems.get_available — Methodget_available(value::ThermalStandard) -> Bool
Get ThermalStandard available.
PowerSystems.get_base_power — Methodget_base_power(value::ThermalStandard) -> Float64
Get ThermalStandard base_power.
PowerSystems.get_bus — Methodget_bus(value::ThermalStandard) -> Bus
Get ThermalStandard bus.
PowerSystems.get_dynamic_injector — Methodget_dynamic_injector(value::ThermalStandard) -> Union{Nothing, DynamicInjection}
Get ThermalStandard dynamic_injector.
PowerSystems.get_ext — Methodget_ext(value::ThermalStandard) -> Dict{String, Any}
Get ThermalStandard ext.
PowerSystems.get_fuel — Methodget_fuel(value::ThermalStandard) -> ThermalFuels
Get ThermalStandard fuel.
PowerSystems.get_operation_cost — Methodget_operation_cost(value::ThermalStandard) -> PowerSystems.OperationalCost
Get ThermalStandard operation_cost.
PowerSystems.get_prime_mover — Methodget_prime_mover(value::ThermalStandard) -> PrimeMovers
Get ThermalStandard prime_mover.
PowerSystems.get_ramp_limits — Methodget_ramp_limits(value::ThermalStandard) -> Union{Nothing, NamedTuple{(:up, :down), _A} where _A<:Tuple{Any, Any}}
Get ThermalStandard ramp_limits.
PowerSystems.get_rating — Methodget_rating(value::ThermalStandard) -> Any
Get ThermalStandard rating.
PowerSystems.get_reactive_power — Methodget_reactive_power(value::ThermalStandard) -> Any
Get ThermalStandard reactive_power.
PowerSystems.get_reactive_power_limits — Methodget_reactive_power_limits(value::ThermalStandard) -> Union{Nothing, NamedTuple{(:min, :max), _A} where _A<:Tuple{Any, Any}}
Get ThermalStandard reactive_power_limits.
PowerSystems.get_services — Methodget_services(value::ThermalStandard) -> Vector{Service}
Get ThermalStandard services.
PowerSystems.get_status — Methodget_status(value::ThermalStandard) -> Bool
Get ThermalStandard status.
PowerSystems.get_time_at_status — Methodget_time_at_status(value::ThermalStandard) -> Float64
Get ThermalStandard time_at_status.
PowerSystems.get_time_limits — Methodget_time_limits(value::ThermalStandard) -> Union{Nothing, NamedTuple{(:up, :down), Tuple{Float64, Float64}}}
Get ThermalStandard time_limits.
PowerSystems.set_active_power! — Methodset_active_power!(value::ThermalStandard, val) -> Any
Set ThermalStandard active_power.
PowerSystems.set_active_power_limits! — Methodset_active_power_limits!(value::ThermalStandard, val) -> Any
Set ThermalStandard active_power_limits.
PowerSystems.set_available! — Methodset_available!(value::ThermalStandard, val) -> Any
Set ThermalStandard available.
PowerSystems.set_base_power! — Methodset_base_power!(value::ThermalStandard, val) -> Any
Set ThermalStandard base_power.
PowerSystems.set_bus! — Methodset_bus!(value::ThermalStandard, val) -> Any
Set ThermalStandard bus.
PowerSystems.set_ext! — Methodset_ext!(value::ThermalStandard, val) -> Any
Set ThermalStandard ext.
PowerSystems.set_fuel! — Methodset_fuel!(value::ThermalStandard, val) -> Any
Set ThermalStandard fuel.
PowerSystems.set_operation_cost! — Methodset_operation_cost!(value::ThermalStandard, val) -> Any
Set ThermalStandard operation_cost.
PowerSystems.set_prime_mover! — Methodset_prime_mover!(value::ThermalStandard, val) -> Any
Set ThermalStandard prime_mover.
PowerSystems.set_ramp_limits! — Methodset_ramp_limits!(value::ThermalStandard, val) -> Any
Set ThermalStandard ramp_limits.
PowerSystems.set_rating! — Methodset_rating!(value::ThermalStandard, val) -> Any
Set ThermalStandard rating.
PowerSystems.set_reactive_power! — Methodset_reactive_power!(value::ThermalStandard, val) -> Any
Set ThermalStandard reactive_power.
PowerSystems.set_reactive_power_limits! — Methodset_reactive_power_limits!(value::ThermalStandard, val) -> Any
Set ThermalStandard reactive_power_limits.
PowerSystems.set_services! — Methodset_services!(value::ThermalStandard, val) -> Any
Set ThermalStandard services.
PowerSystems.set_status! — Methodset_status!(value::ThermalStandard, val) -> Any
Set ThermalStandard status.
PowerSystems.set_time_at_status! — Methodset_time_at_status!(value::ThermalStandard, val) -> Any
Set ThermalStandard time_at_status.
PowerSystems.set_time_limits! — Methodset_time_limits!(value::ThermalStandard, val) -> Any
Set ThermalStandard time_limits.
PowerSystems.set_time_series_container! — Methodset_time_series_container!(value::ThermalStandard, val) -> Any
Set ThermalStandard time_series_container.