diff --git a/stable b/stable index 981adeb2b3..58571f7e0e 120000 --- a/stable +++ b/stable @@ -1 +1 @@ -v0.27.4 \ No newline at end of file +v0.27.5 \ No newline at end of file diff --git a/v0.27 b/v0.27 index 981adeb2b3..58571f7e0e 120000 --- a/v0.27 +++ b/v0.27 @@ -1 +1 @@ -v0.27.4 \ No newline at end of file +v0.27.5 \ No newline at end of file diff --git a/v0.27.5/api/PowerSimulations/index.html b/v0.27.5/api/PowerSimulations/index.html new file mode 100644 index 0000000000..482bb67a65 --- /dev/null +++ b/v0.27.5/api/PowerSimulations/index.html @@ -0,0 +1,210 @@ + +API Reference · PowerSimulations.jl

API Reference

Table of Contents

  1. Device Models
  2. Decision Models
  3. Emulation Models
  4. Service Models
  5. Simulation Models
  6. Variables
  7. Constraints
  8. Parameters

Device Models

List of structures and methods for Device models

PowerSimulations.DeviceModelType
DeviceModel(
+    ::Type{D},
+    ::Type{B},
+    feedforwards::Vector{<:AbstractAffectFeedforward}
+    use_slacks::Bool,
+    duals::Vector{DataType},
+    services::Vector{ServiceModel}
+    attributes::Dict{String, Any}
+)

Establishes the model for a particular device specified by type. Uses the keyword argument feedforward to enable passing values between operation model at simulation time

Arguments

  • ::Type{D} where D<:PSY.Device: Power System Device Type
  • ::Type{B} where B<:AbstractDeviceFormulation: Abstract Device Formulation
  • feedforward::Array{<:AbstractAffectFeedforward} = Vector{AbstractAffectFeedforward}() : use to pass parameters between models
  • use_slacks::Bool = false : Add slacks to the device model. Implementation is model dependent and not all models feature slacks
  • duals::Vector{DataType} = Vector{DataType}(): use to pass constraint type to calculate the duals. The DataType needs to be a valid ConstraintType
  • time_series_names::Dict{Type{<:TimeSeriesParameter}, String} = get_default_time_series_names(D, B) : use to specify time series names associated to the device`
  • attributes::Dict{String, Any} = get_default_attributes(D, B) : use to specify attributes to the device

Example

thermal_gens = DeviceModel(ThermalStandard, ThermalBasicUnitCommitment)
source

Formulations

Refer to the Formulations Page for each Abstract Device Formulation.

Problem Templates

Refer to the Problem Templates Page for available ProblemTemplates.

Problem Templates

Refer to the Problem Templates Page for available ProblemTemplates.

  + 

Service Models

List of structures and methods for Service models

PowerSimulations.ServiceModelType

Establishes the model for a particular services specified by type. Uses the keyword argument use_service_name to assign the model to a service with the same name as the name in the template. Uses the keyword argument feedforward to enable passing values between operation model at simulation time

Arguments

-::Type{D}: Power System Service Type -::Type{B}: Abstract Service Formulation

Accepted Key Words

  • feedforward::Array{<:AbstractAffectFeedforward} : use to pass parameters between models
  • use_service_name::Bool : use the name as the name for the service

Example

reserves = ServiceModel(PSY.VariableReserve{PSY.ReserveUp}, RangeReserve)

source

Decision Models

PowerSimulations.DecisionModelType
DecisionModel{M}(
+    template::ProblemTemplate,
+    sys::PSY.System,
+    jump_model::Union{Nothing, JuMP.Model}=nothing;
+    kwargs...) where {M<:DecisionProblem}

Build the optimization problem of type M with the specific system and template.

Arguments

  • ::Type{M} where M<:DecisionProblem: The abstract operation model type
  • template::ProblemTemplate: The model reference made up of transmission, devices, branches, and services.
  • sys::PSY.System: the system created using Power Systems
  • jump_model::Union{Nothing, JuMP.Model}: Enables passing a custom JuMP model. Use with care
  • name = nothing: name of model, string or symbol; defaults to the type of template converted to a symbol.
  • optimizer::Union{Nothing,MOI.OptimizerWithAttributes} = nothing : The optimizer does not get serialized. Callers should pass whatever they passed to the original problem.
  • horizon::Int = UNSET_HORIZON: Manually specify the length of the forecast Horizon
  • warm_start::Bool = true: True will use the current operation point in the system to initialize variable values. False initializes all variables to zero. Default is true
  • system_to_file::Bool = true:: True to create a copy of the system used in the model.
  • initialize_model::Bool = true: Option to decide to initialize the model or not.
  • initialization_file::String = "": This allows to pass pre-existing initialization values to avoid the solution of an optimization problem to find feasible initial conditions.
  • deserialize_initial_conditions::Bool = false: Option to deserialize conditions
  • export_pwl_vars::Bool = false: True to export all the pwl intermediate variables. It can slow down significantly the build and solve time.
  • allow_fails::Bool = false: True to allow the simulation to continue even if the optimization step fails. Use with care.
  • optimizer_solve_log_print::Bool = false: Uses JuMP.unset_silent() to print the optimizer's log. By default all solvers are set to MOI.Silent()
  • detailed_optimizer_stats::Bool = false: True to save detailed optimizer stats log.
  • calculate_conflict::Bool = false: True to use solver to calculate conflicts for infeasible problems. Only specific solvers are able to calculate conflicts.
  • direct_mode_optimizer::Bool = false: True to use the solver in direct mode. Creates a JuMP.direct_model.
  • store_variable_names::Bool = false: to store variable names in optimization model. Decreases the build times.
  • rebuild_model::Bool = false: It will force the rebuild of the underlying JuMP model with each call to update the model. It increases solution times, use only if the model can't be updated in memory.
  • initial_time::Dates.DateTime = UNSET_INI_TIME: Initial Time for the model solve.
  • time_series_cache_size::Int = IS.TIME_SERIES_CACHE_SIZE_BYTES: Size in bytes to cache for each time array. Default is 1 MiB. Set to 0 to disable.

Example

template = ProblemTemplate(CopperPlatePowerModel, devices, branches, services)
+OpModel = DecisionModel(MockOperationProblem, template, system)
source
DecisionModel(
+    ::Type{M<:PowerSimulations.DecisionProblem},
+    template::ProblemTemplate,
+    sys::System;
+    ...
+) -> DecisionModel
+DecisionModel(
+    ::Type{M<:PowerSimulations.DecisionProblem},
+    template::ProblemTemplate,
+    sys::System,
+    jump_model::Union{Nothing, JuMP.Model};
+    kwargs...
+) -> DecisionModel
+

Build the optimization problem of type M with the specific system and template

Arguments

  • ::Type{M} where M<:DecisionProblem: The abstract operation model type
  • template::ProblemTemplate: The model reference made up of transmission, devices, branches, and services.
  • sys::PSY.System: the system created using Power Systems
  • jump_model::Union{Nothing, JuMP.Model} = nothing: Enables passing a custom JuMP model. Use with care.

Example

template = ProblemTemplate(CopperPlatePowerModel, devices, branches, services)
+problem = DecisionModel(MyOpProblemType, template, system, optimizer)
source

Builds an empty decision model. This constructor is used for the implementation of custom decision models that do not require a template.

Arguments

  • ::Type{M} where M<:DecisionProblem: The abstract operation model type
  • sys::PSY.System: the system created using Power Systems
  • jump_model::Union{Nothing, JuMP.Model} = nothing: Enables passing a custom JuMP model. Use with care.

Example

problem = DecisionModel(system, optimizer)
source
DecisionModel(
+    directory::AbstractString,
+    optimizer::MathOptInterface.OptimizerWithAttributes;
+    jump_model,
+    system
+) -> Any
+

Construct an DecisionProblem from a serialized file.

Arguments

  • directory::AbstractString: Directory containing a serialized model
  • jump_model::Union{Nothing, JuMP.Model} = nothing: The JuMP model does not get serialized. Callers should pass whatever they passed to the original problem.
  • optimizer::Union{Nothing,MOI.OptimizerWithAttributes} = nothing: The optimizer does not get serialized. Callers should pass whatever they passed to the original problem.
  • system::Union{Nothing, PSY.System}: Optionally, the system used for the model. If nothing and systofile was set to true when the model was created, the system will be deserialized from a file.
source
PowerSimulations.DecisionModelMethod
DecisionModel(
+    ::Type{M<:PowerSimulations.DecisionProblem},
+    template::ProblemTemplate,
+    sys::System;
+    ...
+) -> DecisionModel
+DecisionModel(
+    ::Type{M<:PowerSimulations.DecisionProblem},
+    template::ProblemTemplate,
+    sys::System,
+    jump_model::Union{Nothing, JuMP.Model};
+    kwargs...
+) -> DecisionModel
+

Build the optimization problem of type M with the specific system and template

Arguments

  • ::Type{M} where M<:DecisionProblem: The abstract operation model type
  • template::ProblemTemplate: The model reference made up of transmission, devices, branches, and services.
  • sys::PSY.System: the system created using Power Systems
  • jump_model::Union{Nothing, JuMP.Model} = nothing: Enables passing a custom JuMP model. Use with care.

Example

template = ProblemTemplate(CopperPlatePowerModel, devices, branches, services)
+problem = DecisionModel(MyOpProblemType, template, system, optimizer)
source
PowerSimulations.DecisionModelMethod
DecisionModel(
+    directory::AbstractString,
+    optimizer::MathOptInterface.OptimizerWithAttributes;
+    jump_model,
+    system
+) -> Any
+

Construct an DecisionProblem from a serialized file.

Arguments

  • directory::AbstractString: Directory containing a serialized model
  • jump_model::Union{Nothing, JuMP.Model} = nothing: The JuMP model does not get serialized. Callers should pass whatever they passed to the original problem.
  • optimizer::Union{Nothing,MOI.OptimizerWithAttributes} = nothing: The optimizer does not get serialized. Callers should pass whatever they passed to the original problem.
  • system::Union{Nothing, PSY.System}: Optionally, the system used for the model. If nothing and systofile was set to true when the model was created, the system will be deserialized from a file.
source
PowerSimulations.build!Method
build!(
+    model::DecisionModel;
+    output_dir,
+    recorders,
+    console_level,
+    file_level,
+    disable_timer_outputs
+)
+

Build the Decision Model based on the specified DecisionProblem.

Arguments

  • model::DecisionModel{<:DecisionProblem}: DecisionModel object
  • output_dir::String: Output directory for results
  • recorders::Vector{Symbol} = []: recorder names to register
  • console_level = Logging.Error:
  • file_level = Logging.Info:
  • disable_timer_outputs = false : Enable/Disable timing outputs
source
PowerSimulations.solve!Method
solve!(
+    model::DecisionModel;
+    export_problem_results,
+    console_level,
+    file_level,
+    disable_timer_outputs,
+    serialize,
+    kwargs...
+) -> RunStatus
+

Default solve method for models that conform to the requirements of DecisionModel{<: DecisionProblem}.

This will call build! on the model if it is not already built. It will forward all keyword arguments to that function.

Arguments

  • model::OperationModel = model: operation model
  • export_problem_results::Bool = false: If true, export ProblemResults DataFrames to CSV files. Reduces solution times during simulation.
  • console_level = Logging.Error:
  • file_level = Logging.Info:
  • disable_timer_outputs = false : Enable/Disable timing outputs
  • serialize::Bool = true: If true, serialize the model to a file to allow re-execution later.

Examples

results = solve!(OpModel)
+results = solve!(OpModel, export_problem_results = true)
source
  + 

Emulation Models

PowerSimulations.EmulationModelType
EmulationModel{M}(
+    template::ProblemTemplate,
+    sys::PSY.System,
+    jump_model::Union{Nothing, JuMP.Model}=nothing;
+    kwargs...) where {M<:EmulationProblem}

Build the optimization problem of type M with the specific system and template.

Arguments

  • ::Type{M} where M<:EmulationProblem: The abstract Emulation model type
  • template::ProblemTemplate: The model reference made up of transmission, devices, branches, and services.
  • sys::PSY.System: the system created using Power Systems
  • jump_model::Union{Nothing, JuMP.Model}: Enables passing a custom JuMP model. Use with care
  • name = nothing: name of model, string or symbol; defaults to the type of template converted to a symbol.
  • optimizer::Union{Nothing,MOI.OptimizerWithAttributes} = nothing : The optimizer does not get serialized. Callers should pass whatever they passed to the original problem.
  • warm_start::Bool = true: True will use the current operation point in the system to initialize variable values. False initializes all variables to zero. Default is true
  • system_to_file::Bool = true:: True to create a copy of the system used in the model.
  • initialize_model::Bool = true: Option to decide to initialize the model or not.
  • initialization_file::String = "": This allows to pass pre-existing initialization values to avoid the solution of an optimization problem to find feasible initial conditions.
  • deserialize_initial_conditions::Bool = false: Option to deserialize conditions
  • export_pwl_vars::Bool = false: True to export all the pwl intermediate variables. It can slow down significantly the build and solve time.
  • allow_fails::Bool = false: True to allow the simulation to continue even if the optimization step fails. Use with care.
  • calculate_conflict::Bool = false: True to use solver to calculate conflicts for infeasible problems. Only specific solvers are able to calculate conflicts.
  • optimizer_solve_log_print::Bool = false: Uses JuMP.unset_silent() to print the optimizer's log. By default all solvers are set to MOI.Silent()
  • detailed_optimizer_stats::Bool = false: True to save detailed optimizer stats log.
  • direct_mode_optimizer::Bool = false: True to use the solver in direct mode. Creates a JuMP.direct_model.
  • store_variable_names::Bool = false: True to store variable names in optimization model.
  • rebuild_model::Bool = false: It will force the rebuild of the underlying JuMP model with each call to update the model. It increases solution times, use only if the model can't be updated in memory.
  • initial_time::Dates.DateTime = UNSET_INI_TIME: Initial Time for the model solve.
  • time_series_cache_size::Int = IS.TIME_SERIES_CACHE_SIZE_BYTES: Size in bytes to cache for each time array. Default is 1 MiB. Set to 0 to disable.

Example

template = ProblemTemplate(CopperPlatePowerModel, devices, branches, services)
+OpModel = EmulationModel(MockEmulationProblem, template, system)
source
PowerSimulations.EmulationModelMethod
EmulationModel(
+    ::Type{M<:PowerSimulations.EmulationProblem},
+    template::ProblemTemplate,
+    sys::System;
+    ...
+) -> EmulationModel
+EmulationModel(
+    ::Type{M<:PowerSimulations.EmulationProblem},
+    template::ProblemTemplate,
+    sys::System,
+    jump_model::Union{Nothing, JuMP.Model};
+    kwargs...
+) -> EmulationModel
+

Build the optimization problem of type M with the specific system and template

Arguments

  • ::Type{M} where M<:EmulationProblem: The abstract Emulation model type
  • template::ProblemTemplate: The model reference made up of transmission, devices, branches, and services.
  • sys::PSY.System: the system created using Power Systems
  • jump_model::Union{Nothing, JuMP.Model}: Enables passing a custom JuMP model. Use with care

Example

template = ProblemTemplate(CopperPlatePowerModel, devices, branches, services)
+problem = EmulationModel(MyEmProblemType, template, system, optimizer)
source
PowerSimulations.EmulationModelMethod
EmulationModel(
+    directory::AbstractString,
+    optimizer::MathOptInterface.OptimizerWithAttributes;
+    jump_model,
+    system,
+    kwargs...
+) -> Any
+

Construct an EmulationProblem from a serialized file.

Arguments

  • directory::AbstractString: Directory containing a serialized model.
  • optimizer::MOI.OptimizerWithAttributes: The optimizer does not get serialized. Callers should pass whatever they passed to the original problem.
  • jump_model::Union{Nothing, JuMP.Model} = nothing: The JuMP model does not get serialized. Callers should pass whatever they passed to the original problem.
  • system::Union{Nothing, PSY.System}: Optionally, the system used for the model. If nothing and systofile was set to true when the model was created, the system will be deserialized from a file.
source
PowerSimulations.build!Method
build!(
+    model::EmulationModel;
+    executions,
+    output_dir,
+    recorders,
+    console_level,
+    file_level,
+    disable_timer_outputs
+)
+

Implementation of build for any EmulationProblem

source
PowerSimulations.run!Method
run!(
+    model::EmulationModel;
+    export_problem_results,
+    console_level,
+    file_level,
+    disable_timer_outputs,
+    serialize,
+    kwargs...
+) -> RunStatus
+

Default run method for problems that conform to the requirements of EmulationModel{<: EmulationProblem}

This will call build! on the model if it is not already built. It will forward all keyword arguments to that function.

Arguments

  • model::EmulationModel = model: Emulation model
  • optimizer::MOI.OptimizerWithAttributes: The optimizer that is used to solve the model
  • executions::Int: Number of executions for the emulator run
  • export_problem_results::Bool: If true, export ProblemResults DataFrames to CSV files.
  • output_dir::String: Required if the model is not already built, otherwise ignored
  • enable_progress_bar::Bool: Enables/Disable progress bar printing
  • serialize::Bool: If true, serialize the model to a file to allow re-execution later.

Examples

status = run!(model; optimizer = GLPK.Optimizer, executions = 10)
+status = run!(model; output_dir = ./model_output, optimizer = GLPK.Optimizer, executions = 10)
source
  + 

Simulation Models

Refer to the Simulations Page to explanations on how to setup a Simulation, with Sequencing and Feedforwards.

PowerSimulations.SimulationModelsType
SimulationModels(
+    decision_models::Vector{<:DecisionModel},
+    emulation_models::Union{Nothing, EmulationModel}
+)

Stores the OperationProblem definitions to be used in the simulation. When creating the SimulationModels, the order in which the models are created determines the order on which the simulation is executed.

Arguments

  • decision_models::Vector{<:DecisionModel}: Vector of decision models.
  • emulation_models::Union{Nothing, EmulationModel}: Optional argument to include

an EmulationModel in the Simulation

Example

template_uc = template_unit_commitment()
+template_ed = template_economic_dispatch()
+my_decision_model_uc = DecisionModel(template_1, sys_uc, optimizer, name = "UC")
+my_decision_model_ed = DecisionModel(template_ed, sys_ed, optimizer, name = "ED")
+models = SimulationModels(
+    decision_models = [
+        my_decision_model_uc,
+        my_decision_model_ed
+    ]
+)
source
PowerSimulations.SimulationSequenceType
SimulationSequence(
+    models::SimulationModels,
+    feedforward::Dict{String, Vector{<:AbstractAffectFeedforward}}
+    ini_cond_chronology::InitialConditionChronology
+)

Construct the simulation sequence between decision and emulation models.

Arguments

  • models::SimulationModels: Vector of decisions and emulation models.
  • feedforward = Dict{String, Vector{<:AbstractAffectFeedforward}}(): Optional dictionary to specify how information

and variables are exchanged between decision and emulation models.

  • ini_cond_chronology::nitialConditionChronology = InterProblemChronology(): TODO

Example

template_uc = template_unit_commitment()
+template_ed = template_economic_dispatch()
+my_decision_model_uc = DecisionModel(template_1, sys_uc, optimizer, name = "UC")
+my_decision_model_ed = DecisionModel(template_ed, sys_ed, optimizer, name = "ED")
+models = SimulationModels(
+    decision_models = [
+        my_decision_model_uc,
+        my_decision_model_ed
+    ]
+)
+# The following sequence set the commitment variables (`OnVariable`) for `ThermalStandard` units from UC to ED.
+sequence = SimulationSequence(;
+    models = models,
+    feedforwards = Dict(
+        "ED" => [
+            SemiContinuousFeedforward(;
+                component_type = ThermalStandard,
+                source = OnVariable,
+                affected_values = [ActivePowerVariable],
+            ),
+        ],
+    ),
+)
source
PowerSimulations.SimulationType
Simulation(
+    sequence::SimulationSequence,
+    name::String,
+    steps::Int
+    models::SimulationModels,
+    simulation_folder::String,
+    initial_time::Union{Nothing, Dates.DateTime}
+)

Construct the Simulation structure to run the sequence of decision and emulation models specified.

Arguments

-sequence::SimulationSequence: Simulation sequence that specify how the decision and emulation models will be executed. -name::String: Name of the Simulation -steps::Int: Number of steps on which the sequence of models will be executed -models::SimulationModels: List of Decision and Emulation Models -simulation_folder::String: Folder on which results will be stored -initial_time::Union{Nothing, Dates.DateTime} = nothing: Initial time of which the simulation starts. If nothing it will default to the first timestamp of time series of the system.

Example

template_uc = template_unit_commitment()
+template_ed = template_economic_dispatch()
+my_decision_model_uc = DecisionModel(template_1, sys_uc, optimizer, name = "UC")
+my_decision_model_ed = DecisionModel(template_ed, sys_ed, optimizer, name = "ED")
+models = SimulationModels(
+    decision_models = [
+        my_decision_model_uc,
+        my_decision_model_ed
+    ]
+)
+# The following sequence set the commitment variables (`OnVariable`) for `ThermalStandard` units from UC to ED.
+sequence = SimulationSequence(;
+    models = models,
+    feedforwards = Dict(
+        "ED" => [
+            SemiContinuousFeedforward(;
+                component_type = ThermalStandard,
+                source = OnVariable,
+                affected_values = [ActivePowerVariable],
+            ),
+        ],
+    ),
+)
+
+sim = Simulation(
+    sequence = sequence,
+    name = "Sim",
+    steps = 5,
+    models = models,
+    simulation_folder = mktempdir(cleanup=true),
+)
source
PowerSimulations.SimulationMethod
Simulation(directory::AbstractString, model_info::Dict)
+

Constructs Simulation from a serialized directory. Callers should pass any kwargs here that they passed to the original Simulation.

Arguments

  • directory::AbstractString: the directory returned from the call to serialize
  • model_info::Dict: Two-level dictionary containing model parameters that cannot be serialized. The outer dict should be keyed by the problem name. The inner dict must contain 'optimizer' and may contain 'jump_model'. These should be the same values used for the original simulation.
source
PowerSimulations.build!Method
build!(
+    sim::Simulation;
+    recorders,
+    console_level,
+    file_level,
+    serialize,
+    partitions,
+    index
+) -> BuildStatus
+

Build the Simulation, problems and the related folder structure.

Arguments

  • sim::Simulation: simulation object
  • recorders::Vector{Symbol} = []: recorder names to register
  • serialize::Bool = true: serializes the simulation objects in the simulation
  • console_level = Logging.Error:
  • file_level = Logging.Info:
source
PowerSimulations.execute!Method
execute!(sim::Simulation; kwargs...) -> RunStatus
+

Solves the simulation model for sequential Simulations.

Arguments

  • sim::Simulation=sim: simulation object created by Simulation()

The optional keyword argument exports controls exporting of results to CSV files as the simulation runs. Refer to export_results for a description of this argument.

Example

sim = Simulation("Test", 7, problems, "/Users/folder")
+execute!(sim::Simulation; kwargs...)
source
  + 

Variables

For a list of variables for each device refer to its Formulations page.

Common Variables

Thermal Unit Variables

Storage Unit Variables

Branches and Network Variables

Regulation and Services Variables

Missing docstring.

Missing docstring for ServiceRequirementVariable. Check Documenter's build log for details.

Missing docstring.

Missing docstring for DeltaActivePowerUpVariable. Check Documenter's build log for details.

Missing docstring.

Missing docstring for DeltaActivePowerDownVariable. Check Documenter's build log for details.

Missing docstring.

Missing docstring for AdditionalDeltaActivePowerUpVariable. Check Documenter's build log for details.

Missing docstring.

Missing docstring for AdditionalDeltaActivePowerDownVariable. Check Documenter's build log for details.

Missing docstring.

Missing docstring for AreaMismatchVariable. Check Documenter's build log for details.

Missing docstring.

Missing docstring for SteadyStateFrequencyDeviation. Check Documenter's build log for details.

Missing docstring.

Missing docstring for SmoothACE. Check Documenter's build log for details.

Missing docstring.

Missing docstring for SystemBalanceSlackUp. Check Documenter's build log for details.

Missing docstring.

Missing docstring for SystemBalanceSlackDown. Check Documenter's build log for details.

Missing docstring.

Missing docstring for ReserveRequirementSlack. Check Documenter's build log for details.

  + 

Constraints

Common Constraints

Missing docstring.

Missing docstring for PieceWiseLinearCostConstraint. Check Documenter's build log for details.

Network Constraints

Missing docstring.

Missing docstring for AreaDispatchBalanceConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for AreaParticipationAssignmentConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for BalanceAuxConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for CopperPlateBalanceConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for FrequencyResponseConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for NodalBalanceActiveConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for NodalBalanceReactiveConstraint. Check Documenter's build log for details.

Power Variable Limit Constraints

Missing docstring.

Missing docstring for ActivePowerVariableLimitsConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for ReactivePowerVariableLimitsConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for ActivePowerVariableTimeSeriesLimitsConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for InputActivePowerVariableLimitsConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for OutputActivePowerVariableLimitsConstraint. Check Documenter's build log for details.

Regulation and Services Constraints

Missing docstring.

Missing docstring for ParticipationAssignmentConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for RegulationLimitsConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for RequirementConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for ReserveEnergyCoverageConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for ReservePowerConstraint. Check Documenter's build log for details.

Thermal Unit Constraints

Missing docstring.

Missing docstring for ActiveRangeICConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for CommitmentConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for DurationConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for RampConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for RampLimitConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for StartupInitialConditionConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for StartupTimeLimitTemperatureConstraint. Check Documenter's build log for details.

Renewable Unit Constraints

Missing docstring.

Missing docstring for EqualityConstraint. Check Documenter's build log for details.

Branches Constraints

Missing docstring.

Missing docstring for AbsoluteValueConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for FlowLimitFromToConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for FlowLimitToFromConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for FlowRateConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for FlowRateConstraintFromTo. Check Documenter's build log for details.

Missing docstring.

Missing docstring for FlowRateConstraintToFrom. Check Documenter's build log for details.

Missing docstring.

Missing docstring for HVDCDirection. Check Documenter's build log for details.

Missing docstring.

Missing docstring for HVDCLossesAbsoluteValue. Check Documenter's build log for details.

Missing docstring.

Missing docstring for HVDCPowerBalance. Check Documenter's build log for details.

Missing docstring.

Missing docstring for NetworkFlowConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for RateLimitConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for RateLimitConstraintFromTo. Check Documenter's build log for details.

Missing docstring.

Missing docstring for RateLimitConstraintToFrom. Check Documenter's build log for details.

Missing docstring.

Missing docstring for PhaseAngleControlLimit. Check Documenter's build log for details.

Feedforward Constraints

Missing docstring.

Missing docstring for FeedforwardSemiContinousConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for FeedforwardIntegralLimitConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for FeedforwardUpperBoundConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for FeedforwardLowerBoundConstraint. Check Documenter's build log for details.

Missing docstring.

Missing docstring for FeedforwardEnergyTargetConstraint. Check Documenter's build log for details.

Parameters

Time Series Parameters

Variable Value Parameters

Missing docstring.

Missing docstring for EnergyLimitParameter. Check Documenter's build log for details.

Missing docstring.

Missing docstring for EnergyTargetParameter. Check Documenter's build log for details.

Objective Function Parameters

diff --git a/v0.27.5/assets/documenter.js b/v0.27.5/assets/documenter.js new file mode 100644 index 0000000000..6adfbbbf4b --- /dev/null +++ b/v0.27.5/assets/documenter.js @@ -0,0 +1,331 @@ +// Generated by Documenter.jl +requirejs.config({ + paths: { + 'highlight-julia': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/languages/julia.min', + 'headroom': 'https://cdnjs.cloudflare.com/ajax/libs/headroom/0.12.0/headroom.min', + 'jqueryui': 'https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min', + 'katex-auto-render': 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.13.24/contrib/auto-render.min', + 'jquery': 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min', + 'headroom-jquery': 'https://cdnjs.cloudflare.com/ajax/libs/headroom/0.12.0/jQuery.headroom.min', + 'katex': 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.13.24/katex.min', + 'highlight': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/highlight.min', + 'highlight-julia-repl': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/languages/julia-repl.min', + }, + shim: { + "highlight-julia": { + "deps": [ + "highlight" + ] + }, + "katex-auto-render": { + "deps": [ + "katex" + ] + }, + "headroom-jquery": { + "deps": [ + "jquery", + "headroom" + ] + }, + "highlight-julia-repl": { + "deps": [ + "highlight" + ] + } +} +}); +//////////////////////////////////////////////////////////////////////////////// +require(['jquery', 'katex', 'katex-auto-render'], function($, katex, renderMathInElement) { +$(document).ready(function() { + renderMathInElement( + document.body, + { + "delimiters": [ + { + "left": "$", + "right": "$", + "display": false + }, + { + "left": "$$", + "right": "$$", + "display": true + }, + { + "left": "\\[", + "right": "\\]", + "display": true + } + ] +} + + ); +}) + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery', 'highlight', 'highlight-julia', 'highlight-julia-repl'], function($) { +$(document).ready(function() { + hljs.highlightAll(); +}) + +}) +//////////////////////////////////////////////////////////////////////////////// +require([], function() { +function addCopyButtonCallbacks() { + for (const el of document.getElementsByTagName("pre")) { + const button = document.createElement("button"); + button.classList.add("copy-button", "fas", "fa-copy"); + el.appendChild(button); + + const success = function () { + button.classList.add("success", "fa-check"); + button.classList.remove("fa-copy"); + }; + + const failure = function () { + button.classList.add("error", "fa-times"); + button.classList.remove("fa-copy"); + }; + + button.addEventListener("click", function () { + copyToClipboard(el.innerText).then(success, failure); + + setTimeout(function () { + button.classList.add("fa-copy"); + button.classList.remove("success", "fa-check", "fa-times"); + }, 5000); + }); + } +} + +function copyToClipboard(text) { + // clipboard API is only available in secure contexts + if (window.navigator && window.navigator.clipboard) { + return window.navigator.clipboard.writeText(text); + } else { + return new Promise(function (resolve, reject) { + try { + const el = document.createElement("textarea"); + el.textContent = text; + el.style.position = "fixed"; + el.style.opacity = 0; + document.body.appendChild(el); + el.select(); + document.execCommand("copy"); + + resolve(); + } catch (err) { + reject(err); + } finally { + document.body.removeChild(el); + } + }); + } +} + +if (document.readyState === "loading") { + document.addEventListener("DOMContentLoaded", addCopyButtonCallbacks); +} else { + addCopyButtonCallbacks(); +} + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery', 'headroom', 'headroom-jquery'], function($, Headroom) { + +// Manages the top navigation bar (hides it when the user starts scrolling down on the +// mobile). +window.Headroom = Headroom; // work around buggy module loading? +$(document).ready(function() { + $('#documenter .docs-navbar').headroom({ + "tolerance": {"up": 10, "down": 10}, + }); +}) + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery'], function($) { + +// Modal settings dialog +$(document).ready(function() { + var settings = $('#documenter-settings'); + $('#documenter-settings-button').click(function(){ + settings.toggleClass('is-active'); + }); + // Close the dialog if X is clicked + $('#documenter-settings button.delete').click(function(){ + settings.removeClass('is-active'); + }); + // Close dialog if ESC is pressed + $(document).keyup(function(e) { + if (e.keyCode == 27) settings.removeClass('is-active'); + }); +}); + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery'], function($) { + +// Manages the showing and hiding of the sidebar. +$(document).ready(function() { + var sidebar = $("#documenter > .docs-sidebar"); + var sidebar_button = $("#documenter-sidebar-button") + sidebar_button.click(function(ev) { + ev.preventDefault(); + sidebar.toggleClass('visible'); + if (sidebar.hasClass('visible')) { + // Makes sure that the current menu item is visible in the sidebar. + $("#documenter .docs-menu a.is-active").focus(); + } + }); + $("#documenter > .docs-main").bind('click', function(ev) { + if ($(ev.target).is(sidebar_button)) { + return; + } + if (sidebar.hasClass('visible')) { + sidebar.removeClass('visible'); + } + }); +}) + +// Resizes the package name / sitename in the sidebar if it is too wide. +// Inspired by: https://github.com/davatron5000/FitText.js +$(document).ready(function() { + e = $("#documenter .docs-autofit"); + function resize() { + var L = parseInt(e.css('max-width'), 10); + var L0 = e.width(); + if(L0 > L) { + var h0 = parseInt(e.css('font-size'), 10); + e.css('font-size', L * h0 / L0); + // TODO: make sure it survives resizes? + } + } + // call once and then register events + resize(); + $(window).resize(resize); + $(window).on('orientationchange', resize); +}); + +// Scroll the navigation bar to the currently selected menu item +$(document).ready(function() { + var sidebar = $("#documenter .docs-menu").get(0); + var active = $("#documenter .docs-menu .is-active").get(0); + if(typeof active !== 'undefined') { + sidebar.scrollTop = active.offsetTop - sidebar.offsetTop - 15; + } +}) + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery'], function($) { + +function set_theme(theme) { + var active = null; + var disabled = []; + for (var i = 0; i < document.styleSheets.length; i++) { + var ss = document.styleSheets[i]; + var themename = ss.ownerNode.getAttribute("data-theme-name"); + if(themename === null) continue; // ignore non-theme stylesheets + // Find the active theme + if(themename === theme) active = ss; + else disabled.push(ss); + } + if(active !== null) { + active.disabled = false; + if(active.ownerNode.getAttribute("data-theme-primary") === null) { + document.getElementsByTagName('html')[0].className = "theme--" + theme; + } else { + document.getElementsByTagName('html')[0].className = ""; + } + disabled.forEach(function(ss){ + ss.disabled = true; + }); + } + + // Store the theme in localStorage + if(typeof(window.localStorage) !== "undefined") { + window.localStorage.setItem("documenter-theme", theme); + } else { + console.error("Browser does not support window.localStorage"); + } +} + +// Theme picker setup +$(document).ready(function() { + // onchange callback + $('#documenter-themepicker').change(function themepick_callback(ev){ + var themename = $('#documenter-themepicker option:selected').attr('value'); + set_theme(themename); + }); + + // Make sure that the themepicker displays the correct theme when the theme is retrieved + // from localStorage + if(typeof(window.localStorage) !== "undefined") { + var theme = window.localStorage.getItem("documenter-theme"); + if(theme !== null) { + $('#documenter-themepicker option').each(function(i,e) { + e.selected = (e.value === theme); + }) + } else { + $('#documenter-themepicker option').each(function(i,e) { + e.selected = $("html").hasClass(`theme--${e.value}`); + }) + } + } +}) + +}) +//////////////////////////////////////////////////////////////////////////////// +require(['jquery'], function($) { + +// update the version selector with info from the siteinfo.js and ../versions.js files +$(document).ready(function() { + // If the version selector is disabled with DOCUMENTER_VERSION_SELECTOR_DISABLED in the + // siteinfo.js file, we just return immediately and not display the version selector. + if (typeof DOCUMENTER_VERSION_SELECTOR_DISABLED === 'boolean' && DOCUMENTER_VERSION_SELECTOR_DISABLED) { + return; + } + + var version_selector = $("#documenter .docs-version-selector"); + var version_selector_select = $("#documenter .docs-version-selector select"); + + version_selector_select.change(function(x) { + target_href = version_selector_select.children("option:selected").get(0).value; + window.location.href = target_href; + }); + + // add the current version to the selector based on siteinfo.js, but only if the selector is empty + if (typeof DOCUMENTER_CURRENT_VERSION !== 'undefined' && $('#version-selector > option').length == 0) { + var option = $(""); + version_selector_select.append(option); + } + + if (typeof DOC_VERSIONS !== 'undefined') { + var existing_versions = version_selector_select.children("option"); + var existing_versions_texts = existing_versions.map(function(i,x){return x.text}); + DOC_VERSIONS.forEach(function(each) { + var version_url = documenterBaseURL + "/../" + each; + var existing_id = $.inArray(each, existing_versions_texts); + // if not already in the version selector, add it as a new option, + // otherwise update the old option with the URL and enable it + if (existing_id == -1) { + var option = $(""); + version_selector_select.append(option); + } else { + var option = existing_versions[existing_id]; + option.value = version_url; + option.disabled = false; + } + }); + } + + // only show the version selector if the selector has been populated + if (version_selector_select.children("option").length > 0) { + version_selector.toggleClass("visible"); + } +}) + +}) diff --git a/v0.27.5/assets/logo.png b/v0.27.5/assets/logo.png new file mode 100644 index 0000000000..c0c5d7d594 Binary files /dev/null and b/v0.27.5/assets/logo.png differ diff --git a/v0.27.5/assets/search.js b/v0.27.5/assets/search.js new file mode 100644 index 0000000000..c133f74101 --- /dev/null +++ b/v0.27.5/assets/search.js @@ -0,0 +1,267 @@ +// Generated by Documenter.jl +requirejs.config({ + paths: { + 'lunr': 'https://cdnjs.cloudflare.com/ajax/libs/lunr.js/2.3.9/lunr.min', + 'lodash': 'https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.21/lodash.min', + 'jquery': 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min', + } +}); +//////////////////////////////////////////////////////////////////////////////// +require(['jquery', 'lunr', 'lodash'], function($, lunr, _) { + +$(document).ready(function() { + // parseUri 1.2.2 + // (c) Steven Levithan + // MIT License + function parseUri (str) { + var o = parseUri.options, + m = o.parser[o.strictMode ? "strict" : "loose"].exec(str), + uri = {}, + i = 14; + + while (i--) uri[o.key[i]] = m[i] || ""; + + uri[o.q.name] = {}; + uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) { + if ($1) uri[o.q.name][$1] = $2; + }); + + return uri; + }; + parseUri.options = { + strictMode: false, + key: ["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"], + q: { + name: "queryKey", + parser: /(?:^|&)([^&=]*)=?([^&]*)/g + }, + parser: { + strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/, + loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/ + } + }; + + $("#search-form").submit(function(e) { + e.preventDefault() + }) + + // list below is the lunr 2.1.3 list minus the intersect with names(Base) + // (all, any, get, in, is, only, which) and (do, else, for, let, where, while, with) + // ideally we'd just filter the original list but it's not available as a variable + lunr.stopWordFilter = lunr.generateStopWordFilter([ + 'a', + 'able', + 'about', + 'across', + 'after', + 'almost', + 'also', + 'am', + 'among', + 'an', + 'and', + 'are', + 'as', + 'at', + 'be', + 'because', + 'been', + 'but', + 'by', + 'can', + 'cannot', + 'could', + 'dear', + 'did', + 'does', + 'either', + 'ever', + 'every', + 'from', + 'got', + 'had', + 'has', + 'have', + 'he', + 'her', + 'hers', + 'him', + 'his', + 'how', + 'however', + 'i', + 'if', + 'into', + 'it', + 'its', + 'just', + 'least', + 'like', + 'likely', + 'may', + 'me', + 'might', + 'most', + 'must', + 'my', + 'neither', + 'no', + 'nor', + 'not', + 'of', + 'off', + 'often', + 'on', + 'or', + 'other', + 'our', + 'own', + 'rather', + 'said', + 'say', + 'says', + 'she', + 'should', + 'since', + 'so', + 'some', + 'than', + 'that', + 'the', + 'their', + 'them', + 'then', + 'there', + 'these', + 'they', + 'this', + 'tis', + 'to', + 'too', + 'twas', + 'us', + 'wants', + 'was', + 'we', + 'were', + 'what', + 'when', + 'who', + 'whom', + 'why', + 'will', + 'would', + 'yet', + 'you', + 'your' + ]) + + // add . as a separator, because otherwise "title": "Documenter.Anchors.add!" + // would not find anything if searching for "add!", only for the entire qualification + lunr.tokenizer.separator = /[\s\-\.]+/ + + // custom trimmer that doesn't strip @ and !, which are used in julia macro and function names + lunr.trimmer = function (token) { + return token.update(function (s) { + return s.replace(/^[^a-zA-Z0-9@!]+/, '').replace(/[^a-zA-Z0-9@!]+$/, '') + }) + } + + lunr.Pipeline.registerFunction(lunr.stopWordFilter, 'juliaStopWordFilter') + lunr.Pipeline.registerFunction(lunr.trimmer, 'juliaTrimmer') + + var index = lunr(function () { + this.ref('location') + this.field('title',{boost: 100}) + this.field('text') + documenterSearchIndex['docs'].forEach(function(e) { + this.add(e) + }, this) + }) + var store = {} + + documenterSearchIndex['docs'].forEach(function(e) { + store[e.location] = {title: e.title, category: e.category, page: e.page} + }) + + $(function(){ + searchresults = $('#documenter-search-results'); + searchinfo = $('#documenter-search-info'); + searchbox = $('#documenter-search-query'); + searchform = $('.docs-search'); + sidebar = $('.docs-sidebar'); + function update_search(querystring) { + tokens = lunr.tokenizer(querystring) + results = index.query(function (q) { + tokens.forEach(function (t) { + q.term(t.toString(), { + fields: ["title"], + boost: 100, + usePipeline: true, + editDistance: 0, + wildcard: lunr.Query.wildcard.NONE + }) + q.term(t.toString(), { + fields: ["title"], + boost: 10, + usePipeline: true, + editDistance: 2, + wildcard: lunr.Query.wildcard.NONE + }) + q.term(t.toString(), { + fields: ["text"], + boost: 1, + usePipeline: true, + editDistance: 0, + wildcard: lunr.Query.wildcard.NONE + }) + }) + }) + searchinfo.text("Number of results: " + results.length) + searchresults.empty() + results.forEach(function(result) { + data = store[result.ref] + link = $(''+data.title+'') + link.attr('href', documenterBaseURL+'/'+result.ref) + if (data.category != "page"){ + cat = $('('+data.category+', '+data.page+')') + } else { + cat = $('('+data.category+')') + } + li = $('
  • ').append(link).append(" ").append(cat) + searchresults.append(li) + }) + } + + function update_search_box() { + querystring = searchbox.val() + update_search(querystring) + } + + searchbox.keyup(_.debounce(update_search_box, 250)) + searchbox.change(update_search_box) + + // Disable enter-key form submission for the searchbox on the search page + // and just re-run search rather than refresh the whole page. + searchform.keypress( + function(event){ + if (event.which == '13') { + if (sidebar.hasClass('visible')) { + sidebar.removeClass('visible'); + } + update_search_box(); + event.preventDefault(); + } + } + ); + + search_query_uri = parseUri(window.location).queryKey["q"] + if(search_query_uri !== undefined) { + search_query = decodeURIComponent(search_query_uri.replace(/\+/g, '%20')) + searchbox.val(search_query) + } + update_search_box(); + }) +}) + +}) diff --git a/v0.27.5/assets/themes/documenter-dark.css b/v0.27.5/assets/themes/documenter-dark.css new file mode 100644 index 0000000000..c94a294dcf --- /dev/null +++ b/v0.27.5/assets/themes/documenter-dark.css @@ -0,0 +1,7 @@ +@keyframes spinAround{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}html.theme--documenter-dark .tabs,html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-ellipsis,html.theme--documenter-dark .breadcrumb,html.theme--documenter-dark .file,html.theme--documenter-dark .button,.is-unselectable,html.theme--documenter-dark .modal-close,html.theme--documenter-dark .delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html.theme--documenter-dark .navbar-link:not(.is-arrowless)::after,html.theme--documenter-dark .select:not(.is-multiple):not(.is-loading)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}html.theme--documenter-dark .admonition:not(:last-child),html.theme--documenter-dark .tabs:not(:last-child),html.theme--documenter-dark .message:not(:last-child),html.theme--documenter-dark .list:not(:last-child),html.theme--documenter-dark .level:not(:last-child),html.theme--documenter-dark .breadcrumb:not(:last-child),html.theme--documenter-dark .highlight:not(:last-child),html.theme--documenter-dark .block:not(:last-child),html.theme--documenter-dark .title:not(:last-child),html.theme--documenter-dark .subtitle:not(:last-child),html.theme--documenter-dark .table-container:not(:last-child),html.theme--documenter-dark .table:not(:last-child),html.theme--documenter-dark .progress:not(:last-child),html.theme--documenter-dark .notification:not(:last-child),html.theme--documenter-dark .content:not(:last-child),html.theme--documenter-dark .box:not(:last-child){margin-bottom:1.5rem}html.theme--documenter-dark .modal-close,html.theme--documenter-dark .delete{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,0.2);border:none;border-radius:290486px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}html.theme--documenter-dark .modal-close::before,html.theme--documenter-dark .delete::before,html.theme--documenter-dark .modal-close::after,html.theme--documenter-dark .delete::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--documenter-dark .modal-close::before,html.theme--documenter-dark .delete::before{height:2px;width:50%}html.theme--documenter-dark .modal-close::after,html.theme--documenter-dark .delete::after{height:50%;width:2px}html.theme--documenter-dark .modal-close:hover,html.theme--documenter-dark .delete:hover,html.theme--documenter-dark .modal-close:focus,html.theme--documenter-dark .delete:focus{background-color:rgba(10,10,10,0.3)}html.theme--documenter-dark .modal-close:active,html.theme--documenter-dark .delete:active{background-color:rgba(10,10,10,0.4)}html.theme--documenter-dark .is-small.modal-close,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.modal-close,html.theme--documenter-dark .is-small.delete,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}html.theme--documenter-dark .is-medium.modal-close,html.theme--documenter-dark .is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}html.theme--documenter-dark .is-large.modal-close,html.theme--documenter-dark .is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}html.theme--documenter-dark .control.is-loading::after,html.theme--documenter-dark .select.is-loading::after,html.theme--documenter-dark .loader,html.theme--documenter-dark .button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #dbdee0;border-radius:290486px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}html.theme--documenter-dark .hero-video,html.theme--documenter-dark .modal-background,html.theme--documenter-dark .modal,html.theme--documenter-dark .image.is-square img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--documenter-dark .image.is-square .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--documenter-dark .image.is-1by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--documenter-dark .image.is-1by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--documenter-dark .image.is-5by4 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--documenter-dark .image.is-5by4 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--documenter-dark .image.is-4by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--documenter-dark .image.is-4by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--documenter-dark .image.is-3by2 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--documenter-dark .image.is-3by2 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--documenter-dark .image.is-5by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--documenter-dark .image.is-5by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--documenter-dark .image.is-16by9 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--documenter-dark .image.is-16by9 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--documenter-dark .image.is-2by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--documenter-dark .image.is-2by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--documenter-dark .image.is-3by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--documenter-dark .image.is-3by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--documenter-dark .image.is-4by5 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--documenter-dark .image.is-4by5 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--documenter-dark .image.is-3by4 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--documenter-dark .image.is-3by4 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--documenter-dark .image.is-2by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--documenter-dark .image.is-2by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--documenter-dark .image.is-3by5 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--documenter-dark .image.is-3by5 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--documenter-dark .image.is-9by16 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--documenter-dark .image.is-9by16 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--documenter-dark .image.is-1by2 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--documenter-dark .image.is-1by2 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--documenter-dark .image.is-1by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--documenter-dark .image.is-1by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio,.is-overlay{bottom:0;left:0;position:absolute;right:0;top:0}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-ellipsis,html.theme--documenter-dark .file-cta,html.theme--documenter-dark .file-name,html.theme--documenter-dark .select select,html.theme--documenter-dark .textarea,html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark .button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:.4em;box-shadow:none;display:inline-flex;font-size:15px;height:2.25em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.375em - 1px);padding-left:calc(0.625em - 1px);padding-right:calc(0.625em - 1px);padding-top:calc(0.375em - 1px);position:relative;vertical-align:top}html.theme--documenter-dark .pagination-previous:focus,html.theme--documenter-dark .pagination-next:focus,html.theme--documenter-dark .pagination-link:focus,html.theme--documenter-dark .pagination-ellipsis:focus,html.theme--documenter-dark .file-cta:focus,html.theme--documenter-dark .file-name:focus,html.theme--documenter-dark .select select:focus,html.theme--documenter-dark .textarea:focus,html.theme--documenter-dark .input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:focus,html.theme--documenter-dark .button:focus,html.theme--documenter-dark .is-focused.pagination-previous,html.theme--documenter-dark .is-focused.pagination-next,html.theme--documenter-dark .is-focused.pagination-link,html.theme--documenter-dark .is-focused.pagination-ellipsis,html.theme--documenter-dark .is-focused.file-cta,html.theme--documenter-dark .is-focused.file-name,html.theme--documenter-dark .select select.is-focused,html.theme--documenter-dark .is-focused.textarea,html.theme--documenter-dark .is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-focused.button,html.theme--documenter-dark .pagination-previous:active,html.theme--documenter-dark .pagination-next:active,html.theme--documenter-dark .pagination-link:active,html.theme--documenter-dark .pagination-ellipsis:active,html.theme--documenter-dark .file-cta:active,html.theme--documenter-dark .file-name:active,html.theme--documenter-dark .select select:active,html.theme--documenter-dark .textarea:active,html.theme--documenter-dark .input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:active,html.theme--documenter-dark .button:active,html.theme--documenter-dark .is-active.pagination-previous,html.theme--documenter-dark .is-active.pagination-next,html.theme--documenter-dark .is-active.pagination-link,html.theme--documenter-dark .is-active.pagination-ellipsis,html.theme--documenter-dark .is-active.file-cta,html.theme--documenter-dark .is-active.file-name,html.theme--documenter-dark .select select.is-active,html.theme--documenter-dark .is-active.textarea,html.theme--documenter-dark .is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--documenter-dark .is-active.button{outline:none}html.theme--documenter-dark .pagination-previous[disabled],html.theme--documenter-dark .pagination-next[disabled],html.theme--documenter-dark .pagination-link[disabled],html.theme--documenter-dark .pagination-ellipsis[disabled],html.theme--documenter-dark .file-cta[disabled],html.theme--documenter-dark .file-name[disabled],html.theme--documenter-dark .select select[disabled],html.theme--documenter-dark .textarea[disabled],html.theme--documenter-dark .input[disabled],html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled],html.theme--documenter-dark .button[disabled],fieldset[disabled] html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark fieldset[disabled] .pagination-previous,fieldset[disabled] html.theme--documenter-dark .pagination-next,html.theme--documenter-dark fieldset[disabled] .pagination-next,fieldset[disabled] html.theme--documenter-dark .pagination-link,html.theme--documenter-dark fieldset[disabled] .pagination-link,fieldset[disabled] html.theme--documenter-dark .pagination-ellipsis,html.theme--documenter-dark fieldset[disabled] .pagination-ellipsis,fieldset[disabled] html.theme--documenter-dark .file-cta,html.theme--documenter-dark fieldset[disabled] .file-cta,fieldset[disabled] html.theme--documenter-dark .file-name,html.theme--documenter-dark fieldset[disabled] .file-name,fieldset[disabled] html.theme--documenter-dark .select select,fieldset[disabled] html.theme--documenter-dark .textarea,fieldset[disabled] html.theme--documenter-dark .input,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark fieldset[disabled] .select select,html.theme--documenter-dark .select fieldset[disabled] select,html.theme--documenter-dark fieldset[disabled] .textarea,html.theme--documenter-dark fieldset[disabled] .input,html.theme--documenter-dark fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar fieldset[disabled] form.docs-search>input,fieldset[disabled] html.theme--documenter-dark .button,html.theme--documenter-dark fieldset[disabled] .button{cursor:not-allowed}/*! minireset.css v0.0.4 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,embed,iframe,object,video{height:auto;max-width:100%}audio{max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:left}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-clipped{overflow:hidden !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:15px !important}.is-size-7,html.theme--documenter-dark .docstring>section>a.docs-sourcelink{font-size:.85em !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:15px !important}.is-size-7-mobile{font-size:.85em !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:15px !important}.is-size-7-tablet{font-size:.85em !important}}@media screen and (max-width: 1055px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:15px !important}.is-size-7-touch{font-size:.85em !important}}@media screen and (min-width: 1056px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:15px !important}.is-size-7-desktop{font-size:.85em !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:15px !important}.is-size-7-widescreen{font-size:.85em !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:15px !important}.is-size-7-fullhd{font-size:.85em !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1055px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1056px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1055px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1056px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1055px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1056px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1055px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1056px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#ecf0f1 !important}a.has-text-light:hover,a.has-text-light:focus{color:#cfd9db !important}.has-background-light{background-color:#ecf0f1 !important}.has-text-dark{color:#282f2f !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#111414 !important}.has-background-dark{background-color:#282f2f !important}.has-text-primary{color:#375a7f !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#28415b !important}.has-background-primary{background-color:#375a7f !important}.has-text-link{color:#1abc9c !important}a.has-text-link:hover,a.has-text-link:focus{color:#148f77 !important}.has-background-link{background-color:#1abc9c !important}.has-text-info{color:#024c7d !important}a.has-text-info:hover,a.has-text-info:focus{color:#012d4b !important}.has-background-info{background-color:#024c7d !important}.has-text-success{color:#008438 !important}a.has-text-success:hover,a.has-text-success:focus{color:#005122 !important}.has-background-success{background-color:#008438 !important}.has-text-warning{color:#ad8100 !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#7a5b00 !important}.has-background-warning{background-color:#ad8100 !important}.has-text-danger{color:#9e1b0d !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#6f1309 !important}.has-background-danger{background-color:#9e1b0d !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#282f2f !important}.has-background-grey-darker{background-color:#282f2f !important}.has-text-grey-dark{color:#343c3d !important}.has-background-grey-dark{background-color:#343c3d !important}.has-text-grey{color:#5e6d6f !important}.has-background-grey{background-color:#5e6d6f !important}.has-text-grey-light{color:#8c9b9d !important}.has-background-grey-light{background-color:#8c9b9d !important}.has-text-grey-lighter{color:#dbdee0 !important}.has-background-grey-lighter{background-color:#dbdee0 !important}.has-text-white-ter{color:#ecf0f1 !important}.has-background-white-ter{background-color:#ecf0f1 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-secondary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-family-code{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1055px){.is-block-touch{display:block !important}}@media screen and (min-width: 1056px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1055px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1056px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1055px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1056px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1055px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1056px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1055px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1056px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1055px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1056px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1055px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1056px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-relative{position:relative !important}html.theme--documenter-dark{/*! + Theme: a11y-dark + Author: @ericwbailey + Maintainer: @ericwbailey + + Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css +*/}html.theme--documenter-dark html{background-color:#1f2424;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--documenter-dark article,html.theme--documenter-dark aside,html.theme--documenter-dark figure,html.theme--documenter-dark footer,html.theme--documenter-dark header,html.theme--documenter-dark hgroup,html.theme--documenter-dark section{display:block}html.theme--documenter-dark body,html.theme--documenter-dark button,html.theme--documenter-dark input,html.theme--documenter-dark select,html.theme--documenter-dark textarea{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}html.theme--documenter-dark code,html.theme--documenter-dark pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}html.theme--documenter-dark body{color:#fff;font-size:1em;font-weight:400;line-height:1.5}html.theme--documenter-dark a{color:#1abc9c;cursor:pointer;text-decoration:none}html.theme--documenter-dark a strong{color:currentColor}html.theme--documenter-dark a:hover{color:#1dd2af}html.theme--documenter-dark code{background-color:rgba(255,255,255,0.05);color:#ececec;font-size:.875em;font-weight:normal;padding:.1em}html.theme--documenter-dark hr{background-color:#282f2f;border:none;display:block;height:2px;margin:1.5rem 0}html.theme--documenter-dark img{height:auto;max-width:100%}html.theme--documenter-dark input[type="checkbox"],html.theme--documenter-dark input[type="radio"]{vertical-align:baseline}html.theme--documenter-dark small{font-size:.875em}html.theme--documenter-dark span{font-style:inherit;font-weight:inherit}html.theme--documenter-dark strong{color:#f2f2f2;font-weight:700}html.theme--documenter-dark fieldset{border:none}html.theme--documenter-dark pre{-webkit-overflow-scrolling:touch;background-color:#282f2f;color:#fff;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}html.theme--documenter-dark pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}html.theme--documenter-dark table td,html.theme--documenter-dark table th{vertical-align:top}html.theme--documenter-dark table td:not([align]),html.theme--documenter-dark table th:not([align]){text-align:left}html.theme--documenter-dark table th{color:#f2f2f2}html.theme--documenter-dark .box{background-color:#343c3d;border-radius:8px;box-shadow:none;color:#fff;display:block;padding:1.25rem}html.theme--documenter-dark a.box:hover,html.theme--documenter-dark a.box:focus{box-shadow:0 2px 3px rgba(10,10,10,0.1),0 0 0 1px #1abc9c}html.theme--documenter-dark a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2),0 0 0 1px #1abc9c}html.theme--documenter-dark .button{background-color:#282f2f;border-color:#4c5759;border-width:1px;color:#375a7f;cursor:pointer;justify-content:center;padding-bottom:calc(0.375em - 1px);padding-left:.75em;padding-right:.75em;padding-top:calc(0.375em - 1px);text-align:center;white-space:nowrap}html.theme--documenter-dark .button strong{color:inherit}html.theme--documenter-dark .button .icon,html.theme--documenter-dark .button .icon.is-small,html.theme--documenter-dark .button #documenter .docs-sidebar form.docs-search>input.icon,html.theme--documenter-dark #documenter .docs-sidebar .button form.docs-search>input.icon,html.theme--documenter-dark .button .icon.is-medium,html.theme--documenter-dark .button .icon.is-large{height:1.5em;width:1.5em}html.theme--documenter-dark .button .icon:first-child:not(:last-child){margin-left:calc(-0.375em - 1px);margin-right:0.1875em}html.theme--documenter-dark .button .icon:last-child:not(:first-child){margin-left:0.1875em;margin-right:calc(-0.375em - 1px)}html.theme--documenter-dark .button .icon:first-child:last-child{margin-left:calc(-0.375em - 1px);margin-right:calc(-0.375em - 1px)}html.theme--documenter-dark .button:hover,html.theme--documenter-dark .button.is-hovered{border-color:#8c9b9d;color:#f2f2f2}html.theme--documenter-dark .button:focus,html.theme--documenter-dark .button.is-focused{border-color:#8c9b9d;color:#17a689}html.theme--documenter-dark .button:focus:not(:active),html.theme--documenter-dark .button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .button:active,html.theme--documenter-dark .button.is-active{border-color:#343c3d;color:#f2f2f2}html.theme--documenter-dark .button.is-text{background-color:transparent;border-color:transparent;color:#fff;text-decoration:underline}html.theme--documenter-dark .button.is-text:hover,html.theme--documenter-dark .button.is-text.is-hovered,html.theme--documenter-dark .button.is-text:focus,html.theme--documenter-dark .button.is-text.is-focused{background-color:#282f2f;color:#f2f2f2}html.theme--documenter-dark .button.is-text:active,html.theme--documenter-dark .button.is-text.is-active{background-color:#1d2122;color:#f2f2f2}html.theme--documenter-dark .button.is-text[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}html.theme--documenter-dark .button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .button.is-white:hover,html.theme--documenter-dark .button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .button.is-white:focus,html.theme--documenter-dark .button.is-white.is-focused{border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .button.is-white:focus:not(:active),html.theme--documenter-dark .button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--documenter-dark .button.is-white:active,html.theme--documenter-dark .button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .button.is-white[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-white{background-color:#fff;border-color:transparent;box-shadow:none}html.theme--documenter-dark .button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .button.is-white.is-inverted:hover,html.theme--documenter-dark .button.is-white.is-inverted.is-hovered{background-color:#000}html.theme--documenter-dark .button.is-white.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--documenter-dark .button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-white.is-outlined:hover,html.theme--documenter-dark .button.is-white.is-outlined.is-hovered,html.theme--documenter-dark .button.is-white.is-outlined:focus,html.theme--documenter-dark .button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--documenter-dark .button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-white.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-white.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-white.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--documenter-dark .button.is-white.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--documenter-dark .button.is-white.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--documenter-dark .button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-black:hover,html.theme--documenter-dark .button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-black:focus,html.theme--documenter-dark .button.is-black.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-black:focus:not(:active),html.theme--documenter-dark .button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--documenter-dark .button.is-black:active,html.theme--documenter-dark .button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-black[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-black{background-color:#0a0a0a;border-color:transparent;box-shadow:none}html.theme--documenter-dark .button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-inverted:hover,html.theme--documenter-dark .button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-black.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-outlined:hover,html.theme--documenter-dark .button.is-black.is-outlined.is-hovered,html.theme--documenter-dark .button.is-black.is-outlined:focus,html.theme--documenter-dark .button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--documenter-dark .button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--documenter-dark .button.is-black.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-black.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-black.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-black.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-black.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}html.theme--documenter-dark .button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-light{background-color:#ecf0f1;border-color:transparent;color:#282f2f}html.theme--documenter-dark .button.is-light:hover,html.theme--documenter-dark .button.is-light.is-hovered{background-color:#e5eaec;border-color:transparent;color:#282f2f}html.theme--documenter-dark .button.is-light:focus,html.theme--documenter-dark .button.is-light.is-focused{border-color:transparent;color:#282f2f}html.theme--documenter-dark .button.is-light:focus:not(:active),html.theme--documenter-dark .button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(236,240,241,0.25)}html.theme--documenter-dark .button.is-light:active,html.theme--documenter-dark .button.is-light.is-active{background-color:#dde4e6;border-color:transparent;color:#282f2f}html.theme--documenter-dark .button.is-light[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-light{background-color:#ecf0f1;border-color:transparent;box-shadow:none}html.theme--documenter-dark .button.is-light.is-inverted{background-color:#282f2f;color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-inverted:hover,html.theme--documenter-dark .button.is-light.is-inverted.is-hovered{background-color:#1d2122}html.theme--documenter-dark .button.is-light.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-light.is-inverted{background-color:#282f2f;border-color:transparent;box-shadow:none;color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-loading::after{border-color:transparent transparent #282f2f #282f2f !important}html.theme--documenter-dark .button.is-light.is-outlined{background-color:transparent;border-color:#ecf0f1;color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-outlined:hover,html.theme--documenter-dark .button.is-light.is-outlined.is-hovered,html.theme--documenter-dark .button.is-light.is-outlined:focus,html.theme--documenter-dark .button.is-light.is-outlined.is-focused{background-color:#ecf0f1;border-color:#ecf0f1;color:#282f2f}html.theme--documenter-dark .button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #ecf0f1 #ecf0f1 !important}html.theme--documenter-dark .button.is-light.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-light.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-light.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #282f2f #282f2f !important}html.theme--documenter-dark .button.is-light.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-light.is-outlined{background-color:transparent;border-color:#ecf0f1;box-shadow:none;color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:#282f2f;color:#282f2f}html.theme--documenter-dark .button.is-light.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-focused{background-color:#282f2f;color:#ecf0f1}html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #ecf0f1 #ecf0f1 !important}html.theme--documenter-dark .button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:#282f2f;box-shadow:none;color:#282f2f}html.theme--documenter-dark .button.is-dark,html.theme--documenter-dark .content kbd.button{background-color:#282f2f;border-color:transparent;color:#ecf0f1}html.theme--documenter-dark .button.is-dark:hover,html.theme--documenter-dark .content kbd.button:hover,html.theme--documenter-dark .button.is-dark.is-hovered,html.theme--documenter-dark .content kbd.button.is-hovered{background-color:#232829;border-color:transparent;color:#ecf0f1}html.theme--documenter-dark .button.is-dark:focus,html.theme--documenter-dark .content kbd.button:focus,html.theme--documenter-dark .button.is-dark.is-focused,html.theme--documenter-dark .content kbd.button.is-focused{border-color:transparent;color:#ecf0f1}html.theme--documenter-dark .button.is-dark:focus:not(:active),html.theme--documenter-dark .content kbd.button:focus:not(:active),html.theme--documenter-dark .button.is-dark.is-focused:not(:active),html.theme--documenter-dark .content kbd.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(40,47,47,0.25)}html.theme--documenter-dark .button.is-dark:active,html.theme--documenter-dark .content kbd.button:active,html.theme--documenter-dark .button.is-dark.is-active,html.theme--documenter-dark .content kbd.button.is-active{background-color:#1d2122;border-color:transparent;color:#ecf0f1}html.theme--documenter-dark .button.is-dark[disabled],html.theme--documenter-dark .content kbd.button[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-dark,fieldset[disabled] html.theme--documenter-dark .content kbd.button{background-color:#282f2f;border-color:transparent;box-shadow:none}html.theme--documenter-dark .button.is-dark.is-inverted,html.theme--documenter-dark .content kbd.button.is-inverted{background-color:#ecf0f1;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-inverted:hover,html.theme--documenter-dark .content kbd.button.is-inverted:hover,html.theme--documenter-dark .button.is-dark.is-inverted.is-hovered,html.theme--documenter-dark .content kbd.button.is-inverted.is-hovered{background-color:#dde4e6}html.theme--documenter-dark .button.is-dark.is-inverted[disabled],html.theme--documenter-dark .content kbd.button.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-dark.is-inverted,fieldset[disabled] html.theme--documenter-dark .content kbd.button.is-inverted{background-color:#ecf0f1;border-color:transparent;box-shadow:none;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-loading::after,html.theme--documenter-dark .content kbd.button.is-loading::after{border-color:transparent transparent #ecf0f1 #ecf0f1 !important}html.theme--documenter-dark .button.is-dark.is-outlined,html.theme--documenter-dark .content kbd.button.is-outlined{background-color:transparent;border-color:#282f2f;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-outlined:hover,html.theme--documenter-dark .content kbd.button.is-outlined:hover,html.theme--documenter-dark .button.is-dark.is-outlined.is-hovered,html.theme--documenter-dark .content kbd.button.is-outlined.is-hovered,html.theme--documenter-dark .button.is-dark.is-outlined:focus,html.theme--documenter-dark .content kbd.button.is-outlined:focus,html.theme--documenter-dark .button.is-dark.is-outlined.is-focused,html.theme--documenter-dark .content kbd.button.is-outlined.is-focused{background-color:#282f2f;border-color:#282f2f;color:#ecf0f1}html.theme--documenter-dark .button.is-dark.is-outlined.is-loading::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading::after{border-color:transparent transparent #282f2f #282f2f !important}html.theme--documenter-dark .button.is-dark.is-outlined.is-loading:hover::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-dark.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-dark.is-outlined.is-loading:focus::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-dark.is-outlined.is-loading.is-focused::after,html.theme--documenter-dark .content kbd.button.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #ecf0f1 #ecf0f1 !important}html.theme--documenter-dark .button.is-dark.is-outlined[disabled],html.theme--documenter-dark .content kbd.button.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-dark.is-outlined,fieldset[disabled] html.theme--documenter-dark .content kbd.button.is-outlined{background-color:transparent;border-color:#282f2f;box-shadow:none;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#ecf0f1;color:#ecf0f1}html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined:hover,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined:focus,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-focused,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-focused{background-color:#ecf0f1;color:#282f2f}html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #282f2f #282f2f !important}html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined[disabled],html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined,fieldset[disabled] html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#ecf0f1;box-shadow:none;color:#ecf0f1}html.theme--documenter-dark .button.is-primary,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink{background-color:#375a7f;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-primary:hover,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:hover,html.theme--documenter-dark .button.is-primary.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-hovered.docs-sourcelink{background-color:#335476;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-primary:focus,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:focus,html.theme--documenter-dark .button.is-primary.is-focused,html.theme--documenter-dark .docstring>section>a.button.is-focused.docs-sourcelink{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-primary:focus:not(:active),html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:focus:not(:active),html.theme--documenter-dark .button.is-primary.is-focused:not(:active),html.theme--documenter-dark .docstring>section>a.button.is-focused.docs-sourcelink:not(:active){box-shadow:0 0 0 0.125em rgba(55,90,127,0.25)}html.theme--documenter-dark .button.is-primary:active,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:active,html.theme--documenter-dark .button.is-primary.is-active,html.theme--documenter-dark .docstring>section>a.button.is-active.docs-sourcelink{background-color:#2f4d6d;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-primary[disabled],html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-primary,fieldset[disabled] html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink{background-color:#375a7f;border-color:transparent;box-shadow:none}html.theme--documenter-dark .button.is-primary.is-inverted,html.theme--documenter-dark .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-inverted:hover,html.theme--documenter-dark .docstring>section>a.button.is-inverted.docs-sourcelink:hover,html.theme--documenter-dark .button.is-primary.is-inverted.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-hovered.docs-sourcelink{background-color:#f2f2f2}html.theme--documenter-dark .button.is-primary.is-inverted[disabled],html.theme--documenter-dark .docstring>section>a.button.is-inverted.docs-sourcelink[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-primary.is-inverted,fieldset[disabled] html.theme--documenter-dark .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;border-color:transparent;box-shadow:none;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-loading::after,html.theme--documenter-dark .docstring>section>a.button.is-loading.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-primary.is-outlined,html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#375a7f;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-outlined:hover,html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink:hover,html.theme--documenter-dark .button.is-primary.is-outlined.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-hovered.docs-sourcelink,html.theme--documenter-dark .button.is-primary.is-outlined:focus,html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink:focus,html.theme--documenter-dark .button.is-primary.is-outlined.is-focused,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-focused.docs-sourcelink{background-color:#375a7f;border-color:#375a7f;color:#fff}html.theme--documenter-dark .button.is-primary.is-outlined.is-loading::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink::after{border-color:transparent transparent #375a7f #375a7f !important}html.theme--documenter-dark .button.is-primary.is-outlined.is-loading:hover::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--documenter-dark .button.is-primary.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--documenter-dark .button.is-primary.is-outlined.is-loading:focus::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--documenter-dark .button.is-primary.is-outlined.is-loading.is-focused::after,html.theme--documenter-dark .docstring>section>a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-primary.is-outlined[disabled],html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-primary.is-outlined,fieldset[disabled] html.theme--documenter-dark .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#375a7f;box-shadow:none;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined:hover,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:hover,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined:focus,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:focus,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-focused,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-focused.docs-sourcelink{background-color:#fff;color:#375a7f}html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after,html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after,html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #375a7f #375a7f !important}html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined[disabled],html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined,fieldset[disabled] html.theme--documenter-dark .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-link{background-color:#1abc9c;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-link:hover,html.theme--documenter-dark .button.is-link.is-hovered{background-color:#18b193;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-link:focus,html.theme--documenter-dark .button.is-link.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-link:focus:not(:active),html.theme--documenter-dark .button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .button.is-link:active,html.theme--documenter-dark .button.is-link.is-active{background-color:#17a689;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-link[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-link{background-color:#1abc9c;border-color:transparent;box-shadow:none}html.theme--documenter-dark .button.is-link.is-inverted{background-color:#fff;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-inverted:hover,html.theme--documenter-dark .button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-link.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-link.is-outlined{background-color:transparent;border-color:#1abc9c;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-outlined:hover,html.theme--documenter-dark .button.is-link.is-outlined.is-hovered,html.theme--documenter-dark .button.is-link.is-outlined:focus,html.theme--documenter-dark .button.is-link.is-outlined.is-focused{background-color:#1abc9c;border-color:#1abc9c;color:#fff}html.theme--documenter-dark .button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #1abc9c #1abc9c !important}html.theme--documenter-dark .button.is-link.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-link.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-link.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-link.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-link.is-outlined{background-color:transparent;border-color:#1abc9c;box-shadow:none;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-link.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#1abc9c}html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #1abc9c #1abc9c !important}html.theme--documenter-dark .button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-info{background-color:#024c7d;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-info:hover,html.theme--documenter-dark .button.is-info.is-hovered{background-color:#024470;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-info:focus,html.theme--documenter-dark .button.is-info.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-info:focus:not(:active),html.theme--documenter-dark .button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(2,76,125,0.25)}html.theme--documenter-dark .button.is-info:active,html.theme--documenter-dark .button.is-info.is-active{background-color:#023d64;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-info[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-info{background-color:#024c7d;border-color:transparent;box-shadow:none}html.theme--documenter-dark .button.is-info.is-inverted{background-color:#fff;color:#024c7d}html.theme--documenter-dark .button.is-info.is-inverted:hover,html.theme--documenter-dark .button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-info.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#024c7d}html.theme--documenter-dark .button.is-info.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-info.is-outlined{background-color:transparent;border-color:#024c7d;color:#024c7d}html.theme--documenter-dark .button.is-info.is-outlined:hover,html.theme--documenter-dark .button.is-info.is-outlined.is-hovered,html.theme--documenter-dark .button.is-info.is-outlined:focus,html.theme--documenter-dark .button.is-info.is-outlined.is-focused{background-color:#024c7d;border-color:#024c7d;color:#fff}html.theme--documenter-dark .button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #024c7d #024c7d !important}html.theme--documenter-dark .button.is-info.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-info.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-info.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-info.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-info.is-outlined{background-color:transparent;border-color:#024c7d;box-shadow:none;color:#024c7d}html.theme--documenter-dark .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-info.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#024c7d}html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #024c7d #024c7d !important}html.theme--documenter-dark .button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-success{background-color:#008438;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-success:hover,html.theme--documenter-dark .button.is-success.is-hovered{background-color:#073;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-success:focus,html.theme--documenter-dark .button.is-success.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-success:focus:not(:active),html.theme--documenter-dark .button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(0,132,56,0.25)}html.theme--documenter-dark .button.is-success:active,html.theme--documenter-dark .button.is-success.is-active{background-color:#006b2d;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-success[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-success{background-color:#008438;border-color:transparent;box-shadow:none}html.theme--documenter-dark .button.is-success.is-inverted{background-color:#fff;color:#008438}html.theme--documenter-dark .button.is-success.is-inverted:hover,html.theme--documenter-dark .button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-success.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#008438}html.theme--documenter-dark .button.is-success.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-success.is-outlined{background-color:transparent;border-color:#008438;color:#008438}html.theme--documenter-dark .button.is-success.is-outlined:hover,html.theme--documenter-dark .button.is-success.is-outlined.is-hovered,html.theme--documenter-dark .button.is-success.is-outlined:focus,html.theme--documenter-dark .button.is-success.is-outlined.is-focused{background-color:#008438;border-color:#008438;color:#fff}html.theme--documenter-dark .button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #008438 #008438 !important}html.theme--documenter-dark .button.is-success.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-success.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-success.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-success.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-success.is-outlined{background-color:transparent;border-color:#008438;box-shadow:none;color:#008438}html.theme--documenter-dark .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-success.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#008438}html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #008438 #008438 !important}html.theme--documenter-dark .button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-warning{background-color:#ad8100;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-warning:hover,html.theme--documenter-dark .button.is-warning.is-hovered{background-color:#a07700;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-warning:focus,html.theme--documenter-dark .button.is-warning.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-warning:focus:not(:active),html.theme--documenter-dark .button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(173,129,0,0.25)}html.theme--documenter-dark .button.is-warning:active,html.theme--documenter-dark .button.is-warning.is-active{background-color:#946e00;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-warning[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-warning{background-color:#ad8100;border-color:transparent;box-shadow:none}html.theme--documenter-dark .button.is-warning.is-inverted{background-color:#fff;color:#ad8100}html.theme--documenter-dark .button.is-warning.is-inverted:hover,html.theme--documenter-dark .button.is-warning.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-warning.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-warning.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#ad8100}html.theme--documenter-dark .button.is-warning.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-warning.is-outlined{background-color:transparent;border-color:#ad8100;color:#ad8100}html.theme--documenter-dark .button.is-warning.is-outlined:hover,html.theme--documenter-dark .button.is-warning.is-outlined.is-hovered,html.theme--documenter-dark .button.is-warning.is-outlined:focus,html.theme--documenter-dark .button.is-warning.is-outlined.is-focused{background-color:#ad8100;border-color:#ad8100;color:#fff}html.theme--documenter-dark .button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #ad8100 #ad8100 !important}html.theme--documenter-dark .button.is-warning.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-warning.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-warning.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-warning.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-warning.is-outlined{background-color:transparent;border-color:#ad8100;box-shadow:none;color:#ad8100}html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-focused{background-color:#fff;color:#ad8100}html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #ad8100 #ad8100 !important}html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-danger{background-color:#9e1b0d;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-danger:hover,html.theme--documenter-dark .button.is-danger.is-hovered{background-color:#92190c;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-danger:focus,html.theme--documenter-dark .button.is-danger.is-focused{border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-danger:focus:not(:active),html.theme--documenter-dark .button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(158,27,13,0.25)}html.theme--documenter-dark .button.is-danger:active,html.theme--documenter-dark .button.is-danger.is-active{background-color:#86170b;border-color:transparent;color:#fff}html.theme--documenter-dark .button.is-danger[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-danger{background-color:#9e1b0d;border-color:transparent;box-shadow:none}html.theme--documenter-dark .button.is-danger.is-inverted{background-color:#fff;color:#9e1b0d}html.theme--documenter-dark .button.is-danger.is-inverted:hover,html.theme--documenter-dark .button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}html.theme--documenter-dark .button.is-danger.is-inverted[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#9e1b0d}html.theme--documenter-dark .button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-danger.is-outlined{background-color:transparent;border-color:#9e1b0d;color:#9e1b0d}html.theme--documenter-dark .button.is-danger.is-outlined:hover,html.theme--documenter-dark .button.is-danger.is-outlined.is-hovered,html.theme--documenter-dark .button.is-danger.is-outlined:focus,html.theme--documenter-dark .button.is-danger.is-outlined.is-focused{background-color:#9e1b0d;border-color:#9e1b0d;color:#fff}html.theme--documenter-dark .button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #9e1b0d #9e1b0d !important}html.theme--documenter-dark .button.is-danger.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-danger.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-danger.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}html.theme--documenter-dark .button.is-danger.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-danger.is-outlined{background-color:transparent;border-color:#9e1b0d;box-shadow:none;color:#9e1b0d}html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined:hover,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-hovered,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined:focus,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#9e1b0d}html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading:hover::after,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading:focus::after,html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #9e1b0d #9e1b0d !important}html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}html.theme--documenter-dark .button.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.button{border-radius:3px;font-size:.85em}html.theme--documenter-dark .button.is-normal{font-size:15px}html.theme--documenter-dark .button.is-medium{font-size:1.25rem}html.theme--documenter-dark .button.is-large{font-size:1.5rem}html.theme--documenter-dark .button[disabled],fieldset[disabled] html.theme--documenter-dark .button{background-color:#8c9b9d;border-color:#dbdee0;box-shadow:none;opacity:.5}html.theme--documenter-dark .button.is-fullwidth{display:flex;width:100%}html.theme--documenter-dark .button.is-loading{color:transparent !important;pointer-events:none}html.theme--documenter-dark .button.is-loading::after{position:absolute;left:calc(50% - (1em / 2));top:calc(50% - (1em / 2));position:absolute !important}html.theme--documenter-dark .button.is-static{background-color:#282f2f;border-color:#5e6d6f;color:#dbdee0;box-shadow:none;pointer-events:none}html.theme--documenter-dark .button.is-rounded,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.button{border-radius:290486px;padding-left:1em;padding-right:1em}html.theme--documenter-dark .buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--documenter-dark .buttons .button{margin-bottom:0.5rem}html.theme--documenter-dark .buttons .button:not(:last-child):not(.is-fullwidth){margin-right:0.5rem}html.theme--documenter-dark .buttons:last-child{margin-bottom:-0.5rem}html.theme--documenter-dark .buttons:not(:last-child){margin-bottom:1rem}html.theme--documenter-dark .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){border-radius:3px;font-size:.85em}html.theme--documenter-dark .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}html.theme--documenter-dark .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}html.theme--documenter-dark .buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}html.theme--documenter-dark .buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}html.theme--documenter-dark .buttons.has-addons .button:last-child{margin-right:0}html.theme--documenter-dark .buttons.has-addons .button:hover,html.theme--documenter-dark .buttons.has-addons .button.is-hovered{z-index:2}html.theme--documenter-dark .buttons.has-addons .button:focus,html.theme--documenter-dark .buttons.has-addons .button.is-focused,html.theme--documenter-dark .buttons.has-addons .button:active,html.theme--documenter-dark .buttons.has-addons .button.is-active,html.theme--documenter-dark .buttons.has-addons .button.is-selected{z-index:3}html.theme--documenter-dark .buttons.has-addons .button:focus:hover,html.theme--documenter-dark .buttons.has-addons .button.is-focused:hover,html.theme--documenter-dark .buttons.has-addons .button:active:hover,html.theme--documenter-dark .buttons.has-addons .button.is-active:hover,html.theme--documenter-dark .buttons.has-addons .button.is-selected:hover{z-index:4}html.theme--documenter-dark .buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .buttons.is-centered{justify-content:center}html.theme--documenter-dark .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}html.theme--documenter-dark .buttons.is-right{justify-content:flex-end}html.theme--documenter-dark .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}html.theme--documenter-dark .container{flex-grow:1;margin:0 auto;position:relative;width:auto}@media screen and (min-width: 1056px){html.theme--documenter-dark .container{max-width:992px}html.theme--documenter-dark .container.is-fluid{margin-left:32px;margin-right:32px;max-width:none}}@media screen and (max-width: 1215px){html.theme--documenter-dark .container.is-widescreen{max-width:1152px}}@media screen and (max-width: 1407px){html.theme--documenter-dark .container.is-fullhd{max-width:1344px}}@media screen and (min-width: 1216px){html.theme--documenter-dark .container{max-width:1152px}}@media screen and (min-width: 1408px){html.theme--documenter-dark .container{max-width:1344px}}html.theme--documenter-dark .content li+li{margin-top:0.25em}html.theme--documenter-dark .content p:not(:last-child),html.theme--documenter-dark .content dl:not(:last-child),html.theme--documenter-dark .content ol:not(:last-child),html.theme--documenter-dark .content ul:not(:last-child),html.theme--documenter-dark .content blockquote:not(:last-child),html.theme--documenter-dark .content pre:not(:last-child),html.theme--documenter-dark .content table:not(:last-child){margin-bottom:1em}html.theme--documenter-dark .content h1,html.theme--documenter-dark .content h2,html.theme--documenter-dark .content h3,html.theme--documenter-dark .content h4,html.theme--documenter-dark .content h5,html.theme--documenter-dark .content h6{color:#f2f2f2;font-weight:600;line-height:1.125}html.theme--documenter-dark .content h1{font-size:2em;margin-bottom:0.5em}html.theme--documenter-dark .content h1:not(:first-child){margin-top:1em}html.theme--documenter-dark .content h2{font-size:1.75em;margin-bottom:0.5714em}html.theme--documenter-dark .content h2:not(:first-child){margin-top:1.1428em}html.theme--documenter-dark .content h3{font-size:1.5em;margin-bottom:0.6666em}html.theme--documenter-dark .content h3:not(:first-child){margin-top:1.3333em}html.theme--documenter-dark .content h4{font-size:1.25em;margin-bottom:0.8em}html.theme--documenter-dark .content h5{font-size:1.125em;margin-bottom:0.8888em}html.theme--documenter-dark .content h6{font-size:1em;margin-bottom:1em}html.theme--documenter-dark .content blockquote{background-color:#282f2f;border-left:5px solid #5e6d6f;padding:1.25em 1.5em}html.theme--documenter-dark .content ol{list-style-position:outside;margin-left:2em;margin-top:1em}html.theme--documenter-dark .content ol:not([type]){list-style-type:decimal}html.theme--documenter-dark .content ol.is-lower-alpha:not([type]){list-style-type:lower-alpha}html.theme--documenter-dark .content ol.is-lower-roman:not([type]){list-style-type:lower-roman}html.theme--documenter-dark .content ol.is-upper-alpha:not([type]){list-style-type:upper-alpha}html.theme--documenter-dark .content ol.is-upper-roman:not([type]){list-style-type:upper-roman}html.theme--documenter-dark .content ul{list-style:disc outside;margin-left:2em;margin-top:1em}html.theme--documenter-dark .content ul ul{list-style-type:circle;margin-top:0.5em}html.theme--documenter-dark .content ul ul ul{list-style-type:square}html.theme--documenter-dark .content dd{margin-left:2em}html.theme--documenter-dark .content figure{margin-left:2em;margin-right:2em;text-align:center}html.theme--documenter-dark .content figure:not(:first-child){margin-top:2em}html.theme--documenter-dark .content figure:not(:last-child){margin-bottom:2em}html.theme--documenter-dark .content figure img{display:inline-block}html.theme--documenter-dark .content figure figcaption{font-style:italic}html.theme--documenter-dark .content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:0;white-space:pre;word-wrap:normal}html.theme--documenter-dark .content sup,html.theme--documenter-dark .content sub{font-size:75%}html.theme--documenter-dark .content table{width:100%}html.theme--documenter-dark .content table td,html.theme--documenter-dark .content table th{border:1px solid #5e6d6f;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--documenter-dark .content table th{color:#f2f2f2}html.theme--documenter-dark .content table th:not([align]){text-align:left}html.theme--documenter-dark .content table thead td,html.theme--documenter-dark .content table thead th{border-width:0 0 2px;color:#f2f2f2}html.theme--documenter-dark .content table tfoot td,html.theme--documenter-dark .content table tfoot th{border-width:2px 0 0;color:#f2f2f2}html.theme--documenter-dark .content table tbody tr:last-child td,html.theme--documenter-dark .content table tbody tr:last-child th{border-bottom-width:0}html.theme--documenter-dark .content .tabs li+li{margin-top:0}html.theme--documenter-dark .content.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.content{font-size:.85em}html.theme--documenter-dark .content.is-medium{font-size:1.25rem}html.theme--documenter-dark .content.is-large{font-size:1.5rem}html.theme--documenter-dark .icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}html.theme--documenter-dark .icon.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.icon{height:1rem;width:1rem}html.theme--documenter-dark .icon.is-medium{height:2rem;width:2rem}html.theme--documenter-dark .icon.is-large{height:3rem;width:3rem}html.theme--documenter-dark .image,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img{display:block;position:relative}html.theme--documenter-dark .image img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img img{display:block;height:auto;width:100%}html.theme--documenter-dark .image img.is-rounded,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img img.is-rounded{border-radius:290486px}html.theme--documenter-dark .image.is-square img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square img,html.theme--documenter-dark .image.is-square .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,html.theme--documenter-dark .image.is-1by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1 img,html.theme--documenter-dark .image.is-1by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,html.theme--documenter-dark .image.is-5by4 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4 img,html.theme--documenter-dark .image.is-5by4 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,html.theme--documenter-dark .image.is-4by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3 img,html.theme--documenter-dark .image.is-4by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,html.theme--documenter-dark .image.is-3by2 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2 img,html.theme--documenter-dark .image.is-3by2 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,html.theme--documenter-dark .image.is-5by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3 img,html.theme--documenter-dark .image.is-5by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,html.theme--documenter-dark .image.is-16by9 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9 img,html.theme--documenter-dark .image.is-16by9 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,html.theme--documenter-dark .image.is-2by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1 img,html.theme--documenter-dark .image.is-2by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,html.theme--documenter-dark .image.is-3by1 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1 img,html.theme--documenter-dark .image.is-3by1 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,html.theme--documenter-dark .image.is-4by5 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5 img,html.theme--documenter-dark .image.is-4by5 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,html.theme--documenter-dark .image.is-3by4 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4 img,html.theme--documenter-dark .image.is-3by4 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,html.theme--documenter-dark .image.is-2by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3 img,html.theme--documenter-dark .image.is-2by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,html.theme--documenter-dark .image.is-3by5 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5 img,html.theme--documenter-dark .image.is-3by5 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,html.theme--documenter-dark .image.is-9by16 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16 img,html.theme--documenter-dark .image.is-9by16 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,html.theme--documenter-dark .image.is-1by2 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2 img,html.theme--documenter-dark .image.is-1by2 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,html.theme--documenter-dark .image.is-1by3 img,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3 img,html.theme--documenter-dark .image.is-1by3 .has-ratio,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio{height:100%;width:100%}html.theme--documenter-dark .image.is-square,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-square,html.theme--documenter-dark .image.is-1by1,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by1{padding-top:100%}html.theme--documenter-dark .image.is-5by4,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by4{padding-top:80%}html.theme--documenter-dark .image.is-4by3,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by3{padding-top:75%}html.theme--documenter-dark .image.is-3by2,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by2{padding-top:66.6666%}html.theme--documenter-dark .image.is-5by3,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-5by3{padding-top:60%}html.theme--documenter-dark .image.is-16by9,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16by9{padding-top:56.25%}html.theme--documenter-dark .image.is-2by1,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by1{padding-top:50%}html.theme--documenter-dark .image.is-3by1,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by1{padding-top:33.3333%}html.theme--documenter-dark .image.is-4by5,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-4by5{padding-top:125%}html.theme--documenter-dark .image.is-3by4,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by4{padding-top:133.3333%}html.theme--documenter-dark .image.is-2by3,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-2by3{padding-top:150%}html.theme--documenter-dark .image.is-3by5,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-3by5{padding-top:166.6666%}html.theme--documenter-dark .image.is-9by16,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-9by16{padding-top:177.7777%}html.theme--documenter-dark .image.is-1by2,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by2{padding-top:200%}html.theme--documenter-dark .image.is-1by3,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-1by3{padding-top:300%}html.theme--documenter-dark .image.is-16x16,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-16x16{height:16px;width:16px}html.theme--documenter-dark .image.is-24x24,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-24x24{height:24px;width:24px}html.theme--documenter-dark .image.is-32x32,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-32x32{height:32px;width:32px}html.theme--documenter-dark .image.is-48x48,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-48x48{height:48px;width:48px}html.theme--documenter-dark .image.is-64x64,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-64x64{height:64px;width:64px}html.theme--documenter-dark .image.is-96x96,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-96x96{height:96px;width:96px}html.theme--documenter-dark .image.is-128x128,html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img.is-128x128{height:128px;width:128px}html.theme--documenter-dark .notification{background-color:#282f2f;border-radius:.4em;padding:1.25rem 2.5rem 1.25rem 1.5rem;position:relative}html.theme--documenter-dark .notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--documenter-dark .notification strong{color:currentColor}html.theme--documenter-dark .notification code,html.theme--documenter-dark .notification pre{background:#fff}html.theme--documenter-dark .notification pre code{background:transparent}html.theme--documenter-dark .notification>.delete{position:absolute;right:0.5rem;top:0.5rem}html.theme--documenter-dark .notification .title,html.theme--documenter-dark .notification .subtitle,html.theme--documenter-dark .notification .content{color:currentColor}html.theme--documenter-dark .notification.is-white{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .notification.is-black{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .notification.is-light{background-color:#ecf0f1;color:#282f2f}html.theme--documenter-dark .notification.is-dark,html.theme--documenter-dark .content kbd.notification{background-color:#282f2f;color:#ecf0f1}html.theme--documenter-dark .notification.is-primary,html.theme--documenter-dark .docstring>section>a.notification.docs-sourcelink{background-color:#375a7f;color:#fff}html.theme--documenter-dark .notification.is-link{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .notification.is-info{background-color:#024c7d;color:#fff}html.theme--documenter-dark .notification.is-success{background-color:#008438;color:#fff}html.theme--documenter-dark .notification.is-warning{background-color:#ad8100;color:#fff}html.theme--documenter-dark .notification.is-danger{background-color:#9e1b0d;color:#fff}html.theme--documenter-dark .progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:290486px;display:block;height:15px;overflow:hidden;padding:0;width:100%}html.theme--documenter-dark .progress::-webkit-progress-bar{background-color:#5e6d6f}html.theme--documenter-dark .progress::-webkit-progress-value{background-color:#dbdee0}html.theme--documenter-dark .progress::-moz-progress-bar{background-color:#dbdee0}html.theme--documenter-dark .progress::-ms-fill{background-color:#dbdee0;border:none}html.theme--documenter-dark .progress.is-white::-webkit-progress-value{background-color:#fff}html.theme--documenter-dark .progress.is-white::-moz-progress-bar{background-color:#fff}html.theme--documenter-dark .progress.is-white::-ms-fill{background-color:#fff}html.theme--documenter-dark .progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #5e6d6f 30%)}html.theme--documenter-dark .progress.is-black::-webkit-progress-value{background-color:#0a0a0a}html.theme--documenter-dark .progress.is-black::-moz-progress-bar{background-color:#0a0a0a}html.theme--documenter-dark .progress.is-black::-ms-fill{background-color:#0a0a0a}html.theme--documenter-dark .progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #5e6d6f 30%)}html.theme--documenter-dark .progress.is-light::-webkit-progress-value{background-color:#ecf0f1}html.theme--documenter-dark .progress.is-light::-moz-progress-bar{background-color:#ecf0f1}html.theme--documenter-dark .progress.is-light::-ms-fill{background-color:#ecf0f1}html.theme--documenter-dark .progress.is-light:indeterminate{background-image:linear-gradient(to right, #ecf0f1 30%, #5e6d6f 30%)}html.theme--documenter-dark .progress.is-dark::-webkit-progress-value,html.theme--documenter-dark .content kbd.progress::-webkit-progress-value{background-color:#282f2f}html.theme--documenter-dark .progress.is-dark::-moz-progress-bar,html.theme--documenter-dark .content kbd.progress::-moz-progress-bar{background-color:#282f2f}html.theme--documenter-dark .progress.is-dark::-ms-fill,html.theme--documenter-dark .content kbd.progress::-ms-fill{background-color:#282f2f}html.theme--documenter-dark .progress.is-dark:indeterminate,html.theme--documenter-dark .content kbd.progress:indeterminate{background-image:linear-gradient(to right, #282f2f 30%, #5e6d6f 30%)}html.theme--documenter-dark .progress.is-primary::-webkit-progress-value,html.theme--documenter-dark .docstring>section>a.progress.docs-sourcelink::-webkit-progress-value{background-color:#375a7f}html.theme--documenter-dark .progress.is-primary::-moz-progress-bar,html.theme--documenter-dark .docstring>section>a.progress.docs-sourcelink::-moz-progress-bar{background-color:#375a7f}html.theme--documenter-dark .progress.is-primary::-ms-fill,html.theme--documenter-dark .docstring>section>a.progress.docs-sourcelink::-ms-fill{background-color:#375a7f}html.theme--documenter-dark .progress.is-primary:indeterminate,html.theme--documenter-dark .docstring>section>a.progress.docs-sourcelink:indeterminate{background-image:linear-gradient(to right, #375a7f 30%, #5e6d6f 30%)}html.theme--documenter-dark .progress.is-link::-webkit-progress-value{background-color:#1abc9c}html.theme--documenter-dark .progress.is-link::-moz-progress-bar{background-color:#1abc9c}html.theme--documenter-dark .progress.is-link::-ms-fill{background-color:#1abc9c}html.theme--documenter-dark .progress.is-link:indeterminate{background-image:linear-gradient(to right, #1abc9c 30%, #5e6d6f 30%)}html.theme--documenter-dark .progress.is-info::-webkit-progress-value{background-color:#024c7d}html.theme--documenter-dark .progress.is-info::-moz-progress-bar{background-color:#024c7d}html.theme--documenter-dark .progress.is-info::-ms-fill{background-color:#024c7d}html.theme--documenter-dark .progress.is-info:indeterminate{background-image:linear-gradient(to right, #024c7d 30%, #5e6d6f 30%)}html.theme--documenter-dark .progress.is-success::-webkit-progress-value{background-color:#008438}html.theme--documenter-dark .progress.is-success::-moz-progress-bar{background-color:#008438}html.theme--documenter-dark .progress.is-success::-ms-fill{background-color:#008438}html.theme--documenter-dark .progress.is-success:indeterminate{background-image:linear-gradient(to right, #008438 30%, #5e6d6f 30%)}html.theme--documenter-dark .progress.is-warning::-webkit-progress-value{background-color:#ad8100}html.theme--documenter-dark .progress.is-warning::-moz-progress-bar{background-color:#ad8100}html.theme--documenter-dark .progress.is-warning::-ms-fill{background-color:#ad8100}html.theme--documenter-dark .progress.is-warning:indeterminate{background-image:linear-gradient(to right, #ad8100 30%, #5e6d6f 30%)}html.theme--documenter-dark .progress.is-danger::-webkit-progress-value{background-color:#9e1b0d}html.theme--documenter-dark .progress.is-danger::-moz-progress-bar{background-color:#9e1b0d}html.theme--documenter-dark .progress.is-danger::-ms-fill{background-color:#9e1b0d}html.theme--documenter-dark .progress.is-danger:indeterminate{background-image:linear-gradient(to right, #9e1b0d 30%, #5e6d6f 30%)}html.theme--documenter-dark .progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#5e6d6f;background-image:linear-gradient(to right, #fff 30%, #5e6d6f 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}html.theme--documenter-dark .progress:indeterminate::-webkit-progress-bar{background-color:transparent}html.theme--documenter-dark .progress:indeterminate::-moz-progress-bar{background-color:transparent}html.theme--documenter-dark .progress.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.progress{height:.85em}html.theme--documenter-dark .progress.is-medium{height:1.25rem}html.theme--documenter-dark .progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}html.theme--documenter-dark .table{background-color:#343c3d;color:#fff}html.theme--documenter-dark .table td,html.theme--documenter-dark .table th{border:1px solid #5e6d6f;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}html.theme--documenter-dark .table td.is-white,html.theme--documenter-dark .table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--documenter-dark .table td.is-black,html.theme--documenter-dark .table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--documenter-dark .table td.is-light,html.theme--documenter-dark .table th.is-light{background-color:#ecf0f1;border-color:#ecf0f1;color:#282f2f}html.theme--documenter-dark .table td.is-dark,html.theme--documenter-dark .table th.is-dark{background-color:#282f2f;border-color:#282f2f;color:#ecf0f1}html.theme--documenter-dark .table td.is-primary,html.theme--documenter-dark .table th.is-primary{background-color:#375a7f;border-color:#375a7f;color:#fff}html.theme--documenter-dark .table td.is-link,html.theme--documenter-dark .table th.is-link{background-color:#1abc9c;border-color:#1abc9c;color:#fff}html.theme--documenter-dark .table td.is-info,html.theme--documenter-dark .table th.is-info{background-color:#024c7d;border-color:#024c7d;color:#fff}html.theme--documenter-dark .table td.is-success,html.theme--documenter-dark .table th.is-success{background-color:#008438;border-color:#008438;color:#fff}html.theme--documenter-dark .table td.is-warning,html.theme--documenter-dark .table th.is-warning{background-color:#ad8100;border-color:#ad8100;color:#fff}html.theme--documenter-dark .table td.is-danger,html.theme--documenter-dark .table th.is-danger{background-color:#9e1b0d;border-color:#9e1b0d;color:#fff}html.theme--documenter-dark .table td.is-narrow,html.theme--documenter-dark .table th.is-narrow{white-space:nowrap;width:1%}html.theme--documenter-dark .table td.is-selected,html.theme--documenter-dark .table th.is-selected{background-color:#375a7f;color:#fff}html.theme--documenter-dark .table td.is-selected a,html.theme--documenter-dark .table td.is-selected strong,html.theme--documenter-dark .table th.is-selected a,html.theme--documenter-dark .table th.is-selected strong{color:currentColor}html.theme--documenter-dark .table th{color:#f2f2f2}html.theme--documenter-dark .table th:not([align]){text-align:left}html.theme--documenter-dark .table tr.is-selected{background-color:#375a7f;color:#fff}html.theme--documenter-dark .table tr.is-selected a,html.theme--documenter-dark .table tr.is-selected strong{color:currentColor}html.theme--documenter-dark .table tr.is-selected td,html.theme--documenter-dark .table tr.is-selected th{border-color:#fff;color:currentColor}html.theme--documenter-dark .table thead{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .table thead td,html.theme--documenter-dark .table thead th{border-width:0 0 2px;color:#f2f2f2}html.theme--documenter-dark .table tfoot{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .table tfoot td,html.theme--documenter-dark .table tfoot th{border-width:2px 0 0;color:#f2f2f2}html.theme--documenter-dark .table tbody{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .table tbody tr:last-child td,html.theme--documenter-dark .table tbody tr:last-child th{border-bottom-width:0}html.theme--documenter-dark .table.is-bordered td,html.theme--documenter-dark .table.is-bordered th{border-width:1px}html.theme--documenter-dark .table.is-bordered tr:last-child td,html.theme--documenter-dark .table.is-bordered tr:last-child th{border-bottom-width:1px}html.theme--documenter-dark .table.is-fullwidth{width:100%}html.theme--documenter-dark .table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#282f2f}html.theme--documenter-dark .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#282f2f}html.theme--documenter-dark .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#2d3435}html.theme--documenter-dark .table.is-narrow td,html.theme--documenter-dark .table.is-narrow th{padding:0.25em 0.5em}html.theme--documenter-dark .table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#282f2f}html.theme--documenter-dark .table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}html.theme--documenter-dark .tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--documenter-dark .tags .tag,html.theme--documenter-dark .tags .content kbd,html.theme--documenter-dark .content .tags kbd,html.theme--documenter-dark .tags .docstring>section>a.docs-sourcelink{margin-bottom:0.5rem}html.theme--documenter-dark .tags .tag:not(:last-child),html.theme--documenter-dark .tags .content kbd:not(:last-child),html.theme--documenter-dark .content .tags kbd:not(:last-child),html.theme--documenter-dark .tags .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0.5rem}html.theme--documenter-dark .tags:last-child{margin-bottom:-0.5rem}html.theme--documenter-dark .tags:not(:last-child){margin-bottom:1rem}html.theme--documenter-dark .tags.are-medium .tag:not(.is-normal):not(.is-large),html.theme--documenter-dark .tags.are-medium .content kbd:not(.is-normal):not(.is-large),html.theme--documenter-dark .content .tags.are-medium kbd:not(.is-normal):not(.is-large),html.theme--documenter-dark .tags.are-medium .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-large){font-size:15px}html.theme--documenter-dark .tags.are-large .tag:not(.is-normal):not(.is-medium),html.theme--documenter-dark .tags.are-large .content kbd:not(.is-normal):not(.is-medium),html.theme--documenter-dark .content .tags.are-large kbd:not(.is-normal):not(.is-medium),html.theme--documenter-dark .tags.are-large .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-medium){font-size:1.25rem}html.theme--documenter-dark .tags.is-centered{justify-content:center}html.theme--documenter-dark .tags.is-centered .tag,html.theme--documenter-dark .tags.is-centered .content kbd,html.theme--documenter-dark .content .tags.is-centered kbd,html.theme--documenter-dark .tags.is-centered .docstring>section>a.docs-sourcelink{margin-right:0.25rem;margin-left:0.25rem}html.theme--documenter-dark .tags.is-right{justify-content:flex-end}html.theme--documenter-dark .tags.is-right .tag:not(:first-child),html.theme--documenter-dark .tags.is-right .content kbd:not(:first-child),html.theme--documenter-dark .content .tags.is-right kbd:not(:first-child),html.theme--documenter-dark .tags.is-right .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0.5rem}html.theme--documenter-dark .tags.is-right .tag:not(:last-child),html.theme--documenter-dark .tags.is-right .content kbd:not(:last-child),html.theme--documenter-dark .content .tags.is-right kbd:not(:last-child),html.theme--documenter-dark .tags.is-right .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0}html.theme--documenter-dark .tags.has-addons .tag,html.theme--documenter-dark .tags.has-addons .content kbd,html.theme--documenter-dark .content .tags.has-addons kbd,html.theme--documenter-dark .tags.has-addons .docstring>section>a.docs-sourcelink{margin-right:0}html.theme--documenter-dark .tags.has-addons .tag:not(:first-child),html.theme--documenter-dark .tags.has-addons .content kbd:not(:first-child),html.theme--documenter-dark .content .tags.has-addons kbd:not(:first-child),html.theme--documenter-dark .tags.has-addons .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0;border-bottom-left-radius:0;border-top-left-radius:0}html.theme--documenter-dark .tags.has-addons .tag:not(:last-child),html.theme--documenter-dark .tags.has-addons .content kbd:not(:last-child),html.theme--documenter-dark .content .tags.has-addons kbd:not(:last-child),html.theme--documenter-dark .tags.has-addons .docstring>section>a.docs-sourcelink:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}html.theme--documenter-dark .tag:not(body),html.theme--documenter-dark .content kbd:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body){align-items:center;background-color:#282f2f;border-radius:.4em;color:#fff;display:inline-flex;font-size:.85em;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}html.theme--documenter-dark .tag:not(body) .delete,html.theme--documenter-dark .content kbd:not(body) .delete,html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body) .delete{margin-left:0.25rem;margin-right:-0.375rem}html.theme--documenter-dark .tag.is-white:not(body),html.theme--documenter-dark .content kbd.is-white:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-white:not(body){background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .tag.is-black:not(body),html.theme--documenter-dark .content kbd.is-black:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-black:not(body){background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .tag.is-light:not(body),html.theme--documenter-dark .content kbd.is-light:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#ecf0f1;color:#282f2f}html.theme--documenter-dark .tag.is-dark:not(body),html.theme--documenter-dark .content kbd:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-dark:not(body),html.theme--documenter-dark .content .docstring>section>kbd:not(body){background-color:#282f2f;color:#ecf0f1}html.theme--documenter-dark .tag.is-primary:not(body),html.theme--documenter-dark .content kbd.is-primary:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body){background-color:#375a7f;color:#fff}html.theme--documenter-dark .tag.is-link:not(body),html.theme--documenter-dark .content kbd.is-link:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-link:not(body){background-color:#1abc9c;color:#fff}html.theme--documenter-dark .tag.is-info:not(body),html.theme--documenter-dark .content kbd.is-info:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-info:not(body){background-color:#024c7d;color:#fff}html.theme--documenter-dark .tag.is-success:not(body),html.theme--documenter-dark .content kbd.is-success:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-success:not(body){background-color:#008438;color:#fff}html.theme--documenter-dark .tag.is-warning:not(body),html.theme--documenter-dark .content kbd.is-warning:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-warning:not(body){background-color:#ad8100;color:#fff}html.theme--documenter-dark .tag.is-danger:not(body),html.theme--documenter-dark .content kbd.is-danger:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-danger:not(body){background-color:#9e1b0d;color:#fff}html.theme--documenter-dark .tag.is-normal:not(body),html.theme--documenter-dark .content kbd.is-normal:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-normal:not(body){font-size:.85em}html.theme--documenter-dark .tag.is-medium:not(body),html.theme--documenter-dark .content kbd.is-medium:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-medium:not(body){font-size:15px}html.theme--documenter-dark .tag.is-large:not(body),html.theme--documenter-dark .content kbd.is-large:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-large:not(body){font-size:1.25rem}html.theme--documenter-dark .tag:not(body) .icon:first-child:not(:last-child),html.theme--documenter-dark .content kbd:not(body) .icon:first-child:not(:last-child),html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:not(:last-child){margin-left:-0.375em;margin-right:0.1875em}html.theme--documenter-dark .tag:not(body) .icon:last-child:not(:first-child),html.theme--documenter-dark .content kbd:not(body) .icon:last-child:not(:first-child),html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body) .icon:last-child:not(:first-child){margin-left:0.1875em;margin-right:-0.375em}html.theme--documenter-dark .tag:not(body) .icon:first-child:last-child,html.theme--documenter-dark .content kbd:not(body) .icon:first-child:last-child,html.theme--documenter-dark .docstring>section>a.docs-sourcelink:not(body) .icon:first-child:last-child{margin-left:-0.375em;margin-right:-0.375em}html.theme--documenter-dark .tag.is-delete:not(body),html.theme--documenter-dark .content kbd.is-delete:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body){margin-left:1px;padding:0;position:relative;width:2em}html.theme--documenter-dark .tag.is-delete:not(body)::before,html.theme--documenter-dark .content kbd.is-delete:not(body)::before,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body)::before,html.theme--documenter-dark .tag.is-delete:not(body)::after,html.theme--documenter-dark .content kbd.is-delete:not(body)::after,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}html.theme--documenter-dark .tag.is-delete:not(body)::before,html.theme--documenter-dark .content kbd.is-delete:not(body)::before,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body)::before{height:1px;width:50%}html.theme--documenter-dark .tag.is-delete:not(body)::after,html.theme--documenter-dark .content kbd.is-delete:not(body)::after,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body)::after{height:50%;width:1px}html.theme--documenter-dark .tag.is-delete:not(body):hover,html.theme--documenter-dark .content kbd.is-delete:not(body):hover,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body):hover,html.theme--documenter-dark .tag.is-delete:not(body):focus,html.theme--documenter-dark .content kbd.is-delete:not(body):focus,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body):focus{background-color:#1d2122}html.theme--documenter-dark .tag.is-delete:not(body):active,html.theme--documenter-dark .content kbd.is-delete:not(body):active,html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-delete:not(body):active{background-color:#111414}html.theme--documenter-dark .tag.is-rounded:not(body),html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:not(body),html.theme--documenter-dark .content kbd.is-rounded:not(body),html.theme--documenter-dark #documenter .docs-sidebar .content form.docs-search>input:not(body),html.theme--documenter-dark .docstring>section>a.docs-sourcelink.is-rounded:not(body){border-radius:290486px}html.theme--documenter-dark a.tag:hover,html.theme--documenter-dark .docstring>section>a.docs-sourcelink:hover{text-decoration:underline}html.theme--documenter-dark .title,html.theme--documenter-dark .subtitle{word-break:break-word}html.theme--documenter-dark .title em,html.theme--documenter-dark .title span,html.theme--documenter-dark .subtitle em,html.theme--documenter-dark .subtitle span{font-weight:inherit}html.theme--documenter-dark .title sub,html.theme--documenter-dark .subtitle sub{font-size:.75em}html.theme--documenter-dark .title sup,html.theme--documenter-dark .subtitle sup{font-size:.75em}html.theme--documenter-dark .title .tag,html.theme--documenter-dark .title .content kbd,html.theme--documenter-dark .content .title kbd,html.theme--documenter-dark .title .docstring>section>a.docs-sourcelink,html.theme--documenter-dark .subtitle .tag,html.theme--documenter-dark .subtitle .content kbd,html.theme--documenter-dark .content .subtitle kbd,html.theme--documenter-dark .subtitle .docstring>section>a.docs-sourcelink{vertical-align:middle}html.theme--documenter-dark .title{color:#fff;font-size:2rem;font-weight:500;line-height:1.125}html.theme--documenter-dark .title strong{color:inherit;font-weight:inherit}html.theme--documenter-dark .title+.highlight{margin-top:-0.75rem}html.theme--documenter-dark .title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}html.theme--documenter-dark .title.is-1{font-size:3rem}html.theme--documenter-dark .title.is-2{font-size:2.5rem}html.theme--documenter-dark .title.is-3{font-size:2rem}html.theme--documenter-dark .title.is-4{font-size:1.5rem}html.theme--documenter-dark .title.is-5{font-size:1.25rem}html.theme--documenter-dark .title.is-6{font-size:15px}html.theme--documenter-dark .title.is-7{font-size:.85em}html.theme--documenter-dark .subtitle{color:#8c9b9d;font-size:1.25rem;font-weight:400;line-height:1.25}html.theme--documenter-dark .subtitle strong{color:#8c9b9d;font-weight:600}html.theme--documenter-dark .subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}html.theme--documenter-dark .subtitle.is-1{font-size:3rem}html.theme--documenter-dark .subtitle.is-2{font-size:2.5rem}html.theme--documenter-dark .subtitle.is-3{font-size:2rem}html.theme--documenter-dark .subtitle.is-4{font-size:1.5rem}html.theme--documenter-dark .subtitle.is-5{font-size:1.25rem}html.theme--documenter-dark .subtitle.is-6{font-size:15px}html.theme--documenter-dark .subtitle.is-7{font-size:.85em}html.theme--documenter-dark .heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}html.theme--documenter-dark .highlight{font-weight:400;max-width:100%;overflow:hidden;padding:0}html.theme--documenter-dark .highlight pre{overflow:auto;max-width:100%}html.theme--documenter-dark .number{align-items:center;background-color:#282f2f;border-radius:290486px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}html.theme--documenter-dark .select select,html.theme--documenter-dark .textarea,html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{background-color:#1f2424;border-color:#5e6d6f;border-radius:.4em;color:#dbdee0}html.theme--documenter-dark .select select::-moz-placeholder,html.theme--documenter-dark .textarea::-moz-placeholder,html.theme--documenter-dark .input::-moz-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:rgba(219,222,224,0.3)}html.theme--documenter-dark .select select::-webkit-input-placeholder,html.theme--documenter-dark .textarea::-webkit-input-placeholder,html.theme--documenter-dark .input::-webkit-input-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:rgba(219,222,224,0.3)}html.theme--documenter-dark .select select:-moz-placeholder,html.theme--documenter-dark .textarea:-moz-placeholder,html.theme--documenter-dark .input:-moz-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:rgba(219,222,224,0.3)}html.theme--documenter-dark .select select:-ms-input-placeholder,html.theme--documenter-dark .textarea:-ms-input-placeholder,html.theme--documenter-dark .input:-ms-input-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:rgba(219,222,224,0.3)}html.theme--documenter-dark .select select:hover,html.theme--documenter-dark .textarea:hover,html.theme--documenter-dark .input:hover,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:hover,html.theme--documenter-dark .select select.is-hovered,html.theme--documenter-dark .is-hovered.textarea,html.theme--documenter-dark .is-hovered.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-hovered{border-color:#8c9b9d}html.theme--documenter-dark .select select:focus,html.theme--documenter-dark .textarea:focus,html.theme--documenter-dark .input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:focus,html.theme--documenter-dark .select select.is-focused,html.theme--documenter-dark .is-focused.textarea,html.theme--documenter-dark .is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .select select:active,html.theme--documenter-dark .textarea:active,html.theme--documenter-dark .input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:active,html.theme--documenter-dark .select select.is-active,html.theme--documenter-dark .is-active.textarea,html.theme--documenter-dark .is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{border-color:#1abc9c;box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .select select[disabled],html.theme--documenter-dark .textarea[disabled],html.theme--documenter-dark .input[disabled],html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled],fieldset[disabled] html.theme--documenter-dark .select select,fieldset[disabled] html.theme--documenter-dark .textarea,fieldset[disabled] html.theme--documenter-dark .input,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{background-color:#8c9b9d;border-color:#282f2f;box-shadow:none;color:#fff}html.theme--documenter-dark .select select[disabled]::-moz-placeholder,html.theme--documenter-dark .textarea[disabled]::-moz-placeholder,html.theme--documenter-dark .input[disabled]::-moz-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled]::-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .select select::-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .textarea::-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .input::-moz-placeholder,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:rgba(255,255,255,0.3)}html.theme--documenter-dark .select select[disabled]::-webkit-input-placeholder,html.theme--documenter-dark .textarea[disabled]::-webkit-input-placeholder,html.theme--documenter-dark .input[disabled]::-webkit-input-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled]::-webkit-input-placeholder,fieldset[disabled] html.theme--documenter-dark .select select::-webkit-input-placeholder,fieldset[disabled] html.theme--documenter-dark .textarea::-webkit-input-placeholder,fieldset[disabled] html.theme--documenter-dark .input::-webkit-input-placeholder,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:rgba(255,255,255,0.3)}html.theme--documenter-dark .select select[disabled]:-moz-placeholder,html.theme--documenter-dark .textarea[disabled]:-moz-placeholder,html.theme--documenter-dark .input[disabled]:-moz-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled]:-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .select select:-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .textarea:-moz-placeholder,fieldset[disabled] html.theme--documenter-dark .input:-moz-placeholder,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:rgba(255,255,255,0.3)}html.theme--documenter-dark .select select[disabled]:-ms-input-placeholder,html.theme--documenter-dark .textarea[disabled]:-ms-input-placeholder,html.theme--documenter-dark .input[disabled]:-ms-input-placeholder,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[disabled]:-ms-input-placeholder,fieldset[disabled] html.theme--documenter-dark .select select:-ms-input-placeholder,fieldset[disabled] html.theme--documenter-dark .textarea:-ms-input-placeholder,fieldset[disabled] html.theme--documenter-dark .input:-ms-input-placeholder,fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:rgba(255,255,255,0.3)}html.theme--documenter-dark .textarea,html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{box-shadow:inset 0 1px 2px rgba(10,10,10,0.1);max-width:100%;width:100%}html.theme--documenter-dark .textarea[readonly],html.theme--documenter-dark .input[readonly],html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input[readonly]{box-shadow:none}html.theme--documenter-dark .is-white.textarea,html.theme--documenter-dark .is-white.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-white{border-color:#fff}html.theme--documenter-dark .is-white.textarea:focus,html.theme--documenter-dark .is-white.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-white:focus,html.theme--documenter-dark .is-white.is-focused.textarea,html.theme--documenter-dark .is-white.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-white.textarea:active,html.theme--documenter-dark .is-white.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-white:active,html.theme--documenter-dark .is-white.is-active.textarea,html.theme--documenter-dark .is-white.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--documenter-dark .is-black.textarea,html.theme--documenter-dark .is-black.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-black{border-color:#0a0a0a}html.theme--documenter-dark .is-black.textarea:focus,html.theme--documenter-dark .is-black.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-black:focus,html.theme--documenter-dark .is-black.is-focused.textarea,html.theme--documenter-dark .is-black.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-black.textarea:active,html.theme--documenter-dark .is-black.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-black:active,html.theme--documenter-dark .is-black.is-active.textarea,html.theme--documenter-dark .is-black.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--documenter-dark .is-light.textarea,html.theme--documenter-dark .is-light.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-light{border-color:#ecf0f1}html.theme--documenter-dark .is-light.textarea:focus,html.theme--documenter-dark .is-light.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-light:focus,html.theme--documenter-dark .is-light.is-focused.textarea,html.theme--documenter-dark .is-light.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-light.textarea:active,html.theme--documenter-dark .is-light.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-light:active,html.theme--documenter-dark .is-light.is-active.textarea,html.theme--documenter-dark .is-light.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(236,240,241,0.25)}html.theme--documenter-dark .is-dark.textarea,html.theme--documenter-dark .content kbd.textarea,html.theme--documenter-dark .is-dark.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-dark,html.theme--documenter-dark .content kbd.input{border-color:#282f2f}html.theme--documenter-dark .is-dark.textarea:focus,html.theme--documenter-dark .content kbd.textarea:focus,html.theme--documenter-dark .is-dark.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-dark:focus,html.theme--documenter-dark .content kbd.input:focus,html.theme--documenter-dark .is-dark.is-focused.textarea,html.theme--documenter-dark .content kbd.is-focused.textarea,html.theme--documenter-dark .is-dark.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .content kbd.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar .content form.docs-search>input.is-focused,html.theme--documenter-dark .is-dark.textarea:active,html.theme--documenter-dark .content kbd.textarea:active,html.theme--documenter-dark .is-dark.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-dark:active,html.theme--documenter-dark .content kbd.input:active,html.theme--documenter-dark .is-dark.is-active.textarea,html.theme--documenter-dark .content kbd.is-active.textarea,html.theme--documenter-dark .is-dark.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--documenter-dark .content kbd.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar .content form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(40,47,47,0.25)}html.theme--documenter-dark .is-primary.textarea,html.theme--documenter-dark .docstring>section>a.textarea.docs-sourcelink,html.theme--documenter-dark .is-primary.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-primary,html.theme--documenter-dark .docstring>section>a.input.docs-sourcelink{border-color:#375a7f}html.theme--documenter-dark .is-primary.textarea:focus,html.theme--documenter-dark .docstring>section>a.textarea.docs-sourcelink:focus,html.theme--documenter-dark .is-primary.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-primary:focus,html.theme--documenter-dark .docstring>section>a.input.docs-sourcelink:focus,html.theme--documenter-dark .is-primary.is-focused.textarea,html.theme--documenter-dark .docstring>section>a.is-focused.textarea.docs-sourcelink,html.theme--documenter-dark .is-primary.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .docstring>section>a.is-focused.input.docs-sourcelink,html.theme--documenter-dark .is-primary.textarea:active,html.theme--documenter-dark .docstring>section>a.textarea.docs-sourcelink:active,html.theme--documenter-dark .is-primary.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-primary:active,html.theme--documenter-dark .docstring>section>a.input.docs-sourcelink:active,html.theme--documenter-dark .is-primary.is-active.textarea,html.theme--documenter-dark .docstring>section>a.is-active.textarea.docs-sourcelink,html.theme--documenter-dark .is-primary.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active,html.theme--documenter-dark .docstring>section>a.is-active.input.docs-sourcelink{box-shadow:0 0 0 0.125em rgba(55,90,127,0.25)}html.theme--documenter-dark .is-link.textarea,html.theme--documenter-dark .is-link.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-link{border-color:#1abc9c}html.theme--documenter-dark .is-link.textarea:focus,html.theme--documenter-dark .is-link.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-link:focus,html.theme--documenter-dark .is-link.is-focused.textarea,html.theme--documenter-dark .is-link.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-link.textarea:active,html.theme--documenter-dark .is-link.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-link:active,html.theme--documenter-dark .is-link.is-active.textarea,html.theme--documenter-dark .is-link.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .is-info.textarea,html.theme--documenter-dark .is-info.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-info{border-color:#024c7d}html.theme--documenter-dark .is-info.textarea:focus,html.theme--documenter-dark .is-info.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-info:focus,html.theme--documenter-dark .is-info.is-focused.textarea,html.theme--documenter-dark .is-info.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-info.textarea:active,html.theme--documenter-dark .is-info.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-info:active,html.theme--documenter-dark .is-info.is-active.textarea,html.theme--documenter-dark .is-info.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(2,76,125,0.25)}html.theme--documenter-dark .is-success.textarea,html.theme--documenter-dark .is-success.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-success{border-color:#008438}html.theme--documenter-dark .is-success.textarea:focus,html.theme--documenter-dark .is-success.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-success:focus,html.theme--documenter-dark .is-success.is-focused.textarea,html.theme--documenter-dark .is-success.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-success.textarea:active,html.theme--documenter-dark .is-success.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-success:active,html.theme--documenter-dark .is-success.is-active.textarea,html.theme--documenter-dark .is-success.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(0,132,56,0.25)}html.theme--documenter-dark .is-warning.textarea,html.theme--documenter-dark .is-warning.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-warning{border-color:#ad8100}html.theme--documenter-dark .is-warning.textarea:focus,html.theme--documenter-dark .is-warning.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-warning:focus,html.theme--documenter-dark .is-warning.is-focused.textarea,html.theme--documenter-dark .is-warning.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-warning.textarea:active,html.theme--documenter-dark .is-warning.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-warning:active,html.theme--documenter-dark .is-warning.is-active.textarea,html.theme--documenter-dark .is-warning.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(173,129,0,0.25)}html.theme--documenter-dark .is-danger.textarea,html.theme--documenter-dark .is-danger.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-danger{border-color:#9e1b0d}html.theme--documenter-dark .is-danger.textarea:focus,html.theme--documenter-dark .is-danger.input:focus,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-danger:focus,html.theme--documenter-dark .is-danger.is-focused.textarea,html.theme--documenter-dark .is-danger.is-focused.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-focused,html.theme--documenter-dark .is-danger.textarea:active,html.theme--documenter-dark .is-danger.input:active,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-danger:active,html.theme--documenter-dark .is-danger.is-active.textarea,html.theme--documenter-dark .is-danger.is-active.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(158,27,13,0.25)}html.theme--documenter-dark .is-small.textarea,html.theme--documenter-dark .is-small.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{border-radius:3px;font-size:.85em}html.theme--documenter-dark .is-medium.textarea,html.theme--documenter-dark .is-medium.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-medium{font-size:1.25rem}html.theme--documenter-dark .is-large.textarea,html.theme--documenter-dark .is-large.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-large{font-size:1.5rem}html.theme--documenter-dark .is-fullwidth.textarea,html.theme--documenter-dark .is-fullwidth.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-fullwidth{display:block;width:100%}html.theme--documenter-dark .is-inline.textarea,html.theme--documenter-dark .is-inline.input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-inline{display:inline;width:auto}html.theme--documenter-dark .input.is-rounded,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{border-radius:290486px;padding-left:1em;padding-right:1em}html.theme--documenter-dark .input.is-static,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}html.theme--documenter-dark .textarea{display:block;max-width:100%;min-width:100%;padding:0.625em;resize:vertical}html.theme--documenter-dark .textarea:not([rows]){max-height:600px;min-height:120px}html.theme--documenter-dark .textarea[rows]{height:initial}html.theme--documenter-dark .textarea.has-fixed-size{resize:none}html.theme--documenter-dark .radio,html.theme--documenter-dark .checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}html.theme--documenter-dark .radio input,html.theme--documenter-dark .checkbox input{cursor:pointer}html.theme--documenter-dark .radio:hover,html.theme--documenter-dark .checkbox:hover{color:#8c9b9d}html.theme--documenter-dark .radio[disabled],html.theme--documenter-dark .checkbox[disabled],fieldset[disabled] html.theme--documenter-dark .radio,fieldset[disabled] html.theme--documenter-dark .checkbox{color:#fff;cursor:not-allowed}html.theme--documenter-dark .radio+.radio{margin-left:0.5em}html.theme--documenter-dark .select{display:inline-block;max-width:100%;position:relative;vertical-align:top}html.theme--documenter-dark .select:not(.is-multiple){height:2.25em}html.theme--documenter-dark .select:not(.is-multiple):not(.is-loading)::after{border-color:#1abc9c;right:1.125em;z-index:4}html.theme--documenter-dark .select.is-rounded select,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.select select{border-radius:290486px;padding-left:1em}html.theme--documenter-dark .select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}html.theme--documenter-dark .select select::-ms-expand{display:none}html.theme--documenter-dark .select select[disabled]:hover,fieldset[disabled] html.theme--documenter-dark .select select:hover{border-color:#282f2f}html.theme--documenter-dark .select select:not([multiple]){padding-right:2.5em}html.theme--documenter-dark .select select[multiple]{height:auto;padding:0}html.theme--documenter-dark .select select[multiple] option{padding:0.5em 1em}html.theme--documenter-dark .select:not(.is-multiple):not(.is-loading):hover::after{border-color:#8c9b9d}html.theme--documenter-dark .select.is-white:not(:hover)::after{border-color:#fff}html.theme--documenter-dark .select.is-white select{border-color:#fff}html.theme--documenter-dark .select.is-white select:hover,html.theme--documenter-dark .select.is-white select.is-hovered{border-color:#f2f2f2}html.theme--documenter-dark .select.is-white select:focus,html.theme--documenter-dark .select.is-white select.is-focused,html.theme--documenter-dark .select.is-white select:active,html.theme--documenter-dark .select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}html.theme--documenter-dark .select.is-black:not(:hover)::after{border-color:#0a0a0a}html.theme--documenter-dark .select.is-black select{border-color:#0a0a0a}html.theme--documenter-dark .select.is-black select:hover,html.theme--documenter-dark .select.is-black select.is-hovered{border-color:#000}html.theme--documenter-dark .select.is-black select:focus,html.theme--documenter-dark .select.is-black select.is-focused,html.theme--documenter-dark .select.is-black select:active,html.theme--documenter-dark .select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}html.theme--documenter-dark .select.is-light:not(:hover)::after{border-color:#ecf0f1}html.theme--documenter-dark .select.is-light select{border-color:#ecf0f1}html.theme--documenter-dark .select.is-light select:hover,html.theme--documenter-dark .select.is-light select.is-hovered{border-color:#dde4e6}html.theme--documenter-dark .select.is-light select:focus,html.theme--documenter-dark .select.is-light select.is-focused,html.theme--documenter-dark .select.is-light select:active,html.theme--documenter-dark .select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(236,240,241,0.25)}html.theme--documenter-dark .select.is-dark:not(:hover)::after,html.theme--documenter-dark .content kbd.select:not(:hover)::after{border-color:#282f2f}html.theme--documenter-dark .select.is-dark select,html.theme--documenter-dark .content kbd.select select{border-color:#282f2f}html.theme--documenter-dark .select.is-dark select:hover,html.theme--documenter-dark .content kbd.select select:hover,html.theme--documenter-dark .select.is-dark select.is-hovered,html.theme--documenter-dark .content kbd.select select.is-hovered{border-color:#1d2122}html.theme--documenter-dark .select.is-dark select:focus,html.theme--documenter-dark .content kbd.select select:focus,html.theme--documenter-dark .select.is-dark select.is-focused,html.theme--documenter-dark .content kbd.select select.is-focused,html.theme--documenter-dark .select.is-dark select:active,html.theme--documenter-dark .content kbd.select select:active,html.theme--documenter-dark .select.is-dark select.is-active,html.theme--documenter-dark .content kbd.select select.is-active{box-shadow:0 0 0 0.125em rgba(40,47,47,0.25)}html.theme--documenter-dark .select.is-primary:not(:hover)::after,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink:not(:hover)::after{border-color:#375a7f}html.theme--documenter-dark .select.is-primary select,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select{border-color:#375a7f}html.theme--documenter-dark .select.is-primary select:hover,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select:hover,html.theme--documenter-dark .select.is-primary select.is-hovered,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select.is-hovered{border-color:#2f4d6d}html.theme--documenter-dark .select.is-primary select:focus,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select:focus,html.theme--documenter-dark .select.is-primary select.is-focused,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select.is-focused,html.theme--documenter-dark .select.is-primary select:active,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select:active,html.theme--documenter-dark .select.is-primary select.is-active,html.theme--documenter-dark .docstring>section>a.select.docs-sourcelink select.is-active{box-shadow:0 0 0 0.125em rgba(55,90,127,0.25)}html.theme--documenter-dark .select.is-link:not(:hover)::after{border-color:#1abc9c}html.theme--documenter-dark .select.is-link select{border-color:#1abc9c}html.theme--documenter-dark .select.is-link select:hover,html.theme--documenter-dark .select.is-link select.is-hovered{border-color:#17a689}html.theme--documenter-dark .select.is-link select:focus,html.theme--documenter-dark .select.is-link select.is-focused,html.theme--documenter-dark .select.is-link select:active,html.theme--documenter-dark .select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(26,188,156,0.25)}html.theme--documenter-dark .select.is-info:not(:hover)::after{border-color:#024c7d}html.theme--documenter-dark .select.is-info select{border-color:#024c7d}html.theme--documenter-dark .select.is-info select:hover,html.theme--documenter-dark .select.is-info select.is-hovered{border-color:#023d64}html.theme--documenter-dark .select.is-info select:focus,html.theme--documenter-dark .select.is-info select.is-focused,html.theme--documenter-dark .select.is-info select:active,html.theme--documenter-dark .select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(2,76,125,0.25)}html.theme--documenter-dark .select.is-success:not(:hover)::after{border-color:#008438}html.theme--documenter-dark .select.is-success select{border-color:#008438}html.theme--documenter-dark .select.is-success select:hover,html.theme--documenter-dark .select.is-success select.is-hovered{border-color:#006b2d}html.theme--documenter-dark .select.is-success select:focus,html.theme--documenter-dark .select.is-success select.is-focused,html.theme--documenter-dark .select.is-success select:active,html.theme--documenter-dark .select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(0,132,56,0.25)}html.theme--documenter-dark .select.is-warning:not(:hover)::after{border-color:#ad8100}html.theme--documenter-dark .select.is-warning select{border-color:#ad8100}html.theme--documenter-dark .select.is-warning select:hover,html.theme--documenter-dark .select.is-warning select.is-hovered{border-color:#946e00}html.theme--documenter-dark .select.is-warning select:focus,html.theme--documenter-dark .select.is-warning select.is-focused,html.theme--documenter-dark .select.is-warning select:active,html.theme--documenter-dark .select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(173,129,0,0.25)}html.theme--documenter-dark .select.is-danger:not(:hover)::after{border-color:#9e1b0d}html.theme--documenter-dark .select.is-danger select{border-color:#9e1b0d}html.theme--documenter-dark .select.is-danger select:hover,html.theme--documenter-dark .select.is-danger select.is-hovered{border-color:#86170b}html.theme--documenter-dark .select.is-danger select:focus,html.theme--documenter-dark .select.is-danger select.is-focused,html.theme--documenter-dark .select.is-danger select:active,html.theme--documenter-dark .select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(158,27,13,0.25)}html.theme--documenter-dark .select.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.select{border-radius:3px;font-size:.85em}html.theme--documenter-dark .select.is-medium{font-size:1.25rem}html.theme--documenter-dark .select.is-large{font-size:1.5rem}html.theme--documenter-dark .select.is-disabled::after{border-color:#fff}html.theme--documenter-dark .select.is-fullwidth{width:100%}html.theme--documenter-dark .select.is-fullwidth select{width:100%}html.theme--documenter-dark .select.is-loading::after{margin-top:0;position:absolute;right:0.625em;top:0.625em;transform:none}html.theme--documenter-dark .select.is-loading.is-small:after,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.85em}html.theme--documenter-dark .select.is-loading.is-medium:after{font-size:1.25rem}html.theme--documenter-dark .select.is-loading.is-large:after{font-size:1.5rem}html.theme--documenter-dark .file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}html.theme--documenter-dark .file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .file.is-white:hover .file-cta,html.theme--documenter-dark .file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .file.is-white:focus .file-cta,html.theme--documenter-dark .file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#0a0a0a}html.theme--documenter-dark .file.is-white:active .file-cta,html.theme--documenter-dark .file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}html.theme--documenter-dark .file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-black:hover .file-cta,html.theme--documenter-dark .file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-black:focus .file-cta,html.theme--documenter-dark .file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(10,10,10,0.25);color:#fff}html.theme--documenter-dark .file.is-black:active .file-cta,html.theme--documenter-dark .file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-light .file-cta{background-color:#ecf0f1;border-color:transparent;color:#282f2f}html.theme--documenter-dark .file.is-light:hover .file-cta,html.theme--documenter-dark .file.is-light.is-hovered .file-cta{background-color:#e5eaec;border-color:transparent;color:#282f2f}html.theme--documenter-dark .file.is-light:focus .file-cta,html.theme--documenter-dark .file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(236,240,241,0.25);color:#282f2f}html.theme--documenter-dark .file.is-light:active .file-cta,html.theme--documenter-dark .file.is-light.is-active .file-cta{background-color:#dde4e6;border-color:transparent;color:#282f2f}html.theme--documenter-dark .file.is-dark .file-cta,html.theme--documenter-dark .content kbd.file .file-cta{background-color:#282f2f;border-color:transparent;color:#ecf0f1}html.theme--documenter-dark .file.is-dark:hover .file-cta,html.theme--documenter-dark .content kbd.file:hover .file-cta,html.theme--documenter-dark .file.is-dark.is-hovered .file-cta,html.theme--documenter-dark .content kbd.file.is-hovered .file-cta{background-color:#232829;border-color:transparent;color:#ecf0f1}html.theme--documenter-dark .file.is-dark:focus .file-cta,html.theme--documenter-dark .content kbd.file:focus .file-cta,html.theme--documenter-dark .file.is-dark.is-focused .file-cta,html.theme--documenter-dark .content kbd.file.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(40,47,47,0.25);color:#ecf0f1}html.theme--documenter-dark .file.is-dark:active .file-cta,html.theme--documenter-dark .content kbd.file:active .file-cta,html.theme--documenter-dark .file.is-dark.is-active .file-cta,html.theme--documenter-dark .content kbd.file.is-active .file-cta{background-color:#1d2122;border-color:transparent;color:#ecf0f1}html.theme--documenter-dark .file.is-primary .file-cta,html.theme--documenter-dark .docstring>section>a.file.docs-sourcelink .file-cta{background-color:#375a7f;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-primary:hover .file-cta,html.theme--documenter-dark .docstring>section>a.file.docs-sourcelink:hover .file-cta,html.theme--documenter-dark .file.is-primary.is-hovered .file-cta,html.theme--documenter-dark .docstring>section>a.file.is-hovered.docs-sourcelink .file-cta{background-color:#335476;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-primary:focus .file-cta,html.theme--documenter-dark .docstring>section>a.file.docs-sourcelink:focus .file-cta,html.theme--documenter-dark .file.is-primary.is-focused .file-cta,html.theme--documenter-dark .docstring>section>a.file.is-focused.docs-sourcelink .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(55,90,127,0.25);color:#fff}html.theme--documenter-dark .file.is-primary:active .file-cta,html.theme--documenter-dark .docstring>section>a.file.docs-sourcelink:active .file-cta,html.theme--documenter-dark .file.is-primary.is-active .file-cta,html.theme--documenter-dark .docstring>section>a.file.is-active.docs-sourcelink .file-cta{background-color:#2f4d6d;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-link .file-cta{background-color:#1abc9c;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-link:hover .file-cta,html.theme--documenter-dark .file.is-link.is-hovered .file-cta{background-color:#18b193;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-link:focus .file-cta,html.theme--documenter-dark .file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(26,188,156,0.25);color:#fff}html.theme--documenter-dark .file.is-link:active .file-cta,html.theme--documenter-dark .file.is-link.is-active .file-cta{background-color:#17a689;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-info .file-cta{background-color:#024c7d;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-info:hover .file-cta,html.theme--documenter-dark .file.is-info.is-hovered .file-cta{background-color:#024470;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-info:focus .file-cta,html.theme--documenter-dark .file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(2,76,125,0.25);color:#fff}html.theme--documenter-dark .file.is-info:active .file-cta,html.theme--documenter-dark .file.is-info.is-active .file-cta{background-color:#023d64;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-success .file-cta{background-color:#008438;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-success:hover .file-cta,html.theme--documenter-dark .file.is-success.is-hovered .file-cta{background-color:#073;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-success:focus .file-cta,html.theme--documenter-dark .file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(0,132,56,0.25);color:#fff}html.theme--documenter-dark .file.is-success:active .file-cta,html.theme--documenter-dark .file.is-success.is-active .file-cta{background-color:#006b2d;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-warning .file-cta{background-color:#ad8100;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-warning:hover .file-cta,html.theme--documenter-dark .file.is-warning.is-hovered .file-cta{background-color:#a07700;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-warning:focus .file-cta,html.theme--documenter-dark .file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(173,129,0,0.25);color:#fff}html.theme--documenter-dark .file.is-warning:active .file-cta,html.theme--documenter-dark .file.is-warning.is-active .file-cta{background-color:#946e00;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-danger .file-cta{background-color:#9e1b0d;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-danger:hover .file-cta,html.theme--documenter-dark .file.is-danger.is-hovered .file-cta{background-color:#92190c;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-danger:focus .file-cta,html.theme--documenter-dark .file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(158,27,13,0.25);color:#fff}html.theme--documenter-dark .file.is-danger:active .file-cta,html.theme--documenter-dark .file.is-danger.is-active .file-cta{background-color:#86170b;border-color:transparent;color:#fff}html.theme--documenter-dark .file.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.file{font-size:.85em}html.theme--documenter-dark .file.is-medium{font-size:1.25rem}html.theme--documenter-dark .file.is-medium .file-icon .fa{font-size:21px}html.theme--documenter-dark .file.is-large{font-size:1.5rem}html.theme--documenter-dark .file.is-large .file-icon .fa{font-size:28px}html.theme--documenter-dark .file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--documenter-dark .file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--documenter-dark .file.has-name.is-empty .file-cta{border-radius:.4em}html.theme--documenter-dark .file.has-name.is-empty .file-name{display:none}html.theme--documenter-dark .file.is-boxed .file-label{flex-direction:column}html.theme--documenter-dark .file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}html.theme--documenter-dark .file.is-boxed .file-name{border-width:0 1px 1px}html.theme--documenter-dark .file.is-boxed .file-icon{height:1.5em;width:1.5em}html.theme--documenter-dark .file.is-boxed .file-icon .fa{font-size:21px}html.theme--documenter-dark .file.is-boxed.is-small .file-icon .fa,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-boxed .file-icon .fa{font-size:14px}html.theme--documenter-dark .file.is-boxed.is-medium .file-icon .fa{font-size:28px}html.theme--documenter-dark .file.is-boxed.is-large .file-icon .fa{font-size:35px}html.theme--documenter-dark .file.is-boxed.has-name .file-cta{border-radius:.4em .4em 0 0}html.theme--documenter-dark .file.is-boxed.has-name .file-name{border-radius:0 0 .4em .4em;border-width:0 1px 1px}html.theme--documenter-dark .file.is-centered{justify-content:center}html.theme--documenter-dark .file.is-fullwidth .file-label{width:100%}html.theme--documenter-dark .file.is-fullwidth .file-name{flex-grow:1;max-width:none}html.theme--documenter-dark .file.is-right{justify-content:flex-end}html.theme--documenter-dark .file.is-right .file-cta{border-radius:0 .4em .4em 0}html.theme--documenter-dark .file.is-right .file-name{border-radius:.4em 0 0 .4em;border-width:1px 0 1px 1px;order:-1}html.theme--documenter-dark .file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}html.theme--documenter-dark .file-label:hover .file-cta{background-color:#e5eaec;color:#282f2f}html.theme--documenter-dark .file-label:hover .file-name{border-color:#596668}html.theme--documenter-dark .file-label:active .file-cta{background-color:#dde4e6;color:#282f2f}html.theme--documenter-dark .file-label:active .file-name{border-color:#535f61}html.theme--documenter-dark .file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}html.theme--documenter-dark .file-cta,html.theme--documenter-dark .file-name{border-color:#5e6d6f;border-radius:.4em;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}html.theme--documenter-dark .file-cta{background-color:#ecf0f1;color:#343c3d}html.theme--documenter-dark .file-name{border-color:#5e6d6f;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:left;text-overflow:ellipsis}html.theme--documenter-dark .file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:0.5em;width:1em}html.theme--documenter-dark .file-icon .fa{font-size:14px}html.theme--documenter-dark .label{color:#282f2f;display:block;font-size:15px;font-weight:700}html.theme--documenter-dark .label:not(:last-child){margin-bottom:0.5em}html.theme--documenter-dark .label.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.label{font-size:.85em}html.theme--documenter-dark .label.is-medium{font-size:1.25rem}html.theme--documenter-dark .label.is-large{font-size:1.5rem}html.theme--documenter-dark .help{display:block;font-size:.85em;margin-top:0.25rem}html.theme--documenter-dark .help.is-white{color:#fff}html.theme--documenter-dark .help.is-black{color:#0a0a0a}html.theme--documenter-dark .help.is-light{color:#ecf0f1}html.theme--documenter-dark .help.is-dark,html.theme--documenter-dark .content kbd.help{color:#282f2f}html.theme--documenter-dark .help.is-primary,html.theme--documenter-dark .docstring>section>a.help.docs-sourcelink{color:#375a7f}html.theme--documenter-dark .help.is-link{color:#1abc9c}html.theme--documenter-dark .help.is-info{color:#024c7d}html.theme--documenter-dark .help.is-success{color:#008438}html.theme--documenter-dark .help.is-warning{color:#ad8100}html.theme--documenter-dark .help.is-danger{color:#9e1b0d}html.theme--documenter-dark .field:not(:last-child){margin-bottom:0.75rem}html.theme--documenter-dark .field.has-addons{display:flex;justify-content:flex-start}html.theme--documenter-dark .field.has-addons .control:not(:last-child){margin-right:-1px}html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) .button,html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) .input,html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search>input,html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) .button,html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) .input,html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search>input,html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) .button,html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) .input,html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search>input,html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .button.is-hovered:not([disabled]),html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .input.is-hovered:not([disabled]),html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-hovered:not([disabled]),html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-hovered:not([disabled]),html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .select select.is-hovered:not([disabled]){z-index:2}html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):focus,html.theme--documenter-dark .field.has-addons .control .button.is-focused:not([disabled]),html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):active,html.theme--documenter-dark .field.has-addons .control .button.is-active:not([disabled]),html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):focus,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus,html.theme--documenter-dark .field.has-addons .control .input.is-focused:not([disabled]),html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]),html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]),html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):active,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active,html.theme--documenter-dark .field.has-addons .control .input.is-active:not([disabled]),html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]),html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]),html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):focus,html.theme--documenter-dark .field.has-addons .control .select select.is-focused:not([disabled]),html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):active,html.theme--documenter-dark .field.has-addons .control .select select.is-active:not([disabled]){z-index:3}html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):focus:hover,html.theme--documenter-dark .field.has-addons .control .button.is-focused:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):active:hover,html.theme--documenter-dark .field.has-addons .control .button.is-active:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):focus:hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus:hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus:hover,html.theme--documenter-dark .field.has-addons .control .input.is-focused:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]):hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):active:hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active:hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active:hover,html.theme--documenter-dark .field.has-addons .control .input.is-active:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]):hover,html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):focus:hover,html.theme--documenter-dark .field.has-addons .control .select select.is-focused:not([disabled]):hover,html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):active:hover,html.theme--documenter-dark .field.has-addons .control .select select.is-active:not([disabled]):hover{z-index:4}html.theme--documenter-dark .field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .field.has-addons.has-addons-centered{justify-content:center}html.theme--documenter-dark .field.has-addons.has-addons-right{justify-content:flex-end}html.theme--documenter-dark .field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}html.theme--documenter-dark .field.is-grouped{display:flex;justify-content:flex-start}html.theme--documenter-dark .field.is-grouped>.control{flex-shrink:0}html.theme--documenter-dark .field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:0.75rem}html.theme--documenter-dark .field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .field.is-grouped.is-grouped-centered{justify-content:center}html.theme--documenter-dark .field.is-grouped.is-grouped-right{justify-content:flex-end}html.theme--documenter-dark .field.is-grouped.is-grouped-multiline{flex-wrap:wrap}html.theme--documenter-dark .field.is-grouped.is-grouped-multiline>.control:last-child,html.theme--documenter-dark .field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}html.theme--documenter-dark .field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}html.theme--documenter-dark .field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--documenter-dark .field.is-horizontal{display:flex}}html.theme--documenter-dark .field-label .label{font-size:inherit}@media screen and (max-width: 768px){html.theme--documenter-dark .field-label{margin-bottom:0.5rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}html.theme--documenter-dark .field-label.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.field-label{font-size:.85em;padding-top:0.375em}html.theme--documenter-dark .field-label.is-normal{padding-top:0.375em}html.theme--documenter-dark .field-label.is-medium{font-size:1.25rem;padding-top:0.375em}html.theme--documenter-dark .field-label.is-large{font-size:1.5rem;padding-top:0.375em}}html.theme--documenter-dark .field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{html.theme--documenter-dark .field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}html.theme--documenter-dark .field-body .field{margin-bottom:0}html.theme--documenter-dark .field-body>.field{flex-shrink:1}html.theme--documenter-dark .field-body>.field:not(.is-narrow){flex-grow:1}html.theme--documenter-dark .field-body>.field:not(:last-child){margin-right:0.75rem}}html.theme--documenter-dark .control{box-sizing:border-box;clear:both;font-size:15px;position:relative;text-align:left}html.theme--documenter-dark .control.has-icons-left .input:focus~.icon,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input:focus~.icon,html.theme--documenter-dark .control.has-icons-left .select:focus~.icon,html.theme--documenter-dark .control.has-icons-right .input:focus~.icon,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input:focus~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input:focus~.icon,html.theme--documenter-dark .control.has-icons-right .select:focus~.icon{color:#5e6d6f}html.theme--documenter-dark .control.has-icons-left .input.is-small~.icon,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input~.icon,html.theme--documenter-dark .control.has-icons-left .select.is-small~.icon,html.theme--documenter-dark .control.has-icons-right .input.is-small~.icon,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input~.icon,html.theme--documenter-dark .control.has-icons-right .select.is-small~.icon{font-size:.85em}html.theme--documenter-dark .control.has-icons-left .input.is-medium~.icon,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-medium~.icon,html.theme--documenter-dark .control.has-icons-left .select.is-medium~.icon,html.theme--documenter-dark .control.has-icons-right .input.is-medium~.icon,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-medium~.icon,html.theme--documenter-dark .control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}html.theme--documenter-dark .control.has-icons-left .input.is-large~.icon,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-large~.icon,html.theme--documenter-dark .control.has-icons-left .select.is-large~.icon,html.theme--documenter-dark .control.has-icons-right .input.is-large~.icon,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-large~.icon,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-large~.icon,html.theme--documenter-dark .control.has-icons-right .select.is-large~.icon{font-size:1.5rem}html.theme--documenter-dark .control.has-icons-left .icon,html.theme--documenter-dark .control.has-icons-right .icon{color:#dbdee0;height:2.25em;pointer-events:none;position:absolute;top:0;width:2.25em;z-index:4}html.theme--documenter-dark .control.has-icons-left .input,html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search>input,html.theme--documenter-dark .control.has-icons-left .select select{padding-left:2.25em}html.theme--documenter-dark .control.has-icons-left .icon.is-left{left:0}html.theme--documenter-dark .control.has-icons-right .input,html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search>input,html.theme--documenter-dark .control.has-icons-right .select select{padding-right:2.25em}html.theme--documenter-dark .control.has-icons-right .icon.is-right{right:0}html.theme--documenter-dark .control.is-loading::after{position:absolute !important;right:0.625em;top:0.625em;z-index:4}html.theme--documenter-dark .control.is-loading.is-small:after,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.85em}html.theme--documenter-dark .control.is-loading.is-medium:after{font-size:1.25rem}html.theme--documenter-dark .control.is-loading.is-large:after{font-size:1.5rem}html.theme--documenter-dark .breadcrumb{font-size:15px;white-space:nowrap}html.theme--documenter-dark .breadcrumb a{align-items:center;color:#1abc9c;display:flex;justify-content:center;padding:0 .75em}html.theme--documenter-dark .breadcrumb a:hover{color:#1dd2af}html.theme--documenter-dark .breadcrumb li{align-items:center;display:flex}html.theme--documenter-dark .breadcrumb li:first-child a{padding-left:0}html.theme--documenter-dark .breadcrumb li.is-active a{color:#f2f2f2;cursor:default;pointer-events:none}html.theme--documenter-dark .breadcrumb li+li::before{color:#8c9b9d;content:"\0002f"}html.theme--documenter-dark .breadcrumb ul,html.theme--documenter-dark .breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}html.theme--documenter-dark .breadcrumb .icon:first-child{margin-right:0.5em}html.theme--documenter-dark .breadcrumb .icon:last-child{margin-left:0.5em}html.theme--documenter-dark .breadcrumb.is-centered ol,html.theme--documenter-dark .breadcrumb.is-centered ul{justify-content:center}html.theme--documenter-dark .breadcrumb.is-right ol,html.theme--documenter-dark .breadcrumb.is-right ul{justify-content:flex-end}html.theme--documenter-dark .breadcrumb.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.breadcrumb{font-size:.85em}html.theme--documenter-dark .breadcrumb.is-medium{font-size:1.25rem}html.theme--documenter-dark .breadcrumb.is-large{font-size:1.5rem}html.theme--documenter-dark .breadcrumb.has-arrow-separator li+li::before{content:"\02192"}html.theme--documenter-dark .breadcrumb.has-bullet-separator li+li::before{content:"\02022"}html.theme--documenter-dark .breadcrumb.has-dot-separator li+li::before{content:"\000b7"}html.theme--documenter-dark .breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}html.theme--documenter-dark .card{background-color:#fff;box-shadow:0 2px 3px rgba(10,10,10,0.1),0 0 0 1px rgba(10,10,10,0.1);color:#fff;max-width:100%;position:relative}html.theme--documenter-dark .card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 1px 2px rgba(10,10,10,0.1);display:flex}html.theme--documenter-dark .card-header-title{align-items:center;color:#f2f2f2;display:flex;flex-grow:1;font-weight:700;padding:.75rem}html.theme--documenter-dark .card-header-title.is-centered{justify-content:center}html.theme--documenter-dark .card-header-icon{align-items:center;cursor:pointer;display:flex;justify-content:center;padding:.75rem}html.theme--documenter-dark .card-image{display:block;position:relative}html.theme--documenter-dark .card-content{background-color:rgba(0,0,0,0);padding:1.5rem}html.theme--documenter-dark .card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #5e6d6f;align-items:stretch;display:flex}html.theme--documenter-dark .card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}html.theme--documenter-dark .card-footer-item:not(:last-child){border-right:1px solid #5e6d6f}html.theme--documenter-dark .card .media:not(:last-child){margin-bottom:1.5rem}html.theme--documenter-dark .dropdown{display:inline-flex;position:relative;vertical-align:top}html.theme--documenter-dark .dropdown.is-active .dropdown-menu,html.theme--documenter-dark .dropdown.is-hoverable:hover .dropdown-menu{display:block}html.theme--documenter-dark .dropdown.is-right .dropdown-menu{left:auto;right:0}html.theme--documenter-dark .dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}html.theme--documenter-dark .dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}html.theme--documenter-dark .dropdown-content{background-color:#282f2f;border-radius:.4em;box-shadow:0 2px 3px rgba(10,10,10,0.1),0 0 0 1px rgba(10,10,10,0.1);padding-bottom:.5rem;padding-top:.5rem}html.theme--documenter-dark .dropdown-item{color:#fff;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}html.theme--documenter-dark a.dropdown-item,html.theme--documenter-dark button.dropdown-item{padding-right:3rem;text-align:left;white-space:nowrap;width:100%}html.theme--documenter-dark a.dropdown-item:hover,html.theme--documenter-dark button.dropdown-item:hover{background-color:#282f2f;color:#0a0a0a}html.theme--documenter-dark a.dropdown-item.is-active,html.theme--documenter-dark button.dropdown-item.is-active{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .dropdown-divider{background-color:#5e6d6f;border:none;display:block;height:1px;margin:0.5rem 0}html.theme--documenter-dark .level{align-items:center;justify-content:space-between}html.theme--documenter-dark .level code{border-radius:.4em}html.theme--documenter-dark .level img{display:inline-block;vertical-align:top}html.theme--documenter-dark .level.is-mobile{display:flex}html.theme--documenter-dark .level.is-mobile .level-left,html.theme--documenter-dark .level.is-mobile .level-right{display:flex}html.theme--documenter-dark .level.is-mobile .level-left+.level-right{margin-top:0}html.theme--documenter-dark .level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}html.theme--documenter-dark .level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{html.theme--documenter-dark .level{display:flex}html.theme--documenter-dark .level>.level-item:not(.is-narrow){flex-grow:1}}html.theme--documenter-dark .level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}html.theme--documenter-dark .level-item .title,html.theme--documenter-dark .level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){html.theme--documenter-dark .level-item:not(:last-child){margin-bottom:.75rem}}html.theme--documenter-dark .level-left,html.theme--documenter-dark .level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--documenter-dark .level-left .level-item.is-flexible,html.theme--documenter-dark .level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{html.theme--documenter-dark .level-left .level-item:not(:last-child),html.theme--documenter-dark .level-right .level-item:not(:last-child){margin-right:.75rem}}html.theme--documenter-dark .level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){html.theme--documenter-dark .level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .level-left{display:flex}}html.theme--documenter-dark .level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{html.theme--documenter-dark .level-right{display:flex}}html.theme--documenter-dark .list{background-color:#fff;border-radius:.4em;box-shadow:0 2px 3px rgba(10,10,10,0.1),0 0 0 1px rgba(10,10,10,0.1)}html.theme--documenter-dark .list-item{display:block;padding:0.5em 1em}html.theme--documenter-dark .list-item:not(a){color:#fff}html.theme--documenter-dark .list-item:first-child{border-top-left-radius:.4em;border-top-right-radius:.4em}html.theme--documenter-dark .list-item:last-child{border-bottom-left-radius:.4em;border-bottom-right-radius:.4em}html.theme--documenter-dark .list-item:not(:last-child){border-bottom:1px solid #5e6d6f}html.theme--documenter-dark .list-item.is-active{background-color:#1abc9c;color:#fff}html.theme--documenter-dark a.list-item{background-color:#282f2f;cursor:pointer}html.theme--documenter-dark .media{align-items:flex-start;display:flex;text-align:left}html.theme--documenter-dark .media .content:not(:last-child){margin-bottom:0.75rem}html.theme--documenter-dark .media .media{border-top:1px solid rgba(94,109,111,0.5);display:flex;padding-top:0.75rem}html.theme--documenter-dark .media .media .content:not(:last-child),html.theme--documenter-dark .media .media .control:not(:last-child){margin-bottom:0.5rem}html.theme--documenter-dark .media .media .media{padding-top:0.5rem}html.theme--documenter-dark .media .media .media+.media{margin-top:0.5rem}html.theme--documenter-dark .media+.media{border-top:1px solid rgba(94,109,111,0.5);margin-top:1rem;padding-top:1rem}html.theme--documenter-dark .media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}html.theme--documenter-dark .media-left,html.theme--documenter-dark .media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}html.theme--documenter-dark .media-left{margin-right:1rem}html.theme--documenter-dark .media-right{margin-left:1rem}html.theme--documenter-dark .media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:left}@media screen and (max-width: 768px){html.theme--documenter-dark .media-content{overflow-x:auto}}html.theme--documenter-dark .menu{font-size:15px}html.theme--documenter-dark .menu.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.menu{font-size:.85em}html.theme--documenter-dark .menu.is-medium{font-size:1.25rem}html.theme--documenter-dark .menu.is-large{font-size:1.5rem}html.theme--documenter-dark .menu-list{line-height:1.25}html.theme--documenter-dark .menu-list a{border-radius:3px;color:#fff;display:block;padding:0.5em 0.75em}html.theme--documenter-dark .menu-list a:hover{background-color:#282f2f;color:#f2f2f2}html.theme--documenter-dark .menu-list a.is-active{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .menu-list li ul{border-left:1px solid #5e6d6f;margin:.75em;padding-left:.75em}html.theme--documenter-dark .menu-label{color:#fff;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}html.theme--documenter-dark .menu-label:not(:first-child){margin-top:1em}html.theme--documenter-dark .menu-label:not(:last-child){margin-bottom:1em}html.theme--documenter-dark .message{background-color:#282f2f;border-radius:.4em;font-size:15px}html.theme--documenter-dark .message strong{color:currentColor}html.theme--documenter-dark .message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}html.theme--documenter-dark .message.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.message{font-size:.85em}html.theme--documenter-dark .message.is-medium{font-size:1.25rem}html.theme--documenter-dark .message.is-large{font-size:1.5rem}html.theme--documenter-dark .message.is-white{background-color:#fff}html.theme--documenter-dark .message.is-white .message-header{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .message.is-white .message-body{border-color:#fff;color:#4d4d4d}html.theme--documenter-dark .message.is-black{background-color:#fafafa}html.theme--documenter-dark .message.is-black .message-header{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .message.is-black .message-body{border-color:#0a0a0a;color:#090909}html.theme--documenter-dark .message.is-light{background-color:#f9fafb}html.theme--documenter-dark .message.is-light .message-header{background-color:#ecf0f1;color:#282f2f}html.theme--documenter-dark .message.is-light .message-body{border-color:#ecf0f1;color:#505050}html.theme--documenter-dark .message.is-dark,html.theme--documenter-dark .content kbd.message{background-color:#f9fafa}html.theme--documenter-dark .message.is-dark .message-header,html.theme--documenter-dark .content kbd.message .message-header{background-color:#282f2f;color:#ecf0f1}html.theme--documenter-dark .message.is-dark .message-body,html.theme--documenter-dark .content kbd.message .message-body{border-color:#282f2f;color:#212526}html.theme--documenter-dark .message.is-primary,html.theme--documenter-dark .docstring>section>a.message.docs-sourcelink{background-color:#f8fafc}html.theme--documenter-dark .message.is-primary .message-header,html.theme--documenter-dark .docstring>section>a.message.docs-sourcelink .message-header{background-color:#375a7f;color:#fff}html.theme--documenter-dark .message.is-primary .message-body,html.theme--documenter-dark .docstring>section>a.message.docs-sourcelink .message-body{border-color:#375a7f;color:#2b4159}html.theme--documenter-dark .message.is-link{background-color:#f6fefc}html.theme--documenter-dark .message.is-link .message-header{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .message.is-link .message-body{border-color:#1abc9c;color:#0b2f28}html.theme--documenter-dark .message.is-info{background-color:#f5fbff}html.theme--documenter-dark .message.is-info .message-header{background-color:#024c7d;color:#fff}html.theme--documenter-dark .message.is-info .message-body{border-color:#024c7d;color:#033659}html.theme--documenter-dark .message.is-success{background-color:#f5fff9}html.theme--documenter-dark .message.is-success .message-header{background-color:#008438;color:#fff}html.theme--documenter-dark .message.is-success .message-body{border-color:#008438;color:#023518}html.theme--documenter-dark .message.is-warning{background-color:#fffcf5}html.theme--documenter-dark .message.is-warning .message-header{background-color:#ad8100;color:#fff}html.theme--documenter-dark .message.is-warning .message-body{border-color:#ad8100;color:#3d2e03}html.theme--documenter-dark .message.is-danger{background-color:#fef6f6}html.theme--documenter-dark .message.is-danger .message-header{background-color:#9e1b0d;color:#fff}html.theme--documenter-dark .message.is-danger .message-body{border-color:#9e1b0d;color:#7a170c}html.theme--documenter-dark .message-header{align-items:center;background-color:#fff;border-radius:.4em .4em 0 0;color:rgba(0,0,0,0.7);display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}html.theme--documenter-dark .message-header .delete{flex-grow:0;flex-shrink:0;margin-left:0.75em}html.theme--documenter-dark .message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}html.theme--documenter-dark .message-body{border-color:#5e6d6f;border-radius:.4em;border-style:solid;border-width:0 0 0 4px;color:#fff;padding:1.25em 1.5em}html.theme--documenter-dark .message-body code,html.theme--documenter-dark .message-body pre{background-color:#fff}html.theme--documenter-dark .message-body pre code{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}html.theme--documenter-dark .modal.is-active{display:flex}html.theme--documenter-dark .modal-background{background-color:rgba(10,10,10,0.86)}html.theme--documenter-dark .modal-content,html.theme--documenter-dark .modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px),print{html.theme--documenter-dark .modal-content,html.theme--documenter-dark .modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}html.theme--documenter-dark .modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}html.theme--documenter-dark .modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}html.theme--documenter-dark .modal-card-head,html.theme--documenter-dark .modal-card-foot{align-items:center;background-color:#282f2f;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}html.theme--documenter-dark .modal-card-head{border-bottom:1px solid #5e6d6f;border-top-left-radius:8px;border-top-right-radius:8px}html.theme--documenter-dark .modal-card-title{color:#f2f2f2;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}html.theme--documenter-dark .modal-card-foot{border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid #5e6d6f}html.theme--documenter-dark .modal-card-foot .button:not(:last-child){margin-right:0.5em}html.theme--documenter-dark .modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}html.theme--documenter-dark .navbar{background-color:#375a7f;min-height:4rem;position:relative;z-index:30}html.theme--documenter-dark .navbar.is-white{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-white .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-white .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-white .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-white .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-white .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-white .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-white .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-white .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-white .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}html.theme--documenter-dark .navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}html.theme--documenter-dark .navbar.is-black{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-black .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-black .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-black .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-black .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-black .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-black .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-black .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-black .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-black .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}html.theme--documenter-dark .navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}html.theme--documenter-dark .navbar.is-light{background-color:#ecf0f1;color:#282f2f}html.theme--documenter-dark .navbar.is-light .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link{color:#282f2f}html.theme--documenter-dark .navbar.is-light .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-light .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-light .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#dde4e6;color:#282f2f}html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link::after{border-color:#282f2f}html.theme--documenter-dark .navbar.is-light .navbar-burger{color:#282f2f}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-light .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-light .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link{color:#282f2f}html.theme--documenter-dark .navbar.is-light .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-light .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-light .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-light .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-light .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-light .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link.is-active{background-color:#dde4e6;color:#282f2f}html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link::after{border-color:#282f2f}html.theme--documenter-dark .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#dde4e6;color:#282f2f}html.theme--documenter-dark .navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#ecf0f1;color:#282f2f}}html.theme--documenter-dark .navbar.is-dark,html.theme--documenter-dark .content kbd.navbar{background-color:#282f2f;color:#ecf0f1}html.theme--documenter-dark .navbar.is-dark .navbar-brand>.navbar-item,html.theme--documenter-dark .content kbd.navbar .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link{color:#ecf0f1}html.theme--documenter-dark .navbar.is-dark .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .content kbd.navbar .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-dark .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .content kbd.navbar .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-dark .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link:focus,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link:hover,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link.is-active{background-color:#1d2122;color:#ecf0f1}html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link::after,html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link::after{border-color:#ecf0f1}html.theme--documenter-dark .navbar.is-dark .navbar-burger,html.theme--documenter-dark .content kbd.navbar .navbar-burger{color:#ecf0f1}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-dark .navbar-start>.navbar-item,html.theme--documenter-dark .content kbd.navbar .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-dark .navbar-end>.navbar-item,html.theme--documenter-dark .content kbd.navbar .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link{color:#ecf0f1}html.theme--documenter-dark .navbar.is-dark .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .content kbd.navbar .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-dark .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .content kbd.navbar .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-dark .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link:focus,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link:hover,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-dark .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .content kbd.navbar .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-dark .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .content kbd.navbar .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-dark .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link:focus,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link:hover,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link.is-active{background-color:#1d2122;color:#ecf0f1}html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link::after,html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link::after,html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link::after{border-color:#ecf0f1}html.theme--documenter-dark .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,html.theme--documenter-dark .content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link{background-color:#1d2122;color:#ecf0f1}html.theme--documenter-dark .navbar.is-dark .navbar-dropdown a.navbar-item.is-active,html.theme--documenter-dark .content kbd.navbar .navbar-dropdown a.navbar-item.is-active{background-color:#282f2f;color:#ecf0f1}}html.theme--documenter-dark .navbar.is-primary,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink{background-color:#375a7f;color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-brand>.navbar-item,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-primary .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-primary .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active{background-color:#2f4d6d;color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link::after,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-burger,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-primary .navbar-start>.navbar-item,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-primary .navbar-end>.navbar-item,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-primary .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-primary .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-primary .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-primary .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-primary .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link:focus,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link:hover,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active{background-color:#2f4d6d;color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link::after,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link::after,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link{background-color:#2f4d6d;color:#fff}html.theme--documenter-dark .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#375a7f;color:#fff}}html.theme--documenter-dark .navbar.is-link{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-link .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-link .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#17a689;color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-link .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-link .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-link .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-link .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-link .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-link .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-link .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link.is-active{background-color:#17a689;color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#17a689;color:#fff}html.theme--documenter-dark .navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#1abc9c;color:#fff}}html.theme--documenter-dark .navbar.is-info{background-color:#024c7d;color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-info .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-info .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#023d64;color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-info .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-info .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-info .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-info .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-info .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-info .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-info .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link.is-active{background-color:#023d64;color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#023d64;color:#fff}html.theme--documenter-dark .navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#024c7d;color:#fff}}html.theme--documenter-dark .navbar.is-success{background-color:#008438;color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-success .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-success .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#006b2d;color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-success .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-success .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-success .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-success .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-success .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-success .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-success .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link.is-active{background-color:#006b2d;color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#006b2d;color:#fff}html.theme--documenter-dark .navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#008438;color:#fff}}html.theme--documenter-dark .navbar.is-warning{background-color:#ad8100;color:#fff}html.theme--documenter-dark .navbar.is-warning .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-warning .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-warning .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-warning .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#946e00;color:#fff}html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-warning .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-warning .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-warning .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-warning .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-warning .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-warning .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-warning .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-warning .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-warning .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#946e00;color:#fff}html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#946e00;color:#fff}html.theme--documenter-dark .navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#ad8100;color:#fff}}html.theme--documenter-dark .navbar.is-danger{background-color:#9e1b0d;color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-brand>.navbar-item,html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-brand>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-danger .navbar-brand>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-danger .navbar-brand>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link:focus,html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link:hover,html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#86170b;color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar.is-danger .navbar-start>.navbar-item,html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link,html.theme--documenter-dark .navbar.is-danger .navbar-end>.navbar-item,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link{color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-start>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-danger .navbar-start>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-danger .navbar-start>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link:focus,html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link:hover,html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link.is-active,html.theme--documenter-dark .navbar.is-danger .navbar-end>a.navbar-item:focus,html.theme--documenter-dark .navbar.is-danger .navbar-end>a.navbar-item:hover,html.theme--documenter-dark .navbar.is-danger .navbar-end>a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link:focus,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link:hover,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#86170b;color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link::after,html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#86170b;color:#fff}html.theme--documenter-dark .navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#9e1b0d;color:#fff}}html.theme--documenter-dark .navbar>.container{align-items:stretch;display:flex;min-height:4rem;width:100%}html.theme--documenter-dark .navbar.has-shadow{box-shadow:0 2px 0 0 #282f2f}html.theme--documenter-dark .navbar.is-fixed-bottom,html.theme--documenter-dark .navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}html.theme--documenter-dark .navbar.is-fixed-bottom{bottom:0}html.theme--documenter-dark .navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #282f2f}html.theme--documenter-dark .navbar.is-fixed-top{top:0}html.theme--documenter-dark html.has-navbar-fixed-top,html.theme--documenter-dark body.has-navbar-fixed-top{padding-top:4rem}html.theme--documenter-dark html.has-navbar-fixed-bottom,html.theme--documenter-dark body.has-navbar-fixed-bottom{padding-bottom:4rem}html.theme--documenter-dark .navbar-brand,html.theme--documenter-dark .navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:4rem}html.theme--documenter-dark .navbar-brand a.navbar-item:focus,html.theme--documenter-dark .navbar-brand a.navbar-item:hover{background-color:transparent}html.theme--documenter-dark .navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}html.theme--documenter-dark .navbar-burger{color:#fff;cursor:pointer;display:block;height:4rem;position:relative;width:4rem;margin-left:auto}html.theme--documenter-dark .navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}html.theme--documenter-dark .navbar-burger span:nth-child(1){top:calc(50% - 6px)}html.theme--documenter-dark .navbar-burger span:nth-child(2){top:calc(50% - 1px)}html.theme--documenter-dark .navbar-burger span:nth-child(3){top:calc(50% + 4px)}html.theme--documenter-dark .navbar-burger:hover{background-color:rgba(0,0,0,0.05)}html.theme--documenter-dark .navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}html.theme--documenter-dark .navbar-burger.is-active span:nth-child(2){opacity:0}html.theme--documenter-dark .navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}html.theme--documenter-dark .navbar-menu{display:none}html.theme--documenter-dark .navbar-item,html.theme--documenter-dark .navbar-link{color:#fff;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}html.theme--documenter-dark .navbar-item .icon:only-child,html.theme--documenter-dark .navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}html.theme--documenter-dark a.navbar-item,html.theme--documenter-dark .navbar-link{cursor:pointer}html.theme--documenter-dark a.navbar-item:focus,html.theme--documenter-dark a.navbar-item:focus-within,html.theme--documenter-dark a.navbar-item:hover,html.theme--documenter-dark a.navbar-item.is-active,html.theme--documenter-dark .navbar-link:focus,html.theme--documenter-dark .navbar-link:focus-within,html.theme--documenter-dark .navbar-link:hover,html.theme--documenter-dark .navbar-link.is-active{background-color:rgba(0,0,0,0);color:#1abc9c}html.theme--documenter-dark .navbar-item{display:block;flex-grow:0;flex-shrink:0}html.theme--documenter-dark .navbar-item img{max-height:1.75rem}html.theme--documenter-dark .navbar-item.has-dropdown{padding:0}html.theme--documenter-dark .navbar-item.is-expanded{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .navbar-item.is-tab{border-bottom:1px solid transparent;min-height:4rem;padding-bottom:calc(0.5rem - 1px)}html.theme--documenter-dark .navbar-item.is-tab:focus,html.theme--documenter-dark .navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#1abc9c}html.theme--documenter-dark .navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#1abc9c;border-bottom-style:solid;border-bottom-width:3px;color:#1abc9c;padding-bottom:calc(0.5rem - 3px)}html.theme--documenter-dark .navbar-content{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .navbar-link:not(.is-arrowless){padding-right:2.5em}html.theme--documenter-dark .navbar-link:not(.is-arrowless)::after{border-color:#fff;margin-top:-0.375em;right:1.125em}html.theme--documenter-dark .navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}html.theme--documenter-dark .navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}html.theme--documenter-dark .navbar-divider{background-color:rgba(0,0,0,0.2);border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1055px){html.theme--documenter-dark .navbar>.container{display:block}html.theme--documenter-dark .navbar-brand .navbar-item,html.theme--documenter-dark .navbar-tabs .navbar-item{align-items:center;display:flex}html.theme--documenter-dark .navbar-link::after{display:none}html.theme--documenter-dark .navbar-menu{background-color:#375a7f;box-shadow:0 8px 16px rgba(10,10,10,0.1);padding:0.5rem 0}html.theme--documenter-dark .navbar-menu.is-active{display:block}html.theme--documenter-dark .navbar.is-fixed-bottom-touch,html.theme--documenter-dark .navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}html.theme--documenter-dark .navbar.is-fixed-bottom-touch{bottom:0}html.theme--documenter-dark .navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--documenter-dark .navbar.is-fixed-top-touch{top:0}html.theme--documenter-dark .navbar.is-fixed-top .navbar-menu,html.theme--documenter-dark .navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 4rem);overflow:auto}html.theme--documenter-dark html.has-navbar-fixed-top-touch,html.theme--documenter-dark body.has-navbar-fixed-top-touch{padding-top:4rem}html.theme--documenter-dark html.has-navbar-fixed-bottom-touch,html.theme--documenter-dark body.has-navbar-fixed-bottom-touch{padding-bottom:4rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .navbar,html.theme--documenter-dark .navbar-menu,html.theme--documenter-dark .navbar-start,html.theme--documenter-dark .navbar-end{align-items:stretch;display:flex}html.theme--documenter-dark .navbar{min-height:4rem}html.theme--documenter-dark .navbar.is-spaced{padding:1rem 2rem}html.theme--documenter-dark .navbar.is-spaced .navbar-start,html.theme--documenter-dark .navbar.is-spaced .navbar-end{align-items:center}html.theme--documenter-dark .navbar.is-spaced a.navbar-item,html.theme--documenter-dark .navbar.is-spaced .navbar-link{border-radius:.4em}html.theme--documenter-dark .navbar.is-transparent a.navbar-item:focus,html.theme--documenter-dark .navbar.is-transparent a.navbar-item:hover,html.theme--documenter-dark .navbar.is-transparent a.navbar-item.is-active,html.theme--documenter-dark .navbar.is-transparent .navbar-link:focus,html.theme--documenter-dark .navbar.is-transparent .navbar-link:hover,html.theme--documenter-dark .navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}html.theme--documenter-dark .navbar.is-transparent .navbar-dropdown a.navbar-item:focus,html.theme--documenter-dark .navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#dbdee0}html.theme--documenter-dark .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#1abc9c}html.theme--documenter-dark .navbar-burger{display:none}html.theme--documenter-dark .navbar-item,html.theme--documenter-dark .navbar-link{align-items:center;display:flex}html.theme--documenter-dark .navbar-item{display:flex}html.theme--documenter-dark .navbar-item.has-dropdown{align-items:stretch}html.theme--documenter-dark .navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}html.theme--documenter-dark .navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:1px solid rgba(0,0,0,0.2);border-radius:8px 8px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,0.1);top:auto}html.theme--documenter-dark .navbar-item.is-active .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced html.theme--documenter-dark .navbar-item.is-active .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--documenter-dark .navbar-item.is-hoverable:focus .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--documenter-dark .navbar-item.is-hoverable:focus-within .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced html.theme--documenter-dark .navbar-item.is-hoverable:hover .navbar-dropdown,html.theme--documenter-dark .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}html.theme--documenter-dark .navbar-menu{flex-grow:1;flex-shrink:0}html.theme--documenter-dark .navbar-start{justify-content:flex-start;margin-right:auto}html.theme--documenter-dark .navbar-end{justify-content:flex-end;margin-left:auto}html.theme--documenter-dark .navbar-dropdown{background-color:#375a7f;border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:1px solid rgba(0,0,0,0.2);box-shadow:0 8px 8px rgba(10,10,10,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}html.theme--documenter-dark .navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}html.theme--documenter-dark .navbar-dropdown a.navbar-item{padding-right:3rem}html.theme--documenter-dark .navbar-dropdown a.navbar-item:focus,html.theme--documenter-dark .navbar-dropdown a.navbar-item:hover{background-color:rgba(0,0,0,0);color:#dbdee0}html.theme--documenter-dark .navbar-dropdown a.navbar-item.is-active{background-color:rgba(0,0,0,0);color:#1abc9c}.navbar.is-spaced html.theme--documenter-dark .navbar-dropdown,html.theme--documenter-dark .navbar-dropdown.is-boxed{border-radius:8px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,0.1), 0 0 0 1px rgba(10,10,10,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}html.theme--documenter-dark .navbar-dropdown.is-right{left:auto;right:0}html.theme--documenter-dark .navbar-divider{display:block}html.theme--documenter-dark .navbar>.container .navbar-brand,html.theme--documenter-dark .container>.navbar .navbar-brand{margin-left:-.75rem}html.theme--documenter-dark .navbar>.container .navbar-menu,html.theme--documenter-dark .container>.navbar .navbar-menu{margin-right:-.75rem}html.theme--documenter-dark .navbar.is-fixed-bottom-desktop,html.theme--documenter-dark .navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}html.theme--documenter-dark .navbar.is-fixed-bottom-desktop{bottom:0}html.theme--documenter-dark .navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}html.theme--documenter-dark .navbar.is-fixed-top-desktop{top:0}html.theme--documenter-dark html.has-navbar-fixed-top-desktop,html.theme--documenter-dark body.has-navbar-fixed-top-desktop{padding-top:4rem}html.theme--documenter-dark html.has-navbar-fixed-bottom-desktop,html.theme--documenter-dark body.has-navbar-fixed-bottom-desktop{padding-bottom:4rem}html.theme--documenter-dark html.has-spaced-navbar-fixed-top,html.theme--documenter-dark body.has-spaced-navbar-fixed-top{padding-top:6rem}html.theme--documenter-dark html.has-spaced-navbar-fixed-bottom,html.theme--documenter-dark body.has-spaced-navbar-fixed-bottom{padding-bottom:6rem}html.theme--documenter-dark a.navbar-item.is-active,html.theme--documenter-dark .navbar-link.is-active{color:#1abc9c}html.theme--documenter-dark a.navbar-item.is-active:not(:focus):not(:hover),html.theme--documenter-dark .navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}html.theme--documenter-dark .navbar-item.has-dropdown:focus .navbar-link,html.theme--documenter-dark .navbar-item.has-dropdown:hover .navbar-link,html.theme--documenter-dark .navbar-item.has-dropdown.is-active .navbar-link{background-color:rgba(0,0,0,0)}}html.theme--documenter-dark .hero.is-fullheight-with-navbar{min-height:calc(100vh - 4rem)}html.theme--documenter-dark .pagination{font-size:15px;margin:-.25rem}html.theme--documenter-dark .pagination.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.pagination{font-size:.85em}html.theme--documenter-dark .pagination.is-medium{font-size:1.25rem}html.theme--documenter-dark .pagination.is-large{font-size:1.5rem}html.theme--documenter-dark .pagination.is-rounded .pagination-previous,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.pagination .pagination-previous,html.theme--documenter-dark .pagination.is-rounded .pagination-next,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.pagination .pagination-next{padding-left:1em;padding-right:1em;border-radius:290486px}html.theme--documenter-dark .pagination.is-rounded .pagination-link,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.pagination .pagination-link{border-radius:290486px}html.theme--documenter-dark .pagination,html.theme--documenter-dark .pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-link{border-color:#5e6d6f;color:#1abc9c;min-width:2.25em}html.theme--documenter-dark .pagination-previous:hover,html.theme--documenter-dark .pagination-next:hover,html.theme--documenter-dark .pagination-link:hover{border-color:#8c9b9d;color:#1dd2af}html.theme--documenter-dark .pagination-previous:focus,html.theme--documenter-dark .pagination-next:focus,html.theme--documenter-dark .pagination-link:focus{border-color:#8c9b9d}html.theme--documenter-dark .pagination-previous:active,html.theme--documenter-dark .pagination-next:active,html.theme--documenter-dark .pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2)}html.theme--documenter-dark .pagination-previous[disabled],html.theme--documenter-dark .pagination-next[disabled],html.theme--documenter-dark .pagination-link[disabled]{background-color:#dbdee0;border-color:#dbdee0;box-shadow:none;color:#5e6d6f;opacity:0.5}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next{padding-left:0.75em;padding-right:0.75em;white-space:nowrap}html.theme--documenter-dark .pagination-link.is-current{background-color:#1abc9c;border-color:#1abc9c;color:#fff}html.theme--documenter-dark .pagination-ellipsis{color:#8c9b9d;pointer-events:none}html.theme--documenter-dark .pagination-list{flex-wrap:wrap}@media screen and (max-width: 768px){html.theme--documenter-dark .pagination{flex-wrap:wrap}html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .pagination-next{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}html.theme--documenter-dark .pagination-previous{order:2}html.theme--documenter-dark .pagination-next{order:3}html.theme--documenter-dark .pagination{justify-content:space-between}html.theme--documenter-dark .pagination.is-centered .pagination-previous{order:1}html.theme--documenter-dark .pagination.is-centered .pagination-list{justify-content:center;order:2}html.theme--documenter-dark .pagination.is-centered .pagination-next{order:3}html.theme--documenter-dark .pagination.is-right .pagination-previous{order:1}html.theme--documenter-dark .pagination.is-right .pagination-next{order:2}html.theme--documenter-dark .pagination.is-right .pagination-list{justify-content:flex-end;order:3}}html.theme--documenter-dark .panel{font-size:15px}html.theme--documenter-dark .panel:not(:last-child){margin-bottom:1.5rem}html.theme--documenter-dark .panel-heading,html.theme--documenter-dark .panel-tabs,html.theme--documenter-dark .panel-block{border-bottom:1px solid #5e6d6f;border-left:1px solid #5e6d6f;border-right:1px solid #5e6d6f}html.theme--documenter-dark .panel-heading:first-child,html.theme--documenter-dark .panel-tabs:first-child,html.theme--documenter-dark .panel-block:first-child{border-top:1px solid #5e6d6f}html.theme--documenter-dark .panel-heading{background-color:#282f2f;border-radius:.4em .4em 0 0;color:#f2f2f2;font-size:1.25em;font-weight:300;line-height:1.25;padding:0.5em 0.75em}html.theme--documenter-dark .panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}html.theme--documenter-dark .panel-tabs a{border-bottom:1px solid #5e6d6f;margin-bottom:-1px;padding:0.5em}html.theme--documenter-dark .panel-tabs a.is-active{border-bottom-color:#343c3d;color:#17a689}html.theme--documenter-dark .panel-list a{color:#fff}html.theme--documenter-dark .panel-list a:hover{color:#1abc9c}html.theme--documenter-dark .panel-block{align-items:center;color:#f2f2f2;display:flex;justify-content:flex-start;padding:0.5em 0.75em}html.theme--documenter-dark .panel-block input[type="checkbox"]{margin-right:0.75em}html.theme--documenter-dark .panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}html.theme--documenter-dark .panel-block.is-wrapped{flex-wrap:wrap}html.theme--documenter-dark .panel-block.is-active{border-left-color:#1abc9c;color:#17a689}html.theme--documenter-dark .panel-block.is-active .panel-icon{color:#1abc9c}html.theme--documenter-dark a.panel-block,html.theme--documenter-dark label.panel-block{cursor:pointer}html.theme--documenter-dark a.panel-block:hover,html.theme--documenter-dark label.panel-block:hover{background-color:#282f2f}html.theme--documenter-dark .panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#fff;margin-right:0.75em}html.theme--documenter-dark .panel-icon .fa{font-size:inherit;line-height:inherit}html.theme--documenter-dark .tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:15px;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}html.theme--documenter-dark .tabs a{align-items:center;border-bottom-color:#5e6d6f;border-bottom-style:solid;border-bottom-width:1px;color:#fff;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}html.theme--documenter-dark .tabs a:hover{border-bottom-color:#f2f2f2;color:#f2f2f2}html.theme--documenter-dark .tabs li{display:block}html.theme--documenter-dark .tabs li.is-active a{border-bottom-color:#1abc9c;color:#1abc9c}html.theme--documenter-dark .tabs ul{align-items:center;border-bottom-color:#5e6d6f;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}html.theme--documenter-dark .tabs ul.is-left{padding-right:0.75em}html.theme--documenter-dark .tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}html.theme--documenter-dark .tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}html.theme--documenter-dark .tabs .icon:first-child{margin-right:0.5em}html.theme--documenter-dark .tabs .icon:last-child{margin-left:0.5em}html.theme--documenter-dark .tabs.is-centered ul{justify-content:center}html.theme--documenter-dark .tabs.is-right ul{justify-content:flex-end}html.theme--documenter-dark .tabs.is-boxed a{border:1px solid transparent;border-radius:.4em .4em 0 0}html.theme--documenter-dark .tabs.is-boxed a:hover{background-color:#282f2f;border-bottom-color:#5e6d6f}html.theme--documenter-dark .tabs.is-boxed li.is-active a{background-color:#fff;border-color:#5e6d6f;border-bottom-color:rgba(0,0,0,0) !important}html.theme--documenter-dark .tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}html.theme--documenter-dark .tabs.is-toggle a{border-color:#5e6d6f;border-style:solid;border-width:1px;margin-bottom:0;position:relative}html.theme--documenter-dark .tabs.is-toggle a:hover{background-color:#282f2f;border-color:#8c9b9d;z-index:2}html.theme--documenter-dark .tabs.is-toggle li+li{margin-left:-1px}html.theme--documenter-dark .tabs.is-toggle li:first-child a{border-radius:.4em 0 0 .4em}html.theme--documenter-dark .tabs.is-toggle li:last-child a{border-radius:0 .4em .4em 0}html.theme--documenter-dark .tabs.is-toggle li.is-active a{background-color:#1abc9c;border-color:#1abc9c;color:#fff;z-index:1}html.theme--documenter-dark .tabs.is-toggle ul{border-bottom:none}html.theme--documenter-dark .tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:290486px;border-top-left-radius:290486px;padding-left:1.25em}html.theme--documenter-dark .tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:290486px;border-top-right-radius:290486px;padding-right:1.25em}html.theme--documenter-dark .tabs.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.tabs{font-size:.85em}html.theme--documenter-dark .tabs.is-medium{font-size:1.25rem}html.theme--documenter-dark .tabs.is-large{font-size:1.5rem}html.theme--documenter-dark .column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>html.theme--documenter-dark .column.is-narrow{flex:none}.columns.is-mobile>html.theme--documenter-dark .column.is-full{flex:none;width:100%}.columns.is-mobile>html.theme--documenter-dark .column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>html.theme--documenter-dark .column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>html.theme--documenter-dark .column.is-half{flex:none;width:50%}.columns.is-mobile>html.theme--documenter-dark .column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>html.theme--documenter-dark .column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>html.theme--documenter-dark .column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>html.theme--documenter-dark .column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>html.theme--documenter-dark .column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>html.theme--documenter-dark .column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-half{margin-left:50%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>html.theme--documenter-dark .column.is-0{flex:none;width:0%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-0{margin-left:0%}.columns.is-mobile>html.theme--documenter-dark .column.is-1{flex:none;width:8.3333333333%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-1{margin-left:8.3333333333%}.columns.is-mobile>html.theme--documenter-dark .column.is-2{flex:none;width:16.6666666667%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-2{margin-left:16.6666666667%}.columns.is-mobile>html.theme--documenter-dark .column.is-3{flex:none;width:25%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-3{margin-left:25%}.columns.is-mobile>html.theme--documenter-dark .column.is-4{flex:none;width:33.3333333333%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-4{margin-left:33.3333333333%}.columns.is-mobile>html.theme--documenter-dark .column.is-5{flex:none;width:41.6666666667%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-5{margin-left:41.6666666667%}.columns.is-mobile>html.theme--documenter-dark .column.is-6{flex:none;width:50%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-6{margin-left:50%}.columns.is-mobile>html.theme--documenter-dark .column.is-7{flex:none;width:58.3333333333%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-7{margin-left:58.3333333333%}.columns.is-mobile>html.theme--documenter-dark .column.is-8{flex:none;width:66.6666666667%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-8{margin-left:66.6666666667%}.columns.is-mobile>html.theme--documenter-dark .column.is-9{flex:none;width:75%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-9{margin-left:75%}.columns.is-mobile>html.theme--documenter-dark .column.is-10{flex:none;width:83.3333333333%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-10{margin-left:83.3333333333%}.columns.is-mobile>html.theme--documenter-dark .column.is-11{flex:none;width:91.6666666667%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-11{margin-left:91.6666666667%}.columns.is-mobile>html.theme--documenter-dark .column.is-12{flex:none;width:100%}.columns.is-mobile>html.theme--documenter-dark .column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){html.theme--documenter-dark .column.is-narrow-mobile{flex:none}html.theme--documenter-dark .column.is-full-mobile{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-mobile{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-mobile{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-mobile{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-mobile{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-mobile{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-mobile{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-mobile{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-mobile{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-mobile{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-mobile{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-mobile{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-mobile{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-mobile{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-mobile{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-mobile{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-mobile{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-mobile{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-mobile{margin-left:80%}html.theme--documenter-dark .column.is-0-mobile{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-mobile{margin-left:0%}html.theme--documenter-dark .column.is-1-mobile{flex:none;width:8.3333333333%}html.theme--documenter-dark .column.is-offset-1-mobile{margin-left:8.3333333333%}html.theme--documenter-dark .column.is-2-mobile{flex:none;width:16.6666666667%}html.theme--documenter-dark .column.is-offset-2-mobile{margin-left:16.6666666667%}html.theme--documenter-dark .column.is-3-mobile{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-mobile{margin-left:25%}html.theme--documenter-dark .column.is-4-mobile{flex:none;width:33.3333333333%}html.theme--documenter-dark .column.is-offset-4-mobile{margin-left:33.3333333333%}html.theme--documenter-dark .column.is-5-mobile{flex:none;width:41.6666666667%}html.theme--documenter-dark .column.is-offset-5-mobile{margin-left:41.6666666667%}html.theme--documenter-dark .column.is-6-mobile{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-mobile{margin-left:50%}html.theme--documenter-dark .column.is-7-mobile{flex:none;width:58.3333333333%}html.theme--documenter-dark .column.is-offset-7-mobile{margin-left:58.3333333333%}html.theme--documenter-dark .column.is-8-mobile{flex:none;width:66.6666666667%}html.theme--documenter-dark .column.is-offset-8-mobile{margin-left:66.6666666667%}html.theme--documenter-dark .column.is-9-mobile{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-mobile{margin-left:75%}html.theme--documenter-dark .column.is-10-mobile{flex:none;width:83.3333333333%}html.theme--documenter-dark .column.is-offset-10-mobile{margin-left:83.3333333333%}html.theme--documenter-dark .column.is-11-mobile{flex:none;width:91.6666666667%}html.theme--documenter-dark .column.is-offset-11-mobile{margin-left:91.6666666667%}html.theme--documenter-dark .column.is-12-mobile{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .column.is-narrow,html.theme--documenter-dark .column.is-narrow-tablet{flex:none}html.theme--documenter-dark .column.is-full,html.theme--documenter-dark .column.is-full-tablet{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters,html.theme--documenter-dark .column.is-three-quarters-tablet{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds,html.theme--documenter-dark .column.is-two-thirds-tablet{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half,html.theme--documenter-dark .column.is-half-tablet{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third,html.theme--documenter-dark .column.is-one-third-tablet{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter,html.theme--documenter-dark .column.is-one-quarter-tablet{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth,html.theme--documenter-dark .column.is-one-fifth-tablet{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths,html.theme--documenter-dark .column.is-two-fifths-tablet{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths,html.theme--documenter-dark .column.is-three-fifths-tablet{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths,html.theme--documenter-dark .column.is-four-fifths-tablet{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters,html.theme--documenter-dark .column.is-offset-three-quarters-tablet{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds,html.theme--documenter-dark .column.is-offset-two-thirds-tablet{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half,html.theme--documenter-dark .column.is-offset-half-tablet{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third,html.theme--documenter-dark .column.is-offset-one-third-tablet{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter,html.theme--documenter-dark .column.is-offset-one-quarter-tablet{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth,html.theme--documenter-dark .column.is-offset-one-fifth-tablet{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths,html.theme--documenter-dark .column.is-offset-two-fifths-tablet{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths,html.theme--documenter-dark .column.is-offset-three-fifths-tablet{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths,html.theme--documenter-dark .column.is-offset-four-fifths-tablet{margin-left:80%}html.theme--documenter-dark .column.is-0,html.theme--documenter-dark .column.is-0-tablet{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0,html.theme--documenter-dark .column.is-offset-0-tablet{margin-left:0%}html.theme--documenter-dark .column.is-1,html.theme--documenter-dark .column.is-1-tablet{flex:none;width:8.3333333333%}html.theme--documenter-dark .column.is-offset-1,html.theme--documenter-dark .column.is-offset-1-tablet{margin-left:8.3333333333%}html.theme--documenter-dark .column.is-2,html.theme--documenter-dark .column.is-2-tablet{flex:none;width:16.6666666667%}html.theme--documenter-dark .column.is-offset-2,html.theme--documenter-dark .column.is-offset-2-tablet{margin-left:16.6666666667%}html.theme--documenter-dark .column.is-3,html.theme--documenter-dark .column.is-3-tablet{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3,html.theme--documenter-dark .column.is-offset-3-tablet{margin-left:25%}html.theme--documenter-dark .column.is-4,html.theme--documenter-dark .column.is-4-tablet{flex:none;width:33.3333333333%}html.theme--documenter-dark .column.is-offset-4,html.theme--documenter-dark .column.is-offset-4-tablet{margin-left:33.3333333333%}html.theme--documenter-dark .column.is-5,html.theme--documenter-dark .column.is-5-tablet{flex:none;width:41.6666666667%}html.theme--documenter-dark .column.is-offset-5,html.theme--documenter-dark .column.is-offset-5-tablet{margin-left:41.6666666667%}html.theme--documenter-dark .column.is-6,html.theme--documenter-dark .column.is-6-tablet{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6,html.theme--documenter-dark .column.is-offset-6-tablet{margin-left:50%}html.theme--documenter-dark .column.is-7,html.theme--documenter-dark .column.is-7-tablet{flex:none;width:58.3333333333%}html.theme--documenter-dark .column.is-offset-7,html.theme--documenter-dark .column.is-offset-7-tablet{margin-left:58.3333333333%}html.theme--documenter-dark .column.is-8,html.theme--documenter-dark .column.is-8-tablet{flex:none;width:66.6666666667%}html.theme--documenter-dark .column.is-offset-8,html.theme--documenter-dark .column.is-offset-8-tablet{margin-left:66.6666666667%}html.theme--documenter-dark .column.is-9,html.theme--documenter-dark .column.is-9-tablet{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9,html.theme--documenter-dark .column.is-offset-9-tablet{margin-left:75%}html.theme--documenter-dark .column.is-10,html.theme--documenter-dark .column.is-10-tablet{flex:none;width:83.3333333333%}html.theme--documenter-dark .column.is-offset-10,html.theme--documenter-dark .column.is-offset-10-tablet{margin-left:83.3333333333%}html.theme--documenter-dark .column.is-11,html.theme--documenter-dark .column.is-11-tablet{flex:none;width:91.6666666667%}html.theme--documenter-dark .column.is-offset-11,html.theme--documenter-dark .column.is-offset-11-tablet{margin-left:91.6666666667%}html.theme--documenter-dark .column.is-12,html.theme--documenter-dark .column.is-12-tablet{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12,html.theme--documenter-dark .column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1055px){html.theme--documenter-dark .column.is-narrow-touch{flex:none}html.theme--documenter-dark .column.is-full-touch{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-touch{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-touch{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-touch{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-touch{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-touch{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-touch{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-touch{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-touch{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-touch{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-touch{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-touch{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-touch{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-touch{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-touch{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-touch{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-touch{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-touch{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-touch{margin-left:80%}html.theme--documenter-dark .column.is-0-touch{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-touch{margin-left:0%}html.theme--documenter-dark .column.is-1-touch{flex:none;width:8.3333333333%}html.theme--documenter-dark .column.is-offset-1-touch{margin-left:8.3333333333%}html.theme--documenter-dark .column.is-2-touch{flex:none;width:16.6666666667%}html.theme--documenter-dark .column.is-offset-2-touch{margin-left:16.6666666667%}html.theme--documenter-dark .column.is-3-touch{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-touch{margin-left:25%}html.theme--documenter-dark .column.is-4-touch{flex:none;width:33.3333333333%}html.theme--documenter-dark .column.is-offset-4-touch{margin-left:33.3333333333%}html.theme--documenter-dark .column.is-5-touch{flex:none;width:41.6666666667%}html.theme--documenter-dark .column.is-offset-5-touch{margin-left:41.6666666667%}html.theme--documenter-dark .column.is-6-touch{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-touch{margin-left:50%}html.theme--documenter-dark .column.is-7-touch{flex:none;width:58.3333333333%}html.theme--documenter-dark .column.is-offset-7-touch{margin-left:58.3333333333%}html.theme--documenter-dark .column.is-8-touch{flex:none;width:66.6666666667%}html.theme--documenter-dark .column.is-offset-8-touch{margin-left:66.6666666667%}html.theme--documenter-dark .column.is-9-touch{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-touch{margin-left:75%}html.theme--documenter-dark .column.is-10-touch{flex:none;width:83.3333333333%}html.theme--documenter-dark .column.is-offset-10-touch{margin-left:83.3333333333%}html.theme--documenter-dark .column.is-11-touch{flex:none;width:91.6666666667%}html.theme--documenter-dark .column.is-offset-11-touch{margin-left:91.6666666667%}html.theme--documenter-dark .column.is-12-touch{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1056px){html.theme--documenter-dark .column.is-narrow-desktop{flex:none}html.theme--documenter-dark .column.is-full-desktop{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-desktop{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-desktop{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-desktop{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-desktop{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-desktop{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-desktop{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-desktop{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-desktop{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-desktop{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-desktop{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-desktop{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-desktop{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-desktop{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-desktop{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-desktop{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-desktop{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-desktop{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-desktop{margin-left:80%}html.theme--documenter-dark .column.is-0-desktop{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-desktop{margin-left:0%}html.theme--documenter-dark .column.is-1-desktop{flex:none;width:8.3333333333%}html.theme--documenter-dark .column.is-offset-1-desktop{margin-left:8.3333333333%}html.theme--documenter-dark .column.is-2-desktop{flex:none;width:16.6666666667%}html.theme--documenter-dark .column.is-offset-2-desktop{margin-left:16.6666666667%}html.theme--documenter-dark .column.is-3-desktop{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-desktop{margin-left:25%}html.theme--documenter-dark .column.is-4-desktop{flex:none;width:33.3333333333%}html.theme--documenter-dark .column.is-offset-4-desktop{margin-left:33.3333333333%}html.theme--documenter-dark .column.is-5-desktop{flex:none;width:41.6666666667%}html.theme--documenter-dark .column.is-offset-5-desktop{margin-left:41.6666666667%}html.theme--documenter-dark .column.is-6-desktop{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-desktop{margin-left:50%}html.theme--documenter-dark .column.is-7-desktop{flex:none;width:58.3333333333%}html.theme--documenter-dark .column.is-offset-7-desktop{margin-left:58.3333333333%}html.theme--documenter-dark .column.is-8-desktop{flex:none;width:66.6666666667%}html.theme--documenter-dark .column.is-offset-8-desktop{margin-left:66.6666666667%}html.theme--documenter-dark .column.is-9-desktop{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-desktop{margin-left:75%}html.theme--documenter-dark .column.is-10-desktop{flex:none;width:83.3333333333%}html.theme--documenter-dark .column.is-offset-10-desktop{margin-left:83.3333333333%}html.theme--documenter-dark .column.is-11-desktop{flex:none;width:91.6666666667%}html.theme--documenter-dark .column.is-offset-11-desktop{margin-left:91.6666666667%}html.theme--documenter-dark .column.is-12-desktop{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){html.theme--documenter-dark .column.is-narrow-widescreen{flex:none}html.theme--documenter-dark .column.is-full-widescreen{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-widescreen{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-widescreen{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-widescreen{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-widescreen{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-widescreen{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-widescreen{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-widescreen{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-widescreen{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-widescreen{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-widescreen{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-widescreen{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-widescreen{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-widescreen{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-widescreen{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-widescreen{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-widescreen{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-widescreen{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-widescreen{margin-left:80%}html.theme--documenter-dark .column.is-0-widescreen{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-widescreen{margin-left:0%}html.theme--documenter-dark .column.is-1-widescreen{flex:none;width:8.3333333333%}html.theme--documenter-dark .column.is-offset-1-widescreen{margin-left:8.3333333333%}html.theme--documenter-dark .column.is-2-widescreen{flex:none;width:16.6666666667%}html.theme--documenter-dark .column.is-offset-2-widescreen{margin-left:16.6666666667%}html.theme--documenter-dark .column.is-3-widescreen{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-widescreen{margin-left:25%}html.theme--documenter-dark .column.is-4-widescreen{flex:none;width:33.3333333333%}html.theme--documenter-dark .column.is-offset-4-widescreen{margin-left:33.3333333333%}html.theme--documenter-dark .column.is-5-widescreen{flex:none;width:41.6666666667%}html.theme--documenter-dark .column.is-offset-5-widescreen{margin-left:41.6666666667%}html.theme--documenter-dark .column.is-6-widescreen{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-widescreen{margin-left:50%}html.theme--documenter-dark .column.is-7-widescreen{flex:none;width:58.3333333333%}html.theme--documenter-dark .column.is-offset-7-widescreen{margin-left:58.3333333333%}html.theme--documenter-dark .column.is-8-widescreen{flex:none;width:66.6666666667%}html.theme--documenter-dark .column.is-offset-8-widescreen{margin-left:66.6666666667%}html.theme--documenter-dark .column.is-9-widescreen{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-widescreen{margin-left:75%}html.theme--documenter-dark .column.is-10-widescreen{flex:none;width:83.3333333333%}html.theme--documenter-dark .column.is-offset-10-widescreen{margin-left:83.3333333333%}html.theme--documenter-dark .column.is-11-widescreen{flex:none;width:91.6666666667%}html.theme--documenter-dark .column.is-offset-11-widescreen{margin-left:91.6666666667%}html.theme--documenter-dark .column.is-12-widescreen{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){html.theme--documenter-dark .column.is-narrow-fullhd{flex:none}html.theme--documenter-dark .column.is-full-fullhd{flex:none;width:100%}html.theme--documenter-dark .column.is-three-quarters-fullhd{flex:none;width:75%}html.theme--documenter-dark .column.is-two-thirds-fullhd{flex:none;width:66.6666%}html.theme--documenter-dark .column.is-half-fullhd{flex:none;width:50%}html.theme--documenter-dark .column.is-one-third-fullhd{flex:none;width:33.3333%}html.theme--documenter-dark .column.is-one-quarter-fullhd{flex:none;width:25%}html.theme--documenter-dark .column.is-one-fifth-fullhd{flex:none;width:20%}html.theme--documenter-dark .column.is-two-fifths-fullhd{flex:none;width:40%}html.theme--documenter-dark .column.is-three-fifths-fullhd{flex:none;width:60%}html.theme--documenter-dark .column.is-four-fifths-fullhd{flex:none;width:80%}html.theme--documenter-dark .column.is-offset-three-quarters-fullhd{margin-left:75%}html.theme--documenter-dark .column.is-offset-two-thirds-fullhd{margin-left:66.6666%}html.theme--documenter-dark .column.is-offset-half-fullhd{margin-left:50%}html.theme--documenter-dark .column.is-offset-one-third-fullhd{margin-left:33.3333%}html.theme--documenter-dark .column.is-offset-one-quarter-fullhd{margin-left:25%}html.theme--documenter-dark .column.is-offset-one-fifth-fullhd{margin-left:20%}html.theme--documenter-dark .column.is-offset-two-fifths-fullhd{margin-left:40%}html.theme--documenter-dark .column.is-offset-three-fifths-fullhd{margin-left:60%}html.theme--documenter-dark .column.is-offset-four-fifths-fullhd{margin-left:80%}html.theme--documenter-dark .column.is-0-fullhd{flex:none;width:0%}html.theme--documenter-dark .column.is-offset-0-fullhd{margin-left:0%}html.theme--documenter-dark .column.is-1-fullhd{flex:none;width:8.3333333333%}html.theme--documenter-dark .column.is-offset-1-fullhd{margin-left:8.3333333333%}html.theme--documenter-dark .column.is-2-fullhd{flex:none;width:16.6666666667%}html.theme--documenter-dark .column.is-offset-2-fullhd{margin-left:16.6666666667%}html.theme--documenter-dark .column.is-3-fullhd{flex:none;width:25%}html.theme--documenter-dark .column.is-offset-3-fullhd{margin-left:25%}html.theme--documenter-dark .column.is-4-fullhd{flex:none;width:33.3333333333%}html.theme--documenter-dark .column.is-offset-4-fullhd{margin-left:33.3333333333%}html.theme--documenter-dark .column.is-5-fullhd{flex:none;width:41.6666666667%}html.theme--documenter-dark .column.is-offset-5-fullhd{margin-left:41.6666666667%}html.theme--documenter-dark .column.is-6-fullhd{flex:none;width:50%}html.theme--documenter-dark .column.is-offset-6-fullhd{margin-left:50%}html.theme--documenter-dark .column.is-7-fullhd{flex:none;width:58.3333333333%}html.theme--documenter-dark .column.is-offset-7-fullhd{margin-left:58.3333333333%}html.theme--documenter-dark .column.is-8-fullhd{flex:none;width:66.6666666667%}html.theme--documenter-dark .column.is-offset-8-fullhd{margin-left:66.6666666667%}html.theme--documenter-dark .column.is-9-fullhd{flex:none;width:75%}html.theme--documenter-dark .column.is-offset-9-fullhd{margin-left:75%}html.theme--documenter-dark .column.is-10-fullhd{flex:none;width:83.3333333333%}html.theme--documenter-dark .column.is-offset-10-fullhd{margin-left:83.3333333333%}html.theme--documenter-dark .column.is-11-fullhd{flex:none;width:91.6666666667%}html.theme--documenter-dark .column.is-offset-11-fullhd{margin-left:91.6666666667%}html.theme--documenter-dark .column.is-12-fullhd{flex:none;width:100%}html.theme--documenter-dark .column.is-offset-12-fullhd{margin-left:100%}}html.theme--documenter-dark .columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--documenter-dark .columns:last-child{margin-bottom:-.75rem}html.theme--documenter-dark .columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}html.theme--documenter-dark .columns.is-centered{justify-content:center}html.theme--documenter-dark .columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}html.theme--documenter-dark .columns.is-gapless>.column{margin:0;padding:0 !important}html.theme--documenter-dark .columns.is-gapless:not(:last-child){margin-bottom:1.5rem}html.theme--documenter-dark .columns.is-gapless:last-child{margin-bottom:0}html.theme--documenter-dark .columns.is-mobile{display:flex}html.theme--documenter-dark .columns.is-multiline{flex-wrap:wrap}html.theme--documenter-dark .columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-desktop{display:flex}}html.theme--documenter-dark .columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}html.theme--documenter-dark .columns.is-variable .column{padding-left:var(--columnGap);padding-right:var(--columnGap)}html.theme--documenter-dark .columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-0-fullhd{--columnGap: 0rem}}html.theme--documenter-dark .columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-1-fullhd{--columnGap: .25rem}}html.theme--documenter-dark .columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-2-fullhd{--columnGap: .5rem}}html.theme--documenter-dark .columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-3-fullhd{--columnGap: .75rem}}html.theme--documenter-dark .columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-4-fullhd{--columnGap: 1rem}}html.theme--documenter-dark .columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}html.theme--documenter-dark .columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}html.theme--documenter-dark .columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}html.theme--documenter-dark .columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){html.theme--documenter-dark .columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark .columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1056px){html.theme--documenter-dark .columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){html.theme--documenter-dark .columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){html.theme--documenter-dark .columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){html.theme--documenter-dark .columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){html.theme--documenter-dark .columns.is-variable.is-8-fullhd{--columnGap: 2rem}}html.theme--documenter-dark .tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}html.theme--documenter-dark .tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}html.theme--documenter-dark .tile.is-ancestor:last-child{margin-bottom:-.75rem}html.theme--documenter-dark .tile.is-ancestor:not(:last-child){margin-bottom:.75rem}html.theme--documenter-dark .tile.is-child{margin:0 !important}html.theme--documenter-dark .tile.is-parent{padding:.75rem}html.theme--documenter-dark .tile.is-vertical{flex-direction:column}html.theme--documenter-dark .tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{html.theme--documenter-dark .tile:not(.is-child){display:flex}html.theme--documenter-dark .tile.is-1{flex:none;width:8.3333333333%}html.theme--documenter-dark .tile.is-2{flex:none;width:16.6666666667%}html.theme--documenter-dark .tile.is-3{flex:none;width:25%}html.theme--documenter-dark .tile.is-4{flex:none;width:33.3333333333%}html.theme--documenter-dark .tile.is-5{flex:none;width:41.6666666667%}html.theme--documenter-dark .tile.is-6{flex:none;width:50%}html.theme--documenter-dark .tile.is-7{flex:none;width:58.3333333333%}html.theme--documenter-dark .tile.is-8{flex:none;width:66.6666666667%}html.theme--documenter-dark .tile.is-9{flex:none;width:75%}html.theme--documenter-dark .tile.is-10{flex:none;width:83.3333333333%}html.theme--documenter-dark .tile.is-11{flex:none;width:91.6666666667%}html.theme--documenter-dark .tile.is-12{flex:none;width:100%}}html.theme--documenter-dark .hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}html.theme--documenter-dark .hero .navbar{background:none}html.theme--documenter-dark .hero .tabs ul{border-bottom:none}html.theme--documenter-dark .hero.is-white{background-color:#fff;color:#0a0a0a}html.theme--documenter-dark .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-white strong{color:inherit}html.theme--documenter-dark .hero.is-white .title{color:#0a0a0a}html.theme--documenter-dark .hero.is-white .subtitle{color:rgba(10,10,10,0.9)}html.theme--documenter-dark .hero.is-white .subtitle a:not(.button),html.theme--documenter-dark .hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-white .navbar-menu{background-color:#fff}}html.theme--documenter-dark .hero.is-white .navbar-item,html.theme--documenter-dark .hero.is-white .navbar-link{color:rgba(10,10,10,0.7)}html.theme--documenter-dark .hero.is-white a.navbar-item:hover,html.theme--documenter-dark .hero.is-white a.navbar-item.is-active,html.theme--documenter-dark .hero.is-white .navbar-link:hover,html.theme--documenter-dark .hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}html.theme--documenter-dark .hero.is-white .tabs a{color:#0a0a0a;opacity:0.9}html.theme--documenter-dark .hero.is-white .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-white .tabs li.is-active a{opacity:1}html.theme--documenter-dark .hero.is-white .tabs.is-boxed a,html.theme--documenter-dark .hero.is-white .tabs.is-toggle a{color:#0a0a0a}html.theme--documenter-dark .hero.is-white .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-white .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-white .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-white .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}html.theme--documenter-dark .hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}}html.theme--documenter-dark .hero.is-black{background-color:#0a0a0a;color:#fff}html.theme--documenter-dark .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-black strong{color:inherit}html.theme--documenter-dark .hero.is-black .title{color:#fff}html.theme--documenter-dark .hero.is-black .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-black .subtitle a:not(.button),html.theme--documenter-dark .hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-black .navbar-menu{background-color:#0a0a0a}}html.theme--documenter-dark .hero.is-black .navbar-item,html.theme--documenter-dark .hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-black a.navbar-item:hover,html.theme--documenter-dark .hero.is-black a.navbar-item.is-active,html.theme--documenter-dark .hero.is-black .navbar-link:hover,html.theme--documenter-dark .hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}html.theme--documenter-dark .hero.is-black .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-black .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-black .tabs li.is-active a{opacity:1}html.theme--documenter-dark .hero.is-black .tabs.is-boxed a,html.theme--documenter-dark .hero.is-black .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-black .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-black .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-black .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-black .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}html.theme--documenter-dark .hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}}html.theme--documenter-dark .hero.is-light{background-color:#ecf0f1;color:#282f2f}html.theme--documenter-dark .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-light strong{color:inherit}html.theme--documenter-dark .hero.is-light .title{color:#282f2f}html.theme--documenter-dark .hero.is-light .subtitle{color:rgba(40,47,47,0.9)}html.theme--documenter-dark .hero.is-light .subtitle a:not(.button),html.theme--documenter-dark .hero.is-light .subtitle strong{color:#282f2f}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-light .navbar-menu{background-color:#ecf0f1}}html.theme--documenter-dark .hero.is-light .navbar-item,html.theme--documenter-dark .hero.is-light .navbar-link{color:rgba(40,47,47,0.7)}html.theme--documenter-dark .hero.is-light a.navbar-item:hover,html.theme--documenter-dark .hero.is-light a.navbar-item.is-active,html.theme--documenter-dark .hero.is-light .navbar-link:hover,html.theme--documenter-dark .hero.is-light .navbar-link.is-active{background-color:#dde4e6;color:#282f2f}html.theme--documenter-dark .hero.is-light .tabs a{color:#282f2f;opacity:0.9}html.theme--documenter-dark .hero.is-light .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-light .tabs li.is-active a{opacity:1}html.theme--documenter-dark .hero.is-light .tabs.is-boxed a,html.theme--documenter-dark .hero.is-light .tabs.is-toggle a{color:#282f2f}html.theme--documenter-dark .hero.is-light .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-light .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-light .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-light .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:#282f2f;border-color:#282f2f;color:#ecf0f1}html.theme--documenter-dark .hero.is-light.is-bold{background-image:linear-gradient(141deg, #cadfe0 0%, #ecf0f1 71%, #fafbfc 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #cadfe0 0%, #ecf0f1 71%, #fafbfc 100%)}}html.theme--documenter-dark .hero.is-dark,html.theme--documenter-dark .content kbd.hero{background-color:#282f2f;color:#ecf0f1}html.theme--documenter-dark .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-dark strong,html.theme--documenter-dark .content kbd.hero strong{color:inherit}html.theme--documenter-dark .hero.is-dark .title,html.theme--documenter-dark .content kbd.hero .title{color:#ecf0f1}html.theme--documenter-dark .hero.is-dark .subtitle,html.theme--documenter-dark .content kbd.hero .subtitle{color:rgba(236,240,241,0.9)}html.theme--documenter-dark .hero.is-dark .subtitle a:not(.button),html.theme--documenter-dark .content kbd.hero .subtitle a:not(.button),html.theme--documenter-dark .hero.is-dark .subtitle strong,html.theme--documenter-dark .content kbd.hero .subtitle strong{color:#ecf0f1}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-dark .navbar-menu,html.theme--documenter-dark .content kbd.hero .navbar-menu{background-color:#282f2f}}html.theme--documenter-dark .hero.is-dark .navbar-item,html.theme--documenter-dark .content kbd.hero .navbar-item,html.theme--documenter-dark .hero.is-dark .navbar-link,html.theme--documenter-dark .content kbd.hero .navbar-link{color:rgba(236,240,241,0.7)}html.theme--documenter-dark .hero.is-dark a.navbar-item:hover,html.theme--documenter-dark .content kbd.hero a.navbar-item:hover,html.theme--documenter-dark .hero.is-dark a.navbar-item.is-active,html.theme--documenter-dark .content kbd.hero a.navbar-item.is-active,html.theme--documenter-dark .hero.is-dark .navbar-link:hover,html.theme--documenter-dark .content kbd.hero .navbar-link:hover,html.theme--documenter-dark .hero.is-dark .navbar-link.is-active,html.theme--documenter-dark .content kbd.hero .navbar-link.is-active{background-color:#1d2122;color:#ecf0f1}html.theme--documenter-dark .hero.is-dark .tabs a,html.theme--documenter-dark .content kbd.hero .tabs a{color:#ecf0f1;opacity:0.9}html.theme--documenter-dark .hero.is-dark .tabs a:hover,html.theme--documenter-dark .content kbd.hero .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-dark .tabs li.is-active a,html.theme--documenter-dark .content kbd.hero .tabs li.is-active a{opacity:1}html.theme--documenter-dark .hero.is-dark .tabs.is-boxed a,html.theme--documenter-dark .content kbd.hero .tabs.is-boxed a,html.theme--documenter-dark .hero.is-dark .tabs.is-toggle a,html.theme--documenter-dark .content kbd.hero .tabs.is-toggle a{color:#ecf0f1}html.theme--documenter-dark .hero.is-dark .tabs.is-boxed a:hover,html.theme--documenter-dark .content kbd.hero .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-dark .tabs.is-toggle a:hover,html.theme--documenter-dark .content kbd.hero .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-dark .tabs.is-boxed li.is-active a,html.theme--documenter-dark .content kbd.hero .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-dark .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-dark .tabs.is-toggle li.is-active a,html.theme--documenter-dark .content kbd.hero .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#ecf0f1;border-color:#ecf0f1;color:#282f2f}html.theme--documenter-dark .hero.is-dark.is-bold,html.theme--documenter-dark .content kbd.hero.is-bold{background-image:linear-gradient(141deg, #0f1615 0%, #282f2f 71%, #313c40 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-dark.is-bold .navbar-menu,html.theme--documenter-dark .content kbd.hero.is-bold .navbar-menu{background-image:linear-gradient(141deg, #0f1615 0%, #282f2f 71%, #313c40 100%)}}html.theme--documenter-dark .hero.is-primary,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink{background-color:#375a7f;color:#fff}html.theme--documenter-dark .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-primary strong,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink strong{color:inherit}html.theme--documenter-dark .hero.is-primary .title,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .title{color:#fff}html.theme--documenter-dark .hero.is-primary .subtitle,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-primary .subtitle a:not(.button),html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .subtitle a:not(.button),html.theme--documenter-dark .hero.is-primary .subtitle strong,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-primary .navbar-menu,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-menu{background-color:#375a7f}}html.theme--documenter-dark .hero.is-primary .navbar-item,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-item,html.theme--documenter-dark .hero.is-primary .navbar-link,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-primary a.navbar-item:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink a.navbar-item:hover,html.theme--documenter-dark .hero.is-primary a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink a.navbar-item.is-active,html.theme--documenter-dark .hero.is-primary .navbar-link:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-link:hover,html.theme--documenter-dark .hero.is-primary .navbar-link.is-active,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar-link.is-active{background-color:#2f4d6d;color:#fff}html.theme--documenter-dark .hero.is-primary .tabs a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-primary .tabs a:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-primary .tabs li.is-active a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs li.is-active a{opacity:1}html.theme--documenter-dark .hero.is-primary .tabs.is-boxed a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a,html.theme--documenter-dark .hero.is-primary .tabs.is-toggle a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-primary .tabs.is-boxed a:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-primary .tabs.is-toggle a:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-primary .tabs.is-boxed li.is-active a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-primary .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-primary .tabs.is-toggle li.is-active a,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#375a7f}html.theme--documenter-dark .hero.is-primary.is-bold,html.theme--documenter-dark .docstring>section>a.hero.is-bold.docs-sourcelink{background-image:linear-gradient(141deg, #214b62 0%, #375a7f 71%, #3a5796 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-primary.is-bold .navbar-menu,html.theme--documenter-dark .docstring>section>a.hero.is-bold.docs-sourcelink .navbar-menu{background-image:linear-gradient(141deg, #214b62 0%, #375a7f 71%, #3a5796 100%)}}html.theme--documenter-dark .hero.is-link{background-color:#1abc9c;color:#fff}html.theme--documenter-dark .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-link strong{color:inherit}html.theme--documenter-dark .hero.is-link .title{color:#fff}html.theme--documenter-dark .hero.is-link .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-link .subtitle a:not(.button),html.theme--documenter-dark .hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-link .navbar-menu{background-color:#1abc9c}}html.theme--documenter-dark .hero.is-link .navbar-item,html.theme--documenter-dark .hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-link a.navbar-item:hover,html.theme--documenter-dark .hero.is-link a.navbar-item.is-active,html.theme--documenter-dark .hero.is-link .navbar-link:hover,html.theme--documenter-dark .hero.is-link .navbar-link.is-active{background-color:#17a689;color:#fff}html.theme--documenter-dark .hero.is-link .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-link .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-link .tabs li.is-active a{opacity:1}html.theme--documenter-dark .hero.is-link .tabs.is-boxed a,html.theme--documenter-dark .hero.is-link .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-link .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-link .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-link .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-link .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#1abc9c}html.theme--documenter-dark .hero.is-link.is-bold{background-image:linear-gradient(141deg, #0c9764 0%, #1abc9c 71%, #17d8d2 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #0c9764 0%, #1abc9c 71%, #17d8d2 100%)}}html.theme--documenter-dark .hero.is-info{background-color:#024c7d;color:#fff}html.theme--documenter-dark .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-info strong{color:inherit}html.theme--documenter-dark .hero.is-info .title{color:#fff}html.theme--documenter-dark .hero.is-info .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-info .subtitle a:not(.button),html.theme--documenter-dark .hero.is-info .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-info .navbar-menu{background-color:#024c7d}}html.theme--documenter-dark .hero.is-info .navbar-item,html.theme--documenter-dark .hero.is-info .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-info a.navbar-item:hover,html.theme--documenter-dark .hero.is-info a.navbar-item.is-active,html.theme--documenter-dark .hero.is-info .navbar-link:hover,html.theme--documenter-dark .hero.is-info .navbar-link.is-active{background-color:#023d64;color:#fff}html.theme--documenter-dark .hero.is-info .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-info .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-info .tabs li.is-active a{opacity:1}html.theme--documenter-dark .hero.is-info .tabs.is-boxed a,html.theme--documenter-dark .hero.is-info .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-info .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-info .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-info .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-info .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#024c7d}html.theme--documenter-dark .hero.is-info.is-bold{background-image:linear-gradient(141deg, #003a4c 0%, #024c7d 71%, #004299 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #003a4c 0%, #024c7d 71%, #004299 100%)}}html.theme--documenter-dark .hero.is-success{background-color:#008438;color:#fff}html.theme--documenter-dark .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-success strong{color:inherit}html.theme--documenter-dark .hero.is-success .title{color:#fff}html.theme--documenter-dark .hero.is-success .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-success .subtitle a:not(.button),html.theme--documenter-dark .hero.is-success .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-success .navbar-menu{background-color:#008438}}html.theme--documenter-dark .hero.is-success .navbar-item,html.theme--documenter-dark .hero.is-success .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-success a.navbar-item:hover,html.theme--documenter-dark .hero.is-success a.navbar-item.is-active,html.theme--documenter-dark .hero.is-success .navbar-link:hover,html.theme--documenter-dark .hero.is-success .navbar-link.is-active{background-color:#006b2d;color:#fff}html.theme--documenter-dark .hero.is-success .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-success .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-success .tabs li.is-active a{opacity:1}html.theme--documenter-dark .hero.is-success .tabs.is-boxed a,html.theme--documenter-dark .hero.is-success .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-success .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-success .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-success .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-success .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#008438}html.theme--documenter-dark .hero.is-success.is-bold{background-image:linear-gradient(141deg, #005115 0%, #008438 71%, #009e5d 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #005115 0%, #008438 71%, #009e5d 100%)}}html.theme--documenter-dark .hero.is-warning{background-color:#ad8100;color:#fff}html.theme--documenter-dark .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-warning strong{color:inherit}html.theme--documenter-dark .hero.is-warning .title{color:#fff}html.theme--documenter-dark .hero.is-warning .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-warning .subtitle a:not(.button),html.theme--documenter-dark .hero.is-warning .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-warning .navbar-menu{background-color:#ad8100}}html.theme--documenter-dark .hero.is-warning .navbar-item,html.theme--documenter-dark .hero.is-warning .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-warning a.navbar-item:hover,html.theme--documenter-dark .hero.is-warning a.navbar-item.is-active,html.theme--documenter-dark .hero.is-warning .navbar-link:hover,html.theme--documenter-dark .hero.is-warning .navbar-link.is-active{background-color:#946e00;color:#fff}html.theme--documenter-dark .hero.is-warning .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-warning .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-warning .tabs li.is-active a{opacity:1}html.theme--documenter-dark .hero.is-warning .tabs.is-boxed a,html.theme--documenter-dark .hero.is-warning .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-warning .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-warning .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-warning .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-warning .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#ad8100}html.theme--documenter-dark .hero.is-warning.is-bold{background-image:linear-gradient(141deg, #7a4700 0%, #ad8100 71%, #c7b500 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #7a4700 0%, #ad8100 71%, #c7b500 100%)}}html.theme--documenter-dark .hero.is-danger{background-color:#9e1b0d;color:#fff}html.theme--documenter-dark .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),html.theme--documenter-dark .hero.is-danger strong{color:inherit}html.theme--documenter-dark .hero.is-danger .title{color:#fff}html.theme--documenter-dark .hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}html.theme--documenter-dark .hero.is-danger .subtitle a:not(.button),html.theme--documenter-dark .hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1055px){html.theme--documenter-dark .hero.is-danger .navbar-menu{background-color:#9e1b0d}}html.theme--documenter-dark .hero.is-danger .navbar-item,html.theme--documenter-dark .hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}html.theme--documenter-dark .hero.is-danger a.navbar-item:hover,html.theme--documenter-dark .hero.is-danger a.navbar-item.is-active,html.theme--documenter-dark .hero.is-danger .navbar-link:hover,html.theme--documenter-dark .hero.is-danger .navbar-link.is-active{background-color:#86170b;color:#fff}html.theme--documenter-dark .hero.is-danger .tabs a{color:#fff;opacity:0.9}html.theme--documenter-dark .hero.is-danger .tabs a:hover{opacity:1}html.theme--documenter-dark .hero.is-danger .tabs li.is-active a{opacity:1}html.theme--documenter-dark .hero.is-danger .tabs.is-boxed a,html.theme--documenter-dark .hero.is-danger .tabs.is-toggle a{color:#fff}html.theme--documenter-dark .hero.is-danger .tabs.is-boxed a:hover,html.theme--documenter-dark .hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}html.theme--documenter-dark .hero.is-danger .tabs.is-boxed li.is-active a,html.theme--documenter-dark .hero.is-danger .tabs.is-boxed li.is-active a:hover,html.theme--documenter-dark .hero.is-danger .tabs.is-toggle li.is-active a,html.theme--documenter-dark .hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#9e1b0d}html.theme--documenter-dark .hero.is-danger.is-bold{background-image:linear-gradient(141deg, #75030b 0%, #9e1b0d 71%, #ba380a 100%)}@media screen and (max-width: 768px){html.theme--documenter-dark .hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #75030b 0%, #9e1b0d 71%, #ba380a 100%)}}html.theme--documenter-dark .hero.is-small .hero-body,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.hero .hero-body{padding-bottom:1.5rem;padding-top:1.5rem}@media screen and (min-width: 769px),print{html.theme--documenter-dark .hero.is-medium .hero-body{padding-bottom:9rem;padding-top:9rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .hero.is-large .hero-body{padding-bottom:18rem;padding-top:18rem}}html.theme--documenter-dark .hero.is-halfheight .hero-body,html.theme--documenter-dark .hero.is-fullheight .hero-body,html.theme--documenter-dark .hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}html.theme--documenter-dark .hero.is-halfheight .hero-body>.container,html.theme--documenter-dark .hero.is-fullheight .hero-body>.container,html.theme--documenter-dark .hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}html.theme--documenter-dark .hero.is-halfheight{min-height:50vh}html.theme--documenter-dark .hero.is-fullheight{min-height:100vh}html.theme--documenter-dark .hero-video{overflow:hidden}html.theme--documenter-dark .hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}html.theme--documenter-dark .hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 768px){html.theme--documenter-dark .hero-video{display:none}}html.theme--documenter-dark .hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){html.theme--documenter-dark .hero-buttons .button{display:flex}html.theme--documenter-dark .hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 769px),print{html.theme--documenter-dark .hero-buttons{display:flex;justify-content:center}html.theme--documenter-dark .hero-buttons .button:not(:last-child){margin-right:1.5rem}}html.theme--documenter-dark .hero-head,html.theme--documenter-dark .hero-foot{flex-grow:0;flex-shrink:0}html.theme--documenter-dark .hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}html.theme--documenter-dark .section{padding:3rem 1.5rem}@media screen and (min-width: 1056px){html.theme--documenter-dark .section.is-medium{padding:9rem 1.5rem}html.theme--documenter-dark .section.is-large{padding:18rem 1.5rem}}html.theme--documenter-dark .footer{background-color:#282f2f;padding:3rem 1.5rem 6rem}html.theme--documenter-dark hr{height:1px}html.theme--documenter-dark h6{text-transform:uppercase;letter-spacing:0.5px}html.theme--documenter-dark .hero{background-color:#343c3d}html.theme--documenter-dark a{transition:all 200ms ease}html.theme--documenter-dark .button{transition:all 200ms ease;border-width:1px;color:#fff}html.theme--documenter-dark .button.is-active,html.theme--documenter-dark .button.is-focused,html.theme--documenter-dark .button:active,html.theme--documenter-dark .button:focus{box-shadow:0 0 0 2px rgba(140,155,157,0.5)}html.theme--documenter-dark .button.is-white.is-hovered,html.theme--documenter-dark .button.is-white:hover{background-color:#fff}html.theme--documenter-dark .button.is-white.is-active,html.theme--documenter-dark .button.is-white.is-focused,html.theme--documenter-dark .button.is-white:active,html.theme--documenter-dark .button.is-white:focus{border-color:#fff;box-shadow:0 0 0 2px rgba(255,255,255,0.5)}html.theme--documenter-dark .button.is-black.is-hovered,html.theme--documenter-dark .button.is-black:hover{background-color:#1d1d1d}html.theme--documenter-dark .button.is-black.is-active,html.theme--documenter-dark .button.is-black.is-focused,html.theme--documenter-dark .button.is-black:active,html.theme--documenter-dark .button.is-black:focus{border-color:#0a0a0a;box-shadow:0 0 0 2px rgba(10,10,10,0.5)}html.theme--documenter-dark .button.is-light.is-hovered,html.theme--documenter-dark .button.is-light:hover{background-color:#fff}html.theme--documenter-dark .button.is-light.is-active,html.theme--documenter-dark .button.is-light.is-focused,html.theme--documenter-dark .button.is-light:active,html.theme--documenter-dark .button.is-light:focus{border-color:#ecf0f1;box-shadow:0 0 0 2px rgba(236,240,241,0.5)}html.theme--documenter-dark .button.is-dark.is-hovered,html.theme--documenter-dark .content kbd.button.is-hovered,html.theme--documenter-dark .button.is-dark:hover,html.theme--documenter-dark .content kbd.button:hover{background-color:#3a4344}html.theme--documenter-dark .button.is-dark.is-active,html.theme--documenter-dark .content kbd.button.is-active,html.theme--documenter-dark .button.is-dark.is-focused,html.theme--documenter-dark .content kbd.button.is-focused,html.theme--documenter-dark .button.is-dark:active,html.theme--documenter-dark .content kbd.button:active,html.theme--documenter-dark .button.is-dark:focus,html.theme--documenter-dark .content kbd.button:focus{border-color:#282f2f;box-shadow:0 0 0 2px rgba(40,47,47,0.5)}html.theme--documenter-dark .button.is-primary.is-hovered,html.theme--documenter-dark .docstring>section>a.button.is-hovered.docs-sourcelink,html.theme--documenter-dark .button.is-primary:hover,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:hover{background-color:#436d9a}html.theme--documenter-dark .button.is-primary.is-active,html.theme--documenter-dark .docstring>section>a.button.is-active.docs-sourcelink,html.theme--documenter-dark .button.is-primary.is-focused,html.theme--documenter-dark .docstring>section>a.button.is-focused.docs-sourcelink,html.theme--documenter-dark .button.is-primary:active,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:active,html.theme--documenter-dark .button.is-primary:focus,html.theme--documenter-dark .docstring>section>a.button.docs-sourcelink:focus{border-color:#375a7f;box-shadow:0 0 0 2px rgba(55,90,127,0.5)}html.theme--documenter-dark .button.is-link.is-hovered,html.theme--documenter-dark .button.is-link:hover{background-color:#1fdeb8}html.theme--documenter-dark .button.is-link.is-active,html.theme--documenter-dark .button.is-link.is-focused,html.theme--documenter-dark .button.is-link:active,html.theme--documenter-dark .button.is-link:focus{border-color:#1abc9c;box-shadow:0 0 0 2px rgba(26,188,156,0.5)}html.theme--documenter-dark .button.is-info.is-hovered,html.theme--documenter-dark .button.is-info:hover{background-color:#0363a3}html.theme--documenter-dark .button.is-info.is-active,html.theme--documenter-dark .button.is-info.is-focused,html.theme--documenter-dark .button.is-info:active,html.theme--documenter-dark .button.is-info:focus{border-color:#024c7d;box-shadow:0 0 0 2px rgba(2,76,125,0.5)}html.theme--documenter-dark .button.is-success.is-hovered,html.theme--documenter-dark .button.is-success:hover{background-color:#00aa48}html.theme--documenter-dark .button.is-success.is-active,html.theme--documenter-dark .button.is-success.is-focused,html.theme--documenter-dark .button.is-success:active,html.theme--documenter-dark .button.is-success:focus{border-color:#008438;box-shadow:0 0 0 2px rgba(0,132,56,0.5)}html.theme--documenter-dark .button.is-warning.is-hovered,html.theme--documenter-dark .button.is-warning:hover{background-color:#d39e00}html.theme--documenter-dark .button.is-warning.is-active,html.theme--documenter-dark .button.is-warning.is-focused,html.theme--documenter-dark .button.is-warning:active,html.theme--documenter-dark .button.is-warning:focus{border-color:#ad8100;box-shadow:0 0 0 2px rgba(173,129,0,0.5)}html.theme--documenter-dark .button.is-danger.is-hovered,html.theme--documenter-dark .button.is-danger:hover{background-color:#c12110}html.theme--documenter-dark .button.is-danger.is-active,html.theme--documenter-dark .button.is-danger.is-focused,html.theme--documenter-dark .button.is-danger:active,html.theme--documenter-dark .button.is-danger:focus{border-color:#9e1b0d;box-shadow:0 0 0 2px rgba(158,27,13,0.5)}html.theme--documenter-dark .label{color:#dbdee0}html.theme--documenter-dark .button,html.theme--documenter-dark .control.has-icons-left .icon,html.theme--documenter-dark .control.has-icons-right .icon,html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark .pagination-ellipsis,html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-previous,html.theme--documenter-dark .select,html.theme--documenter-dark .select select,html.theme--documenter-dark .textarea{height:2.5em}html.theme--documenter-dark .input,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark .textarea{transition:all 200ms ease;box-shadow:none;border-width:1px;padding-left:1em;padding-right:1em}html.theme--documenter-dark .select:after,html.theme--documenter-dark .select select{border-width:1px}html.theme--documenter-dark .control.has-addons .button,html.theme--documenter-dark .control.has-addons .input,html.theme--documenter-dark .control.has-addons #documenter .docs-sidebar form.docs-search>input,html.theme--documenter-dark #documenter .docs-sidebar .control.has-addons form.docs-search>input,html.theme--documenter-dark .control.has-addons .select{margin-right:-1px}html.theme--documenter-dark .notification{background-color:#343c3d}html.theme--documenter-dark .card{box-shadow:none;border:1px solid #343c3d;background-color:#282f2f;border-radius:.4em}html.theme--documenter-dark .card .card-image img{border-radius:.4em .4em 0 0}html.theme--documenter-dark .card .card-header{box-shadow:none;background-color:rgba(18,18,18,0.2);border-radius:.4em .4em 0 0}html.theme--documenter-dark .card .card-footer{background-color:rgba(18,18,18,0.2)}html.theme--documenter-dark .card .card-footer,html.theme--documenter-dark .card .card-footer-item{border-width:1px;border-color:#343c3d}html.theme--documenter-dark .notification.is-white a:not(.button){color:#0a0a0a;text-decoration:underline}html.theme--documenter-dark .notification.is-black a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-light a:not(.button){color:#282f2f;text-decoration:underline}html.theme--documenter-dark .notification.is-dark a:not(.button),html.theme--documenter-dark .content kbd.notification a:not(.button){color:#ecf0f1;text-decoration:underline}html.theme--documenter-dark .notification.is-primary a:not(.button),html.theme--documenter-dark .docstring>section>a.notification.docs-sourcelink a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-link a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-info a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-success a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-warning a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .notification.is-danger a:not(.button){color:#fff;text-decoration:underline}html.theme--documenter-dark .tag,html.theme--documenter-dark .content kbd,html.theme--documenter-dark .docstring>section>a.docs-sourcelink{border-radius:.4em}html.theme--documenter-dark .menu-list a{transition:all 300ms ease}html.theme--documenter-dark .modal-card-body{background-color:#282f2f}html.theme--documenter-dark .modal-card-foot,html.theme--documenter-dark .modal-card-head{border-color:#343c3d}html.theme--documenter-dark .message-header{font-weight:700;background-color:#343c3d;color:#fff}html.theme--documenter-dark .message-body{border-width:1px;border-color:#343c3d}html.theme--documenter-dark .navbar{border-radius:.4em}html.theme--documenter-dark .navbar.is-transparent{background:none}html.theme--documenter-dark .navbar.is-primary .navbar-dropdown a.navbar-item.is-active,html.theme--documenter-dark .docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#1abc9c}@media screen and (max-width: 1055px){html.theme--documenter-dark .navbar .navbar-menu{background-color:#375a7f;border-radius:0 0 .4em .4em}}html.theme--documenter-dark .hero .navbar,html.theme--documenter-dark body>.navbar{border-radius:0}html.theme--documenter-dark .pagination-link,html.theme--documenter-dark .pagination-next,html.theme--documenter-dark .pagination-previous{border-width:1px}html.theme--documenter-dark .panel-block,html.theme--documenter-dark .panel-heading,html.theme--documenter-dark .panel-tabs{border-width:1px}html.theme--documenter-dark .panel-block:first-child,html.theme--documenter-dark .panel-heading:first-child,html.theme--documenter-dark .panel-tabs:first-child{border-top-width:1px}html.theme--documenter-dark .panel-heading{font-weight:700}html.theme--documenter-dark .panel-tabs a{border-width:1px;margin-bottom:-1px}html.theme--documenter-dark .panel-tabs a.is-active{border-bottom-color:#17a689}html.theme--documenter-dark .panel-block:hover{color:#1dd2af}html.theme--documenter-dark .panel-block:hover .panel-icon{color:#1dd2af}html.theme--documenter-dark .panel-block.is-active .panel-icon{color:#17a689}html.theme--documenter-dark .tabs a{border-bottom-width:1px;margin-bottom:-1px}html.theme--documenter-dark .tabs ul{border-bottom-width:1px}html.theme--documenter-dark .tabs.is-boxed a{border-width:1px}html.theme--documenter-dark .tabs.is-boxed li.is-active a{background-color:#1f2424}html.theme--documenter-dark .tabs.is-toggle li a{border-width:1px;margin-bottom:0}html.theme--documenter-dark .tabs.is-toggle li+li{margin-left:-1px}html.theme--documenter-dark .hero.is-white .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-black .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-light .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-dark .navbar .navbar-dropdown .navbar-item:hover,html.theme--documenter-dark .content kbd.hero .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-primary .navbar .navbar-dropdown .navbar-item:hover,html.theme--documenter-dark .docstring>section>a.hero.docs-sourcelink .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-link .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-info .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-success .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-warning .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark .hero.is-danger .navbar .navbar-dropdown .navbar-item:hover{background-color:rgba(0,0,0,0)}html.theme--documenter-dark h1 .docs-heading-anchor,html.theme--documenter-dark h1 .docs-heading-anchor:hover,html.theme--documenter-dark h1 .docs-heading-anchor:visited,html.theme--documenter-dark h2 .docs-heading-anchor,html.theme--documenter-dark h2 .docs-heading-anchor:hover,html.theme--documenter-dark h2 .docs-heading-anchor:visited,html.theme--documenter-dark h3 .docs-heading-anchor,html.theme--documenter-dark h3 .docs-heading-anchor:hover,html.theme--documenter-dark h3 .docs-heading-anchor:visited,html.theme--documenter-dark h4 .docs-heading-anchor,html.theme--documenter-dark h4 .docs-heading-anchor:hover,html.theme--documenter-dark h4 .docs-heading-anchor:visited,html.theme--documenter-dark h5 .docs-heading-anchor,html.theme--documenter-dark h5 .docs-heading-anchor:hover,html.theme--documenter-dark h5 .docs-heading-anchor:visited,html.theme--documenter-dark h6 .docs-heading-anchor,html.theme--documenter-dark h6 .docs-heading-anchor:hover,html.theme--documenter-dark h6 .docs-heading-anchor:visited{color:#f2f2f2}html.theme--documenter-dark h1 .docs-heading-anchor-permalink,html.theme--documenter-dark h2 .docs-heading-anchor-permalink,html.theme--documenter-dark h3 .docs-heading-anchor-permalink,html.theme--documenter-dark h4 .docs-heading-anchor-permalink,html.theme--documenter-dark h5 .docs-heading-anchor-permalink,html.theme--documenter-dark h6 .docs-heading-anchor-permalink{visibility:hidden;vertical-align:middle;margin-left:0.5em;font-size:0.7rem}html.theme--documenter-dark h1 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h2 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h3 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h4 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h5 .docs-heading-anchor-permalink::before,html.theme--documenter-dark h6 .docs-heading-anchor-permalink::before{font-family:"Font Awesome 5 Free";font-weight:900;content:"\f0c1"}html.theme--documenter-dark h1:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h2:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h3:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h4:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h5:hover .docs-heading-anchor-permalink,html.theme--documenter-dark h6:hover .docs-heading-anchor-permalink{visibility:visible}html.theme--documenter-dark .docs-light-only{display:none !important}html.theme--documenter-dark pre{position:relative;overflow:hidden}html.theme--documenter-dark pre code,html.theme--documenter-dark pre code.hljs{padding:0 .75rem !important;overflow:auto;display:block}html.theme--documenter-dark pre code:first-of-type,html.theme--documenter-dark pre code.hljs:first-of-type{padding-top:0.5rem !important}html.theme--documenter-dark pre code:last-of-type,html.theme--documenter-dark pre code.hljs:last-of-type{padding-bottom:0.5rem !important}html.theme--documenter-dark pre .copy-button{opacity:0.2;transition:opacity 0.2s;position:absolute;right:0em;top:0em;padding:0.5em;width:2.5em;height:2.5em;background:transparent;border:none;font-family:"Font Awesome 5 Free";color:#fff;cursor:pointer;text-align:center}html.theme--documenter-dark pre .copy-button:focus,html.theme--documenter-dark pre .copy-button:hover{opacity:1;background:rgba(255,255,255,0.1);color:#1abc9c}html.theme--documenter-dark pre .copy-button.success{color:#259a12;opacity:1}html.theme--documenter-dark pre .copy-button.error{color:#cb3c33;opacity:1}html.theme--documenter-dark pre:hover .copy-button{opacity:1}html.theme--documenter-dark .admonition{background-color:#282f2f;border-style:solid;border-width:1px;border-color:#5e6d6f;border-radius:.4em;font-size:15px}html.theme--documenter-dark .admonition strong{color:currentColor}html.theme--documenter-dark .admonition.is-small,html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input.admonition{font-size:.85em}html.theme--documenter-dark .admonition.is-medium{font-size:1.25rem}html.theme--documenter-dark .admonition.is-large{font-size:1.5rem}html.theme--documenter-dark .admonition.is-default{background-color:#282f2f;border-color:#5e6d6f}html.theme--documenter-dark .admonition.is-default>.admonition-header{background-color:#5e6d6f;color:#fff}html.theme--documenter-dark .admonition.is-default>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-info{background-color:#282f2f;border-color:#024c7d}html.theme--documenter-dark .admonition.is-info>.admonition-header{background-color:#024c7d;color:#fff}html.theme--documenter-dark .admonition.is-info>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-success{background-color:#282f2f;border-color:#008438}html.theme--documenter-dark .admonition.is-success>.admonition-header{background-color:#008438;color:#fff}html.theme--documenter-dark .admonition.is-success>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-warning{background-color:#282f2f;border-color:#ad8100}html.theme--documenter-dark .admonition.is-warning>.admonition-header{background-color:#ad8100;color:#fff}html.theme--documenter-dark .admonition.is-warning>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-danger{background-color:#282f2f;border-color:#9e1b0d}html.theme--documenter-dark .admonition.is-danger>.admonition-header{background-color:#9e1b0d;color:#fff}html.theme--documenter-dark .admonition.is-danger>.admonition-body{color:#fff}html.theme--documenter-dark .admonition.is-compat{background-color:#282f2f;border-color:#137886}html.theme--documenter-dark .admonition.is-compat>.admonition-header{background-color:#137886;color:#fff}html.theme--documenter-dark .admonition.is-compat>.admonition-body{color:#fff}html.theme--documenter-dark .admonition-header{color:#fff;background-color:#5e6d6f;align-items:center;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.5rem .75rem;position:relative}html.theme--documenter-dark .admonition-header:before{font-family:"Font Awesome 5 Free";font-weight:900;margin-right:.75rem;content:"\f06a"}html.theme--documenter-dark .admonition-body{color:#fff;padding:0.5rem .75rem}html.theme--documenter-dark .admonition-body pre{background-color:#282f2f}html.theme--documenter-dark .admonition-body code{background-color:rgba(255,255,255,0.05)}html.theme--documenter-dark .docstring{margin-bottom:1em;background-color:rgba(0,0,0,0);border:1px solid #5e6d6f;box-shadow:none;max-width:100%}html.theme--documenter-dark .docstring>header{display:flex;flex-grow:1;align-items:stretch;padding:0.5rem .75rem;background-color:#282f2f;box-shadow:0 1px 2px rgba(10,10,10,0.1);box-shadow:none;border-bottom:1px solid #5e6d6f}html.theme--documenter-dark .docstring>header code{background-color:transparent}html.theme--documenter-dark .docstring>header .docstring-binding{margin-right:0.3em}html.theme--documenter-dark .docstring>header .docstring-category{margin-left:0.3em}html.theme--documenter-dark .docstring>section{position:relative;padding:.75rem .75rem;border-bottom:1px solid #5e6d6f}html.theme--documenter-dark .docstring>section:last-child{border-bottom:none}html.theme--documenter-dark .docstring>section>a.docs-sourcelink{transition:opacity 0.3s;opacity:0;position:absolute;right:.375rem;bottom:.375rem}html.theme--documenter-dark .docstring>section>a.docs-sourcelink:focus{opacity:1 !important}html.theme--documenter-dark .docstring:hover>section>a.docs-sourcelink{opacity:0.2}html.theme--documenter-dark .docstring:focus-within>section>a.docs-sourcelink{opacity:0.2}html.theme--documenter-dark .docstring>section:hover a.docs-sourcelink{opacity:1}html.theme--documenter-dark .documenter-example-output{background-color:#1f2424}html.theme--documenter-dark .outdated-warning-overlay{position:fixed;top:0;left:0;right:0;box-shadow:0 0 10px rgba(0,0,0,0.3);z-index:999;background-color:#282f2f;color:#fff;border-bottom:3px solid #9e1b0d;padding:10px 35px;text-align:center;font-size:15px}html.theme--documenter-dark .outdated-warning-overlay .outdated-warning-closer{position:absolute;top:calc(50% - 10px);right:18px;cursor:pointer;width:12px}html.theme--documenter-dark .outdated-warning-overlay a{color:#1abc9c}html.theme--documenter-dark .outdated-warning-overlay a:hover{color:#1dd2af}html.theme--documenter-dark .content pre{border:1px solid #5e6d6f}html.theme--documenter-dark .content code{font-weight:inherit}html.theme--documenter-dark .content a code{color:#1abc9c}html.theme--documenter-dark .content h1 code,html.theme--documenter-dark .content h2 code,html.theme--documenter-dark .content h3 code,html.theme--documenter-dark .content h4 code,html.theme--documenter-dark .content h5 code,html.theme--documenter-dark .content h6 code{color:#f2f2f2}html.theme--documenter-dark .content table{display:block;width:initial;max-width:100%;overflow-x:auto}html.theme--documenter-dark .content blockquote>ul:first-child,html.theme--documenter-dark .content blockquote>ol:first-child,html.theme--documenter-dark .content .admonition-body>ul:first-child,html.theme--documenter-dark .content .admonition-body>ol:first-child{margin-top:0}html.theme--documenter-dark pre,html.theme--documenter-dark code{font-variant-ligatures:no-contextual}html.theme--documenter-dark .breadcrumb a.is-disabled{cursor:default;pointer-events:none}html.theme--documenter-dark .breadcrumb a.is-disabled,html.theme--documenter-dark .breadcrumb a.is-disabled:hover{color:#f2f2f2}html.theme--documenter-dark .hljs{background:initial !important}html.theme--documenter-dark .katex .katex-mathml{top:0;right:0}html.theme--documenter-dark .katex-display,html.theme--documenter-dark mjx-container,html.theme--documenter-dark .MathJax_Display{margin:0.5em 0 !important}html.theme--documenter-dark html{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}html.theme--documenter-dark li.no-marker{list-style:none}html.theme--documenter-dark #documenter .docs-main>article{overflow-wrap:break-word}html.theme--documenter-dark #documenter .docs-main>article .math-container{overflow-x:auto;overflow-y:hidden}@media screen and (min-width: 1056px){html.theme--documenter-dark #documenter .docs-main{max-width:52rem;margin-left:20rem;padding-right:1rem}}@media screen and (max-width: 1055px){html.theme--documenter-dark #documenter .docs-main{width:100%}html.theme--documenter-dark #documenter .docs-main>article{max-width:52rem;margin-left:auto;margin-right:auto;margin-bottom:1rem;padding:0 1rem}html.theme--documenter-dark #documenter .docs-main>header,html.theme--documenter-dark #documenter .docs-main>nav{max-width:100%;width:100%;margin:0}}html.theme--documenter-dark #documenter .docs-main header.docs-navbar{background-color:#1f2424;border-bottom:1px solid #5e6d6f;z-index:2;min-height:4rem;margin-bottom:1rem;display:flex}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .breadcrumb{flex-grow:1}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right{display:flex;white-space:nowrap}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-icon,html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-label,html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-sidebar-button{display:inline-block}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-label{padding:0;margin-left:0.3em}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-settings-button{margin:auto 0 auto 1rem}html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-sidebar-button{font-size:1.5rem;margin:auto 0 auto 1rem}html.theme--documenter-dark #documenter .docs-main header.docs-navbar>*{margin:auto 0}@media screen and (max-width: 1055px){html.theme--documenter-dark #documenter .docs-main header.docs-navbar{position:sticky;top:0;padding:0 1rem;transition-property:top, box-shadow;-webkit-transition-property:top, box-shadow;transition-duration:0.3s;-webkit-transition-duration:0.3s}html.theme--documenter-dark #documenter .docs-main header.docs-navbar.headroom--not-top{box-shadow:.2rem 0rem .4rem #171717;transition-duration:0.7s;-webkit-transition-duration:0.7s}html.theme--documenter-dark #documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom{top:-4.5rem;transition-duration:0.7s;-webkit-transition-duration:0.7s}}html.theme--documenter-dark #documenter .docs-main section.footnotes{border-top:1px solid #5e6d6f}html.theme--documenter-dark #documenter .docs-main section.footnotes li .tag:first-child,html.theme--documenter-dark #documenter .docs-main section.footnotes li .docstring>section>a.docs-sourcelink:first-child,html.theme--documenter-dark #documenter .docs-main section.footnotes li .content kbd:first-child,html.theme--documenter-dark .content #documenter .docs-main section.footnotes li kbd:first-child{margin-right:1em;margin-bottom:0.4em}html.theme--documenter-dark #documenter .docs-main .docs-footer{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;border-top:1px solid #5e6d6f;padding-top:1rem;padding-bottom:1rem}@media screen and (max-width: 1055px){html.theme--documenter-dark #documenter .docs-main .docs-footer{padding-left:1rem;padding-right:1rem}}html.theme--documenter-dark #documenter .docs-main .docs-footer .docs-footer-nextpage,html.theme--documenter-dark #documenter .docs-main .docs-footer .docs-footer-prevpage{flex-grow:1}html.theme--documenter-dark #documenter .docs-main .docs-footer .docs-footer-nextpage{text-align:right}html.theme--documenter-dark #documenter .docs-main .docs-footer .flexbox-break{flex-basis:100%;height:0}html.theme--documenter-dark #documenter .docs-main .docs-footer .footer-message{font-size:0.8em;margin:0.5em auto 0 auto;text-align:center}html.theme--documenter-dark #documenter .docs-sidebar{display:flex;flex-direction:column;color:#fff;background-color:#282f2f;border-right:1px solid #5e6d6f;padding:0;flex:0 0 18rem;z-index:5;font-size:15px;position:fixed;left:-18rem;width:18rem;height:100%;transition:left 0.3s}html.theme--documenter-dark #documenter .docs-sidebar.visible{left:0;box-shadow:.4rem 0rem .8rem #171717}@media screen and (min-width: 1056px){html.theme--documenter-dark #documenter .docs-sidebar.visible{box-shadow:none}}@media screen and (min-width: 1056px){html.theme--documenter-dark #documenter .docs-sidebar{left:0;top:0}}html.theme--documenter-dark #documenter .docs-sidebar .docs-logo{margin-top:1rem;padding:0 1rem}html.theme--documenter-dark #documenter .docs-sidebar .docs-logo>img{max-height:6rem;margin:auto}html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name{flex-shrink:0;font-size:1.5rem;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;padding:0.5rem 0}html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name .docs-autofit{max-width:16.2rem}html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name a,html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name a:hover{color:#fff}html.theme--documenter-dark #documenter .docs-sidebar .docs-version-selector{border-top:1px solid #5e6d6f;display:none;padding:0.5rem}html.theme--documenter-dark #documenter .docs-sidebar .docs-version-selector.visible{display:flex}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu{flex-grow:1;user-select:none;border-top:1px solid #5e6d6f;padding-bottom:1.5rem}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu>li>.tocitem{font-weight:bold}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu>li li{font-size:14.25px;margin-left:1em;border-left:1px solid #5e6d6f}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu input.collapse-toggle{display:none}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.collapsed{display:none}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu input:checked~ul.collapsed{display:block}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem{display:flex}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label{flex-grow:2}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;font-size:11.25px;margin-left:1rem;margin-top:auto;margin-bottom:auto}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before{font-family:"Font Awesome 5 Free";font-weight:900;content:"\f054"}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu input:checked~label.tocitem .docs-chevron::before{content:"\f078"}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu .tocitem{display:block;padding:0.5rem 0.5rem}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu .tocitem,html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu .tocitem:hover{color:#fff;background:#282f2f}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu a.tocitem:hover,html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem:hover{color:#fff;background-color:#32393a}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active{border-top:1px solid #5e6d6f;border-bottom:1px solid #5e6d6f;background-color:#1f2424}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem,html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover{background-color:#1f2424;color:#fff}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover{background-color:#32393a;color:#fff}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu>li.is-active:first-child{border-top:none}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal{margin:0 0.5rem 0.5rem;border-top:1px solid #5e6d6f}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal li{font-size:12.75px;border-left:none;margin-left:0;margin-top:0.5rem}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem{width:100%;padding:0}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before{content:"⚬";margin-right:0.4em}html.theme--documenter-dark #documenter .docs-sidebar form.docs-search{margin:auto;margin-top:0.5rem;margin-bottom:0.5rem}html.theme--documenter-dark #documenter .docs-sidebar form.docs-search>input{width:14.4rem}@media screen and (min-width: 1056px){html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar{width:.3rem;background:none}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#3b4445}html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover{background:#4e5a5c}}@media screen and (max-width: 1055px){html.theme--documenter-dark #documenter .docs-sidebar{overflow-y:auto;-webkit-overflow-scroll:touch}html.theme--documenter-dark #documenter .docs-sidebar::-webkit-scrollbar{width:.3rem;background:none}html.theme--documenter-dark #documenter .docs-sidebar::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#3b4445}html.theme--documenter-dark #documenter .docs-sidebar::-webkit-scrollbar-thumb:hover{background:#4e5a5c}}html.theme--documenter-dark #documenter .docs-main #documenter-search-info{margin-bottom:1rem}html.theme--documenter-dark #documenter .docs-main #documenter-search-results{list-style-type:circle;list-style-position:outside}html.theme--documenter-dark #documenter .docs-main #documenter-search-results li{margin-left:2rem}html.theme--documenter-dark #documenter .docs-main #documenter-search-results .docs-highlight{background-color:yellow}html.theme--documenter-dark{background-color:#1f2424;font-size:16px;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}html.theme--documenter-dark .ansi span.sgr1{font-weight:bolder}html.theme--documenter-dark .ansi span.sgr2{font-weight:lighter}html.theme--documenter-dark .ansi span.sgr3{font-style:italic}html.theme--documenter-dark .ansi span.sgr4{text-decoration:underline}html.theme--documenter-dark .ansi span.sgr7{color:#1f2424;background-color:#fff}html.theme--documenter-dark .ansi span.sgr8{color:transparent}html.theme--documenter-dark .ansi span.sgr8 span{color:transparent}html.theme--documenter-dark .ansi span.sgr9{text-decoration:line-through}html.theme--documenter-dark .ansi span.sgr30{color:#242424}html.theme--documenter-dark .ansi span.sgr31{color:#f6705f}html.theme--documenter-dark .ansi span.sgr32{color:#4fb43a}html.theme--documenter-dark .ansi span.sgr33{color:#f4c72f}html.theme--documenter-dark .ansi span.sgr34{color:#7587f0}html.theme--documenter-dark .ansi span.sgr35{color:#bc89d3}html.theme--documenter-dark .ansi span.sgr36{color:#49b6ca}html.theme--documenter-dark .ansi span.sgr37{color:#b3bdbe}html.theme--documenter-dark .ansi span.sgr40{background-color:#242424}html.theme--documenter-dark .ansi span.sgr41{background-color:#f6705f}html.theme--documenter-dark .ansi span.sgr42{background-color:#4fb43a}html.theme--documenter-dark .ansi span.sgr43{background-color:#f4c72f}html.theme--documenter-dark .ansi span.sgr44{background-color:#7587f0}html.theme--documenter-dark .ansi span.sgr45{background-color:#bc89d3}html.theme--documenter-dark .ansi span.sgr46{background-color:#49b6ca}html.theme--documenter-dark .ansi span.sgr47{background-color:#b3bdbe}html.theme--documenter-dark .ansi span.sgr90{color:#92a0a2}html.theme--documenter-dark .ansi span.sgr91{color:#ff8674}html.theme--documenter-dark .ansi span.sgr92{color:#79d462}html.theme--documenter-dark .ansi span.sgr93{color:#ffe76b}html.theme--documenter-dark .ansi span.sgr94{color:#8a98ff}html.theme--documenter-dark .ansi span.sgr95{color:#d2a4e6}html.theme--documenter-dark .ansi span.sgr96{color:#6bc8db}html.theme--documenter-dark .ansi span.sgr97{color:#ecf0f1}html.theme--documenter-dark .ansi span.sgr100{background-color:#92a0a2}html.theme--documenter-dark .ansi span.sgr101{background-color:#ff8674}html.theme--documenter-dark .ansi span.sgr102{background-color:#79d462}html.theme--documenter-dark .ansi span.sgr103{background-color:#ffe76b}html.theme--documenter-dark .ansi span.sgr104{background-color:#8a98ff}html.theme--documenter-dark .ansi span.sgr105{background-color:#d2a4e6}html.theme--documenter-dark .ansi span.sgr106{background-color:#6bc8db}html.theme--documenter-dark .ansi span.sgr107{background-color:#ecf0f1}html.theme--documenter-dark code.language-julia-repl>span.hljs-meta{color:#4fb43a;font-weight:bolder}html.theme--documenter-dark .hljs{background:#2b2b2b;color:#f8f8f2}html.theme--documenter-dark .hljs-comment,html.theme--documenter-dark .hljs-quote{color:#d4d0ab}html.theme--documenter-dark .hljs-variable,html.theme--documenter-dark .hljs-template-variable,html.theme--documenter-dark .hljs-tag,html.theme--documenter-dark .hljs-name,html.theme--documenter-dark .hljs-selector-id,html.theme--documenter-dark .hljs-selector-class,html.theme--documenter-dark .hljs-regexp,html.theme--documenter-dark .hljs-deletion{color:#ffa07a}html.theme--documenter-dark .hljs-number,html.theme--documenter-dark .hljs-built_in,html.theme--documenter-dark .hljs-literal,html.theme--documenter-dark .hljs-type,html.theme--documenter-dark .hljs-params,html.theme--documenter-dark .hljs-meta,html.theme--documenter-dark .hljs-link{color:#f5ab35}html.theme--documenter-dark .hljs-attribute{color:#ffd700}html.theme--documenter-dark .hljs-string,html.theme--documenter-dark .hljs-symbol,html.theme--documenter-dark .hljs-bullet,html.theme--documenter-dark .hljs-addition{color:#abe338}html.theme--documenter-dark .hljs-title,html.theme--documenter-dark .hljs-section{color:#00e0e0}html.theme--documenter-dark .hljs-keyword,html.theme--documenter-dark .hljs-selector-tag{color:#dcc6e0}html.theme--documenter-dark .hljs-emphasis{font-style:italic}html.theme--documenter-dark .hljs-strong{font-weight:bold}@media screen and (-ms-high-contrast: active){html.theme--documenter-dark .hljs-addition,html.theme--documenter-dark .hljs-attribute,html.theme--documenter-dark .hljs-built_in,html.theme--documenter-dark .hljs-bullet,html.theme--documenter-dark .hljs-comment,html.theme--documenter-dark .hljs-link,html.theme--documenter-dark .hljs-literal,html.theme--documenter-dark .hljs-meta,html.theme--documenter-dark .hljs-number,html.theme--documenter-dark .hljs-params,html.theme--documenter-dark .hljs-string,html.theme--documenter-dark .hljs-symbol,html.theme--documenter-dark .hljs-type,html.theme--documenter-dark .hljs-quote{color:highlight}html.theme--documenter-dark .hljs-keyword,html.theme--documenter-dark .hljs-selector-tag{font-weight:bold}}html.theme--documenter-dark .hljs-subst{color:#f8f8f2} diff --git a/v0.27.5/assets/themes/documenter-light.css b/v0.27.5/assets/themes/documenter-light.css new file mode 100644 index 0000000000..9b9a14b043 --- /dev/null +++ b/v0.27.5/assets/themes/documenter-light.css @@ -0,0 +1,9 @@ +@keyframes spinAround{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}.tabs,.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.breadcrumb,.file,.button,.is-unselectable,.modal-close,.delete{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.navbar-link:not(.is-arrowless)::after,.select:not(.is-multiple):not(.is-loading)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}.admonition:not(:last-child),.tabs:not(:last-child),.message:not(:last-child),.list:not(:last-child),.level:not(:last-child),.breadcrumb:not(:last-child),.highlight:not(:last-child),.block:not(:last-child),.title:not(:last-child),.subtitle:not(:last-child),.table-container:not(:last-child),.table:not(:last-child),.progress:not(:last-child),.notification:not(:last-child),.content:not(:last-child),.box:not(:last-child){margin-bottom:1.5rem}.modal-close,.delete{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(10,10,10,0.2);border:none;border-radius:290486px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}.modal-close::before,.delete::before,.modal-close::after,.delete::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.modal-close::before,.delete::before{height:2px;width:50%}.modal-close::after,.delete::after{height:50%;width:2px}.modal-close:hover,.delete:hover,.modal-close:focus,.delete:focus{background-color:rgba(10,10,10,0.3)}.modal-close:active,.delete:active{background-color:rgba(10,10,10,0.4)}.is-small.modal-close,#documenter .docs-sidebar form.docs-search>input.modal-close,.is-small.delete,#documenter .docs-sidebar form.docs-search>input.delete{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.modal-close,.is-medium.delete{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.modal-close,.is-large.delete{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.control.is-loading::after,.select.is-loading::after,.loader,.button.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #dbdbdb;border-radius:290486px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}.hero-video,.modal-background,.modal,.image.is-square img,#documenter .docs-sidebar .docs-logo>img.is-square img,.image.is-square .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,.image.is-1by1 img,#documenter .docs-sidebar .docs-logo>img.is-1by1 img,.image.is-1by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,.image.is-5by4 img,#documenter .docs-sidebar .docs-logo>img.is-5by4 img,.image.is-5by4 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,.image.is-4by3 img,#documenter .docs-sidebar .docs-logo>img.is-4by3 img,.image.is-4by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,.image.is-3by2 img,#documenter .docs-sidebar .docs-logo>img.is-3by2 img,.image.is-3by2 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,.image.is-5by3 img,#documenter .docs-sidebar .docs-logo>img.is-5by3 img,.image.is-5by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,.image.is-16by9 img,#documenter .docs-sidebar .docs-logo>img.is-16by9 img,.image.is-16by9 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,.image.is-2by1 img,#documenter .docs-sidebar .docs-logo>img.is-2by1 img,.image.is-2by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,.image.is-3by1 img,#documenter .docs-sidebar .docs-logo>img.is-3by1 img,.image.is-3by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,.image.is-4by5 img,#documenter .docs-sidebar .docs-logo>img.is-4by5 img,.image.is-4by5 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,.image.is-3by4 img,#documenter .docs-sidebar .docs-logo>img.is-3by4 img,.image.is-3by4 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,.image.is-2by3 img,#documenter .docs-sidebar .docs-logo>img.is-2by3 img,.image.is-2by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,.image.is-3by5 img,#documenter .docs-sidebar .docs-logo>img.is-3by5 img,.image.is-3by5 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,.image.is-9by16 img,#documenter .docs-sidebar .docs-logo>img.is-9by16 img,.image.is-9by16 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,.image.is-1by2 img,#documenter .docs-sidebar .docs-logo>img.is-1by2 img,.image.is-1by2 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,.image.is-1by3 img,#documenter .docs-sidebar .docs-logo>img.is-1by3 img,.image.is-1by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio,.is-overlay{bottom:0;left:0;position:absolute;right:0;top:0}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.file-cta,.file-name,.select select,.textarea,.input,#documenter .docs-sidebar form.docs-search>input,.button{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.25em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.375em - 1px);padding-left:calc(0.625em - 1px);padding-right:calc(0.625em - 1px);padding-top:calc(0.375em - 1px);position:relative;vertical-align:top}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus,.pagination-ellipsis:focus,.file-cta:focus,.file-name:focus,.select select:focus,.textarea:focus,.input:focus,#documenter .docs-sidebar form.docs-search>input:focus,.button:focus,.is-focused.pagination-previous,.is-focused.pagination-next,.is-focused.pagination-link,.is-focused.pagination-ellipsis,.is-focused.file-cta,.is-focused.file-name,.select select.is-focused,.is-focused.textarea,.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-focused.button,.pagination-previous:active,.pagination-next:active,.pagination-link:active,.pagination-ellipsis:active,.file-cta:active,.file-name:active,.select select:active,.textarea:active,.input:active,#documenter .docs-sidebar form.docs-search>input:active,.button:active,.is-active.pagination-previous,.is-active.pagination-next,.is-active.pagination-link,.is-active.pagination-ellipsis,.is-active.file-cta,.is-active.file-name,.select select.is-active,.is-active.textarea,.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active,.is-active.button{outline:none}.pagination-previous[disabled],.pagination-next[disabled],.pagination-link[disabled],.pagination-ellipsis[disabled],.file-cta[disabled],.file-name[disabled],.select select[disabled],.textarea[disabled],.input[disabled],#documenter .docs-sidebar form.docs-search>input[disabled],.button[disabled],fieldset[disabled] .pagination-previous,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-ellipsis,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input,fieldset[disabled] .button{cursor:not-allowed}/*! minireset.css v0.0.4 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,embed,iframe,object,video{height:auto;max-width:100%}audio{max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:left}html{background-color:#fff;font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:auto;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,select,textarea{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}code,pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace}body{color:#222;font-size:1em;font-weight:400;line-height:1.5}a{color:#2e63b8;cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:#363636}code{background-color:rgba(0,0,0,0.05);color:#000;font-size:.875em;font-weight:normal;padding:.1em}hr{background-color:#f5f5f5;border:none;display:block;height:2px;margin:1.5rem 0}img{height:auto;max-width:100%}input[type="checkbox"],input[type="radio"]{vertical-align:baseline}small{font-size:.875em}span{font-style:inherit;font-weight:inherit}strong{color:#222;font-weight:700}fieldset{border:none}pre{-webkit-overflow-scrolling:touch;background-color:#f5f5f5;color:#222;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}table td,table th{vertical-align:top}table td:not([align]),table th:not([align]){text-align:left}table th{color:#222}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-clipped{overflow:hidden !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7,.docstring>section>a.docs-sourcelink{font-size:.75rem !important}@media screen and (max-width: 768px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 769px),print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1055px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1056px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1216px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}@media screen and (min-width: 1408px){.is-size-1-fullhd{font-size:3rem !important}.is-size-2-fullhd{font-size:2.5rem !important}.is-size-3-fullhd{font-size:2rem !important}.is-size-4-fullhd{font-size:1.5rem !important}.is-size-5-fullhd{font-size:1.25rem !important}.is-size-6-fullhd{font-size:1rem !important}.is-size-7-fullhd{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 768px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 769px),print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1055px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1056px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1216px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-centered-widescreen-only{text-align:center !important}}@media screen and (min-width: 1408px){.has-text-centered-fullhd{text-align:center !important}}@media screen and (max-width: 768px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 769px),print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1055px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1056px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1216px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-justified-widescreen-only{text-align:justify !important}}@media screen and (min-width: 1408px){.has-text-justified-fullhd{text-align:justify !important}}@media screen and (max-width: 768px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 769px),print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1055px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1056px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1216px){.has-text-left-widescreen{text-align:left !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-left-widescreen-only{text-align:left !important}}@media screen and (min-width: 1408px){.has-text-left-fullhd{text-align:left !important}}@media screen and (max-width: 768px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 769px),print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1055px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1056px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1216px){.has-text-right-widescreen{text-align:right !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.has-text-right-widescreen-only{text-align:right !important}}@media screen and (min-width: 1408px){.has-text-right-fullhd{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#0a0a0a !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#0a0a0a !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#363636 !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#1c1c1c !important}.has-background-dark{background-color:#363636 !important}.has-text-primary{color:#4eb5de !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#27a1d2 !important}.has-background-primary{background-color:#4eb5de !important}.has-text-link{color:#2e63b8 !important}a.has-text-link:hover,a.has-text-link:focus{color:#244d8f !important}.has-background-link{background-color:#2e63b8 !important}.has-text-info{color:#209cee !important}a.has-text-info:hover,a.has-text-info:focus{color:#1081cb !important}.has-background-info{background-color:#209cee !important}.has-text-success{color:#22c35b !important}a.has-text-success:hover,a.has-text-success:focus{color:#1a9847 !important}.has-background-success{background-color:#22c35b !important}.has-text-warning{color:#ffdd57 !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#ffd324 !important}.has-background-warning{background-color:#ffdd57 !important}.has-text-danger{color:#da0b00 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#a70800 !important}.has-background-danger{background-color:#da0b00 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#363636 !important}.has-background-grey-darker{background-color:#363636 !important}.has-text-grey-dark{color:#4a4a4a !important}.has-background-grey-dark{background-color:#4a4a4a !important}.has-text-grey{color:#6b6b6b !important}.has-background-grey{background-color:#6b6b6b !important}.has-text-grey-light{color:#b5b5b5 !important}.has-background-grey-light{background-color:#b5b5b5 !important}.has-text-grey-lighter{color:#dbdbdb !important}.has-background-grey-lighter{background-color:#dbdbdb !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-secondary{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:"Lato Medium",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-family-code{font-family:"JuliaMono","SFMono-Regular","Menlo","Consolas","Liberation Mono","DejaVu Sans Mono",monospace !important}.is-block{display:block !important}@media screen and (max-width: 768px){.is-block-mobile{display:block !important}}@media screen and (min-width: 769px),print{.is-block-tablet{display:block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1055px){.is-block-touch{display:block !important}}@media screen and (min-width: 1056px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1216px){.is-block-widescreen{display:block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-block-widescreen-only{display:block !important}}@media screen and (min-width: 1408px){.is-block-fullhd{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 768px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 769px),print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1055px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1056px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1216px){.is-flex-widescreen{display:flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-flex-widescreen-only{display:flex !important}}@media screen and (min-width: 1408px){.is-flex-fullhd{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 768px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 769px),print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1055px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1056px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1216px){.is-inline-widescreen{display:inline !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-widescreen-only{display:inline !important}}@media screen and (min-width: 1408px){.is-inline-fullhd{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 768px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 769px),print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1055px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1056px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1216px){.is-inline-block-widescreen{display:inline-block !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-block-widescreen-only{display:inline-block !important}}@media screen and (min-width: 1408px){.is-inline-block-fullhd{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 768px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 769px),print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1055px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1056px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1216px){.is-inline-flex-widescreen{display:inline-flex !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-inline-flex-widescreen-only{display:inline-flex !important}}@media screen and (min-width: 1408px){.is-inline-flex-fullhd{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 768px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 769px),print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1055px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1056px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1216px){.is-hidden-widescreen{display:none !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-hidden-widescreen-only{display:none !important}}@media screen and (min-width: 1408px){.is-hidden-fullhd{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 768px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 769px),print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 769px) and (max-width: 1055px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1055px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1056px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1056px) and (max-width: 1215px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1216px){.is-invisible-widescreen{visibility:hidden !important}}@media screen and (min-width: 1216px) and (max-width: 1407px){.is-invisible-widescreen-only{visibility:hidden !important}}@media screen and (min-width: 1408px){.is-invisible-fullhd{visibility:hidden !important}}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-relative{position:relative !important}.box{background-color:#fff;border-radius:6px;box-shadow:0 2px 3px rgba(10,10,10,0.1),0 0 0 1px rgba(10,10,10,0.1);color:#222;display:block;padding:1.25rem}a.box:hover,a.box:focus{box-shadow:0 2px 3px rgba(10,10,10,0.1),0 0 0 1px #2e63b8}a.box:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2),0 0 0 1px #2e63b8}.button{background-color:#fff;border-color:#dbdbdb;border-width:1px;color:#363636;cursor:pointer;justify-content:center;padding-bottom:calc(0.375em - 1px);padding-left:.75em;padding-right:.75em;padding-top:calc(0.375em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-small,.button #documenter .docs-sidebar form.docs-search>input.icon,#documenter .docs-sidebar .button form.docs-search>input.icon,.button .icon.is-medium,.button .icon.is-large{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-0.375em - 1px);margin-right:0.1875em}.button .icon:last-child:not(:first-child){margin-left:0.1875em;margin-right:calc(-0.375em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-0.375em - 1px);margin-right:calc(-0.375em - 1px)}.button:hover,.button.is-hovered{border-color:#b5b5b5;color:#363636}.button:focus,.button.is-focused{border-color:#3c5dcd;color:#363636}.button:focus:not(:active),.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.button:active,.button.is-active{border-color:#4a4a4a;color:#363636}.button.is-text{background-color:transparent;border-color:transparent;color:#222;text-decoration:underline}.button.is-text:hover,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text.is-focused{background-color:#f5f5f5;color:#222}.button.is-text:active,.button.is-text.is-active{background-color:#e8e8e8;color:#222}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-white{background-color:#fff;border-color:transparent;color:#0a0a0a}.button.is-white:hover,.button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.button.is-white:focus,.button.is-white.is-focused{border-color:transparent;color:#0a0a0a}.button.is-white:focus:not(:active),.button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}.button.is-white:active,.button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:#fff;border-color:transparent;box-shadow:none}.button.is-white.is-inverted{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted:hover,.button.is-white.is-inverted.is-hovered{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:#0a0a0a;border-color:transparent;box-shadow:none;color:#fff}.button.is-white.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-white.is-outlined:hover,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#0a0a0a}.button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-white.is-outlined.is-loading:hover::after,.button.is-white.is-outlined.is-loading.is-hovered::after,.button.is-white.is-outlined.is-loading:focus::after,.button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-white.is-inverted.is-outlined:hover,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined.is-focused{background-color:#0a0a0a;color:#fff}.button.is-white.is-inverted.is-outlined.is-loading:hover::after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-white.is-inverted.is-outlined.is-loading:focus::after,.button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black{background-color:#0a0a0a;border-color:transparent;color:#fff}.button.is-black:hover,.button.is-black.is-hovered{background-color:#040404;border-color:transparent;color:#fff}.button.is-black:focus,.button.is-black.is-focused{border-color:transparent;color:#fff}.button.is-black:focus:not(:active),.button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}.button.is-black:active,.button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:#0a0a0a;border-color:transparent;box-shadow:none}.button.is-black.is-inverted{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted:hover,.button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0a0a0a}.button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;color:#0a0a0a}.button.is-black.is-outlined:hover,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined.is-focused{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-black.is-outlined.is-loading:hover::after,.button.is-black.is-outlined.is-loading.is-hovered::after,.button.is-black.is-outlined.is-loading:focus::after,.button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:#0a0a0a;box-shadow:none;color:#0a0a0a}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-black.is-inverted.is-outlined:hover,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0a0a0a}.button.is-black.is-inverted.is-outlined.is-loading:hover::after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-black.is-inverted.is-outlined.is-loading:focus::after,.button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0a0a0a #0a0a0a !important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-light{background-color:#f5f5f5;border-color:transparent;color:#363636}.button.is-light:hover,.button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:#363636}.button.is-light:focus,.button.is-light.is-focused{border-color:transparent;color:#363636}.button.is-light:focus:not(:active),.button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}.button.is-light:active,.button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:#363636}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:#f5f5f5;border-color:transparent;box-shadow:none}.button.is-light.is-inverted{background-color:#363636;color:#f5f5f5}.button.is-light.is-inverted:hover,.button.is-light.is-inverted.is-hovered{background-color:#292929}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:#363636;border-color:transparent;box-shadow:none;color:#f5f5f5}.button.is-light.is-loading::after{border-color:transparent transparent #363636 #363636 !important}.button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-light.is-outlined:hover,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:#363636}.button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-light.is-outlined.is-loading:hover::after,.button.is-light.is-outlined.is-loading.is-hovered::after,.button.is-light.is-outlined.is-loading:focus::after,.button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #363636 #363636 !important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-light.is-inverted.is-outlined:hover,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined.is-focused{background-color:#363636;color:#f5f5f5}.button.is-light.is-inverted.is-outlined.is-loading:hover::after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-light.is-inverted.is-outlined.is-loading:focus::after,.button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark,.content kbd.button{background-color:#363636;border-color:transparent;color:#f5f5f5}.button.is-dark:hover,.content kbd.button:hover,.button.is-dark.is-hovered,.content kbd.button.is-hovered{background-color:#2f2f2f;border-color:transparent;color:#f5f5f5}.button.is-dark:focus,.content kbd.button:focus,.button.is-dark.is-focused,.content kbd.button.is-focused{border-color:transparent;color:#f5f5f5}.button.is-dark:focus:not(:active),.content kbd.button:focus:not(:active),.button.is-dark.is-focused:not(:active),.content kbd.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(54,54,54,0.25)}.button.is-dark:active,.content kbd.button:active,.button.is-dark.is-active,.content kbd.button.is-active{background-color:#292929;border-color:transparent;color:#f5f5f5}.button.is-dark[disabled],.content kbd.button[disabled],fieldset[disabled] .button.is-dark,fieldset[disabled] .content kbd.button,.content fieldset[disabled] kbd.button{background-color:#363636;border-color:transparent;box-shadow:none}.button.is-dark.is-inverted,.content kbd.button.is-inverted{background-color:#f5f5f5;color:#363636}.button.is-dark.is-inverted:hover,.content kbd.button.is-inverted:hover,.button.is-dark.is-inverted.is-hovered,.content kbd.button.is-inverted.is-hovered{background-color:#e8e8e8}.button.is-dark.is-inverted[disabled],.content kbd.button.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted,fieldset[disabled] .content kbd.button.is-inverted,.content fieldset[disabled] kbd.button.is-inverted{background-color:#f5f5f5;border-color:transparent;box-shadow:none;color:#363636}.button.is-dark.is-loading::after,.content kbd.button.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-dark.is-outlined,.content kbd.button.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-dark.is-outlined:hover,.content kbd.button.is-outlined:hover,.button.is-dark.is-outlined.is-hovered,.content kbd.button.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.content kbd.button.is-outlined:focus,.button.is-dark.is-outlined.is-focused,.content kbd.button.is-outlined.is-focused{background-color:#363636;border-color:#363636;color:#f5f5f5}.button.is-dark.is-outlined.is-loading::after,.content kbd.button.is-outlined.is-loading::after{border-color:transparent transparent #363636 #363636 !important}.button.is-dark.is-outlined.is-loading:hover::after,.content kbd.button.is-outlined.is-loading:hover::after,.button.is-dark.is-outlined.is-loading.is-hovered::after,.content kbd.button.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-outlined.is-loading:focus::after,.content kbd.button.is-outlined.is-loading:focus::after,.button.is-dark.is-outlined.is-loading.is-focused::after,.content kbd.button.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-dark.is-outlined[disabled],.content kbd.button.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined,fieldset[disabled] .content kbd.button.is-outlined,.content fieldset[disabled] kbd.button.is-outlined{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark.is-inverted.is-outlined,.content kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-dark.is-inverted.is-outlined:hover,.content kbd.button.is-inverted.is-outlined:hover,.button.is-dark.is-inverted.is-outlined.is-hovered,.content kbd.button.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.content kbd.button.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined.is-focused,.content kbd.button.is-inverted.is-outlined.is-focused{background-color:#f5f5f5;color:#363636}.button.is-dark.is-inverted.is-outlined.is-loading:hover::after,.content kbd.button.is-inverted.is-outlined.is-loading:hover::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,.content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-inverted.is-outlined.is-loading:focus::after,.content kbd.button.is-inverted.is-outlined.is-loading:focus::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after,.content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #363636 #363636 !important}.button.is-dark.is-inverted.is-outlined[disabled],.content kbd.button.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined,fieldset[disabled] .content kbd.button.is-inverted.is-outlined,.content fieldset[disabled] kbd.button.is-inverted.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-primary,.docstring>section>a.button.docs-sourcelink{background-color:#4eb5de;border-color:transparent;color:#fff}.button.is-primary:hover,.docstring>section>a.button.docs-sourcelink:hover,.button.is-primary.is-hovered,.docstring>section>a.button.is-hovered.docs-sourcelink{background-color:#43b1dc;border-color:transparent;color:#fff}.button.is-primary:focus,.docstring>section>a.button.docs-sourcelink:focus,.button.is-primary.is-focused,.docstring>section>a.button.is-focused.docs-sourcelink{border-color:transparent;color:#fff}.button.is-primary:focus:not(:active),.docstring>section>a.button.docs-sourcelink:focus:not(:active),.button.is-primary.is-focused:not(:active),.docstring>section>a.button.is-focused.docs-sourcelink:not(:active){box-shadow:0 0 0 0.125em rgba(78,181,222,0.25)}.button.is-primary:active,.docstring>section>a.button.docs-sourcelink:active,.button.is-primary.is-active,.docstring>section>a.button.is-active.docs-sourcelink{background-color:#39acda;border-color:transparent;color:#fff}.button.is-primary[disabled],.docstring>section>a.button.docs-sourcelink[disabled],fieldset[disabled] .button.is-primary,fieldset[disabled] .docstring>section>a.button.docs-sourcelink{background-color:#4eb5de;border-color:transparent;box-shadow:none}.button.is-primary.is-inverted,.docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;color:#4eb5de}.button.is-primary.is-inverted:hover,.docstring>section>a.button.is-inverted.docs-sourcelink:hover,.button.is-primary.is-inverted.is-hovered,.docstring>section>a.button.is-inverted.is-hovered.docs-sourcelink{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],.docstring>section>a.button.is-inverted.docs-sourcelink[disabled],fieldset[disabled] .button.is-primary.is-inverted,fieldset[disabled] .docstring>section>a.button.is-inverted.docs-sourcelink{background-color:#fff;border-color:transparent;box-shadow:none;color:#4eb5de}.button.is-primary.is-loading::after,.docstring>section>a.button.is-loading.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}.button.is-primary.is-outlined,.docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#4eb5de;color:#4eb5de}.button.is-primary.is-outlined:hover,.docstring>section>a.button.is-outlined.docs-sourcelink:hover,.button.is-primary.is-outlined.is-hovered,.docstring>section>a.button.is-outlined.is-hovered.docs-sourcelink,.button.is-primary.is-outlined:focus,.docstring>section>a.button.is-outlined.docs-sourcelink:focus,.button.is-primary.is-outlined.is-focused,.docstring>section>a.button.is-outlined.is-focused.docs-sourcelink{background-color:#4eb5de;border-color:#4eb5de;color:#fff}.button.is-primary.is-outlined.is-loading::after,.docstring>section>a.button.is-outlined.is-loading.docs-sourcelink::after{border-color:transparent transparent #4eb5de #4eb5de !important}.button.is-primary.is-outlined.is-loading:hover::after,.docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:hover::after,.button.is-primary.is-outlined.is-loading.is-hovered::after,.docstring>section>a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after,.button.is-primary.is-outlined.is-loading:focus::after,.docstring>section>a.button.is-outlined.is-loading.docs-sourcelink:focus::after,.button.is-primary.is-outlined.is-loading.is-focused::after,.docstring>section>a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #fff #fff !important}.button.is-primary.is-outlined[disabled],.docstring>section>a.button.is-outlined.docs-sourcelink[disabled],fieldset[disabled] .button.is-primary.is-outlined,fieldset[disabled] .docstring>section>a.button.is-outlined.docs-sourcelink{background-color:transparent;border-color:#4eb5de;box-shadow:none;color:#4eb5de}.button.is-primary.is-inverted.is-outlined,.docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:hover,.docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:hover,.button.is-primary.is-inverted.is-outlined.is-hovered,.docstring>section>a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink,.button.is-primary.is-inverted.is-outlined:focus,.docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink:focus,.button.is-primary.is-inverted.is-outlined.is-focused,.docstring>section>a.button.is-inverted.is-outlined.is-focused.docs-sourcelink{background-color:#fff;color:#4eb5de}.button.is-primary.is-inverted.is-outlined.is-loading:hover::after,.docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,.docstring>section>a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after,.button.is-primary.is-inverted.is-outlined.is-loading:focus::after,.docstring>section>a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after,.docstring>section>a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after{border-color:transparent transparent #4eb5de #4eb5de !important}.button.is-primary.is-inverted.is-outlined[disabled],.docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined,fieldset[disabled] .docstring>section>a.button.is-inverted.is-outlined.docs-sourcelink{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link{background-color:#2e63b8;border-color:transparent;color:#fff}.button.is-link:hover,.button.is-link.is-hovered{background-color:#2b5eae;border-color:transparent;color:#fff}.button.is-link:focus,.button.is-link.is-focused{border-color:transparent;color:#fff}.button.is-link:focus:not(:active),.button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.button.is-link:active,.button.is-link.is-active{background-color:#2958a4;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:#2e63b8;border-color:transparent;box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:#2e63b8}.button.is-link.is-inverted:hover,.button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#2e63b8}.button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-link.is-outlined{background-color:transparent;border-color:#2e63b8;color:#2e63b8}.button.is-link.is-outlined:hover,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined.is-focused{background-color:#2e63b8;border-color:#2e63b8;color:#fff}.button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #2e63b8 #2e63b8 !important}.button.is-link.is-outlined.is-loading:hover::after,.button.is-link.is-outlined.is-loading.is-hovered::after,.button.is-link.is-outlined.is-loading:focus::after,.button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:#2e63b8;box-shadow:none;color:#2e63b8}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:hover,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#2e63b8}.button.is-link.is-inverted.is-outlined.is-loading:hover::after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-link.is-inverted.is-outlined.is-loading:focus::after,.button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #2e63b8 #2e63b8 !important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info{background-color:#209cee;border-color:transparent;color:#fff}.button.is-info:hover,.button.is-info.is-hovered{background-color:#1497ed;border-color:transparent;color:#fff}.button.is-info:focus,.button.is-info.is-focused{border-color:transparent;color:#fff}.button.is-info:focus:not(:active),.button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(32,156,238,0.25)}.button.is-info:active,.button.is-info.is-active{background-color:#1190e3;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:#209cee;border-color:transparent;box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:#209cee}.button.is-info.is-inverted:hover,.button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#209cee}.button.is-info.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-info.is-outlined{background-color:transparent;border-color:#209cee;color:#209cee}.button.is-info.is-outlined:hover,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined.is-focused{background-color:#209cee;border-color:#209cee;color:#fff}.button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #209cee #209cee !important}.button.is-info.is-outlined.is-loading:hover::after,.button.is-info.is-outlined.is-loading.is-hovered::after,.button.is-info.is-outlined.is-loading:focus::after,.button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:#209cee;box-shadow:none;color:#209cee}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:hover,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#209cee}.button.is-info.is-inverted.is-outlined.is-loading:hover::after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-info.is-inverted.is-outlined.is-loading:focus::after,.button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #209cee #209cee !important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success{background-color:#22c35b;border-color:transparent;color:#fff}.button.is-success:hover,.button.is-success.is-hovered{background-color:#20b856;border-color:transparent;color:#fff}.button.is-success:focus,.button.is-success.is-focused{border-color:transparent;color:#fff}.button.is-success:focus:not(:active),.button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(34,195,91,0.25)}.button.is-success:active,.button.is-success.is-active{background-color:#1ead51;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:#22c35b;border-color:transparent;box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:#22c35b}.button.is-success.is-inverted:hover,.button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#22c35b}.button.is-success.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-success.is-outlined{background-color:transparent;border-color:#22c35b;color:#22c35b}.button.is-success.is-outlined:hover,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined.is-focused{background-color:#22c35b;border-color:#22c35b;color:#fff}.button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #22c35b #22c35b !important}.button.is-success.is-outlined.is-loading:hover::after,.button.is-success.is-outlined.is-loading.is-hovered::after,.button.is-success.is-outlined.is-loading:focus::after,.button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:#22c35b;box-shadow:none;color:#22c35b}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:hover,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#22c35b}.button.is-success.is-inverted.is-outlined.is-loading:hover::after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-success.is-inverted.is-outlined.is-loading:focus::after,.button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #22c35b #22c35b !important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-warning{background-color:#ffdd57;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-warning:hover,.button.is-warning.is-hovered{background-color:#ffda4a;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-warning:focus,.button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-warning:focus:not(:active),.button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,221,87,0.25)}.button.is-warning:active,.button.is-warning.is-active{background-color:#ffd83e;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:#ffdd57;border-color:transparent;box-shadow:none}.button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);color:#ffdd57}.button.is-warning.is-inverted:hover,.button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#ffdd57}.button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}.button.is-warning.is-outlined{background-color:transparent;border-color:#ffdd57;color:#ffdd57}.button.is-warning.is-outlined:hover,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined.is-focused{background-color:#ffdd57;border-color:#ffdd57;color:rgba(0,0,0,0.7)}.button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #ffdd57 #ffdd57 !important}.button.is-warning.is-outlined.is-loading:hover::after,.button.is-warning.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-outlined.is-loading:focus::after,.button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:#ffdd57;box-shadow:none;color:#ffdd57}.button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}.button.is-warning.is-inverted.is-outlined:hover,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#ffdd57}.button.is-warning.is-inverted.is-outlined.is-loading:hover::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-inverted.is-outlined.is-loading:focus::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #ffdd57 #ffdd57 !important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}.button.is-danger{background-color:#da0b00;border-color:transparent;color:#fff}.button.is-danger:hover,.button.is-danger.is-hovered{background-color:#cd0a00;border-color:transparent;color:#fff}.button.is-danger:focus,.button.is-danger.is-focused{border-color:transparent;color:#fff}.button.is-danger:focus:not(:active),.button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(218,11,0,0.25)}.button.is-danger:active,.button.is-danger.is-active{background-color:#c10a00;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:#da0b00;border-color:transparent;box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:#da0b00}.button.is-danger.is-inverted:hover,.button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#da0b00}.button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-danger.is-outlined{background-color:transparent;border-color:#da0b00;color:#da0b00}.button.is-danger.is-outlined:hover,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined.is-focused{background-color:#da0b00;border-color:#da0b00;color:#fff}.button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #da0b00 #da0b00 !important}.button.is-danger.is-outlined.is-loading:hover::after,.button.is-danger.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-outlined.is-loading:focus::after,.button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:#da0b00;box-shadow:none;color:#da0b00}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:hover,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#da0b00}.button.is-danger.is-inverted.is-outlined.is-loading:hover::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-inverted.is-outlined.is-loading:focus::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #da0b00 #da0b00 !important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-small,#documenter .docs-sidebar form.docs-search>input.button{border-radius:2px;font-size:.75rem}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:#fff;border-color:#dbdbdb;box-shadow:none;opacity:.5}.button.is-fullwidth{display:flex;width:100%}.button.is-loading{color:transparent !important;pointer-events:none}.button.is-loading::after{position:absolute;left:calc(50% - (1em / 2));top:calc(50% - (1em / 2));position:absolute !important}.button.is-static{background-color:#f5f5f5;border-color:#dbdbdb;color:#6b6b6b;box-shadow:none;pointer-events:none}.button.is-rounded,#documenter .docs-sidebar form.docs-search>input.button{border-radius:290486px;padding-left:1em;padding-right:1em}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:0.5rem}.buttons .button:not(:last-child):not(.is-fullwidth){margin-right:0.5rem}.buttons:last-child{margin-bottom:-0.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){border-radius:2px;font-size:.75rem}.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}.buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.buttons.has-addons .button:last-child{margin-right:0}.buttons.has-addons .button:hover,.buttons.has-addons .button.is-hovered{z-index:2}.buttons.has-addons .button:focus,.buttons.has-addons .button.is-focused,.buttons.has-addons .button:active,.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-selected{z-index:3}.buttons.has-addons .button:focus:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-selected:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}.buttons.is-centered{justify-content:center}.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}.buttons.is-right{justify-content:flex-end}.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}.container{flex-grow:1;margin:0 auto;position:relative;width:auto}@media screen and (min-width: 1056px){.container{max-width:992px}.container.is-fluid{margin-left:32px;margin-right:32px;max-width:none}}@media screen and (max-width: 1215px){.container.is-widescreen{max-width:1152px}}@media screen and (max-width: 1407px){.container.is-fullhd{max-width:1344px}}@media screen and (min-width: 1216px){.container{max-width:1152px}}@media screen and (min-width: 1408px){.container{max-width:1344px}}.content li+li{margin-top:0.25em}.content p:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content ul:not(:last-child),.content blockquote:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:#222;font-weight:600;line-height:1.125}.content h1{font-size:2em;margin-bottom:0.5em}.content h1:not(:first-child){margin-top:1em}.content h2{font-size:1.75em;margin-bottom:0.5714em}.content h2:not(:first-child){margin-top:1.1428em}.content h3{font-size:1.5em;margin-bottom:0.6666em}.content h3:not(:first-child){margin-top:1.3333em}.content h4{font-size:1.25em;margin-bottom:0.8em}.content h5{font-size:1.125em;margin-bottom:0.8888em}.content h6{font-size:1em;margin-bottom:1em}.content blockquote{background-color:#f5f5f5;border-left:5px solid #dbdbdb;padding:1.25em 1.5em}.content ol{list-style-position:outside;margin-left:2em;margin-top:1em}.content ol:not([type]){list-style-type:decimal}.content ol.is-lower-alpha:not([type]){list-style-type:lower-alpha}.content ol.is-lower-roman:not([type]){list-style-type:lower-roman}.content ol.is-upper-alpha:not([type]){list-style-type:upper-alpha}.content ol.is-upper-roman:not([type]){list-style-type:upper-roman}.content ul{list-style:disc outside;margin-left:2em;margin-top:1em}.content ul ul{list-style-type:circle;margin-top:0.5em}.content ul ul ul{list-style-type:square}.content dd{margin-left:2em}.content figure{margin-left:2em;margin-right:2em;text-align:center}.content figure:not(:first-child){margin-top:2em}.content figure:not(:last-child){margin-bottom:2em}.content figure img{display:inline-block}.content figure figcaption{font-style:italic}.content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:0;white-space:pre;word-wrap:normal}.content sup,.content sub{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}.content table th{color:#222}.content table th:not([align]){text-align:left}.content table thead td,.content table thead th{border-width:0 0 2px;color:#222}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:#222}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content .tabs li+li{margin-top:0}.content.is-small,#documenter .docs-sidebar form.docs-search>input.content{font-size:.75rem}.content.is-medium{font-size:1.25rem}.content.is-large{font-size:1.5rem}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small,#documenter .docs-sidebar form.docs-search>input.icon{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}.image,#documenter .docs-sidebar .docs-logo>img{display:block;position:relative}.image img,#documenter .docs-sidebar .docs-logo>img img{display:block;height:auto;width:100%}.image img.is-rounded,#documenter .docs-sidebar .docs-logo>img img.is-rounded{border-radius:290486px}.image.is-square img,#documenter .docs-sidebar .docs-logo>img.is-square img,.image.is-square .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-square .has-ratio,.image.is-1by1 img,#documenter .docs-sidebar .docs-logo>img.is-1by1 img,.image.is-1by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by1 .has-ratio,.image.is-5by4 img,#documenter .docs-sidebar .docs-logo>img.is-5by4 img,.image.is-5by4 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-5by4 .has-ratio,.image.is-4by3 img,#documenter .docs-sidebar .docs-logo>img.is-4by3 img,.image.is-4by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-4by3 .has-ratio,.image.is-3by2 img,#documenter .docs-sidebar .docs-logo>img.is-3by2 img,.image.is-3by2 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by2 .has-ratio,.image.is-5by3 img,#documenter .docs-sidebar .docs-logo>img.is-5by3 img,.image.is-5by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-5by3 .has-ratio,.image.is-16by9 img,#documenter .docs-sidebar .docs-logo>img.is-16by9 img,.image.is-16by9 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-16by9 .has-ratio,.image.is-2by1 img,#documenter .docs-sidebar .docs-logo>img.is-2by1 img,.image.is-2by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-2by1 .has-ratio,.image.is-3by1 img,#documenter .docs-sidebar .docs-logo>img.is-3by1 img,.image.is-3by1 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by1 .has-ratio,.image.is-4by5 img,#documenter .docs-sidebar .docs-logo>img.is-4by5 img,.image.is-4by5 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-4by5 .has-ratio,.image.is-3by4 img,#documenter .docs-sidebar .docs-logo>img.is-3by4 img,.image.is-3by4 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by4 .has-ratio,.image.is-2by3 img,#documenter .docs-sidebar .docs-logo>img.is-2by3 img,.image.is-2by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-2by3 .has-ratio,.image.is-3by5 img,#documenter .docs-sidebar .docs-logo>img.is-3by5 img,.image.is-3by5 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-3by5 .has-ratio,.image.is-9by16 img,#documenter .docs-sidebar .docs-logo>img.is-9by16 img,.image.is-9by16 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-9by16 .has-ratio,.image.is-1by2 img,#documenter .docs-sidebar .docs-logo>img.is-1by2 img,.image.is-1by2 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by2 .has-ratio,.image.is-1by3 img,#documenter .docs-sidebar .docs-logo>img.is-1by3 img,.image.is-1by3 .has-ratio,#documenter .docs-sidebar .docs-logo>img.is-1by3 .has-ratio{height:100%;width:100%}.image.is-square,#documenter .docs-sidebar .docs-logo>img.is-square,.image.is-1by1,#documenter .docs-sidebar .docs-logo>img.is-1by1{padding-top:100%}.image.is-5by4,#documenter .docs-sidebar .docs-logo>img.is-5by4{padding-top:80%}.image.is-4by3,#documenter .docs-sidebar .docs-logo>img.is-4by3{padding-top:75%}.image.is-3by2,#documenter .docs-sidebar .docs-logo>img.is-3by2{padding-top:66.6666%}.image.is-5by3,#documenter .docs-sidebar .docs-logo>img.is-5by3{padding-top:60%}.image.is-16by9,#documenter .docs-sidebar .docs-logo>img.is-16by9{padding-top:56.25%}.image.is-2by1,#documenter .docs-sidebar .docs-logo>img.is-2by1{padding-top:50%}.image.is-3by1,#documenter .docs-sidebar .docs-logo>img.is-3by1{padding-top:33.3333%}.image.is-4by5,#documenter .docs-sidebar .docs-logo>img.is-4by5{padding-top:125%}.image.is-3by4,#documenter .docs-sidebar .docs-logo>img.is-3by4{padding-top:133.3333%}.image.is-2by3,#documenter .docs-sidebar .docs-logo>img.is-2by3{padding-top:150%}.image.is-3by5,#documenter .docs-sidebar .docs-logo>img.is-3by5{padding-top:166.6666%}.image.is-9by16,#documenter .docs-sidebar .docs-logo>img.is-9by16{padding-top:177.7777%}.image.is-1by2,#documenter .docs-sidebar .docs-logo>img.is-1by2{padding-top:200%}.image.is-1by3,#documenter .docs-sidebar .docs-logo>img.is-1by3{padding-top:300%}.image.is-16x16,#documenter .docs-sidebar .docs-logo>img.is-16x16{height:16px;width:16px}.image.is-24x24,#documenter .docs-sidebar .docs-logo>img.is-24x24{height:24px;width:24px}.image.is-32x32,#documenter .docs-sidebar .docs-logo>img.is-32x32{height:32px;width:32px}.image.is-48x48,#documenter .docs-sidebar .docs-logo>img.is-48x48{height:48px;width:48px}.image.is-64x64,#documenter .docs-sidebar .docs-logo>img.is-64x64{height:64px;width:64px}.image.is-96x96,#documenter .docs-sidebar .docs-logo>img.is-96x96{height:96px;width:96px}.image.is-128x128,#documenter .docs-sidebar .docs-logo>img.is-128x128{height:128px;width:128px}.notification{background-color:#f5f5f5;border-radius:4px;padding:1.25rem 2.5rem 1.25rem 1.5rem;position:relative}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:#fff}.notification pre code{background:transparent}.notification>.delete{position:absolute;right:0.5rem;top:0.5rem}.notification .title,.notification .subtitle,.notification .content{color:currentColor}.notification.is-white{background-color:#fff;color:#0a0a0a}.notification.is-black{background-color:#0a0a0a;color:#fff}.notification.is-light{background-color:#f5f5f5;color:#363636}.notification.is-dark,.content kbd.notification{background-color:#363636;color:#f5f5f5}.notification.is-primary,.docstring>section>a.notification.docs-sourcelink{background-color:#4eb5de;color:#fff}.notification.is-link{background-color:#2e63b8;color:#fff}.notification.is-info{background-color:#209cee;color:#fff}.notification.is-success{background-color:#22c35b;color:#fff}.notification.is-warning{background-color:#ffdd57;color:rgba(0,0,0,0.7)}.notification.is-danger{background-color:#da0b00;color:#fff}.progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:290486px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:#dbdbdb}.progress::-webkit-progress-value{background-color:#222}.progress::-moz-progress-bar{background-color:#222}.progress::-ms-fill{background-color:#222;border:none}.progress.is-white::-webkit-progress-value{background-color:#fff}.progress.is-white::-moz-progress-bar{background-color:#fff}.progress.is-white::-ms-fill{background-color:#fff}.progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #dbdbdb 30%)}.progress.is-black::-webkit-progress-value{background-color:#0a0a0a}.progress.is-black::-moz-progress-bar{background-color:#0a0a0a}.progress.is-black::-ms-fill{background-color:#0a0a0a}.progress.is-black:indeterminate{background-image:linear-gradient(to right, #0a0a0a 30%, #dbdbdb 30%)}.progress.is-light::-webkit-progress-value{background-color:#f5f5f5}.progress.is-light::-moz-progress-bar{background-color:#f5f5f5}.progress.is-light::-ms-fill{background-color:#f5f5f5}.progress.is-light:indeterminate{background-image:linear-gradient(to right, #f5f5f5 30%, #dbdbdb 30%)}.progress.is-dark::-webkit-progress-value,.content kbd.progress::-webkit-progress-value{background-color:#363636}.progress.is-dark::-moz-progress-bar,.content kbd.progress::-moz-progress-bar{background-color:#363636}.progress.is-dark::-ms-fill,.content kbd.progress::-ms-fill{background-color:#363636}.progress.is-dark:indeterminate,.content kbd.progress:indeterminate{background-image:linear-gradient(to right, #363636 30%, #dbdbdb 30%)}.progress.is-primary::-webkit-progress-value,.docstring>section>a.progress.docs-sourcelink::-webkit-progress-value{background-color:#4eb5de}.progress.is-primary::-moz-progress-bar,.docstring>section>a.progress.docs-sourcelink::-moz-progress-bar{background-color:#4eb5de}.progress.is-primary::-ms-fill,.docstring>section>a.progress.docs-sourcelink::-ms-fill{background-color:#4eb5de}.progress.is-primary:indeterminate,.docstring>section>a.progress.docs-sourcelink:indeterminate{background-image:linear-gradient(to right, #4eb5de 30%, #dbdbdb 30%)}.progress.is-link::-webkit-progress-value{background-color:#2e63b8}.progress.is-link::-moz-progress-bar{background-color:#2e63b8}.progress.is-link::-ms-fill{background-color:#2e63b8}.progress.is-link:indeterminate{background-image:linear-gradient(to right, #2e63b8 30%, #dbdbdb 30%)}.progress.is-info::-webkit-progress-value{background-color:#209cee}.progress.is-info::-moz-progress-bar{background-color:#209cee}.progress.is-info::-ms-fill{background-color:#209cee}.progress.is-info:indeterminate{background-image:linear-gradient(to right, #209cee 30%, #dbdbdb 30%)}.progress.is-success::-webkit-progress-value{background-color:#22c35b}.progress.is-success::-moz-progress-bar{background-color:#22c35b}.progress.is-success::-ms-fill{background-color:#22c35b}.progress.is-success:indeterminate{background-image:linear-gradient(to right, #22c35b 30%, #dbdbdb 30%)}.progress.is-warning::-webkit-progress-value{background-color:#ffdd57}.progress.is-warning::-moz-progress-bar{background-color:#ffdd57}.progress.is-warning::-ms-fill{background-color:#ffdd57}.progress.is-warning:indeterminate{background-image:linear-gradient(to right, #ffdd57 30%, #dbdbdb 30%)}.progress.is-danger::-webkit-progress-value{background-color:#da0b00}.progress.is-danger::-moz-progress-bar{background-color:#da0b00}.progress.is-danger::-ms-fill{background-color:#da0b00}.progress.is-danger:indeterminate{background-image:linear-gradient(to right, #da0b00 30%, #dbdbdb 30%)}.progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#dbdbdb;background-image:linear-gradient(to right, #222 30%, #dbdbdb 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress.is-small,#documenter .docs-sidebar form.docs-search>input.progress{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}.table{background-color:#fff;color:#363636}.table td,.table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}.table td.is-white,.table th.is-white{background-color:#fff;border-color:#fff;color:#0a0a0a}.table td.is-black,.table th.is-black{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.table td.is-light,.table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:#363636}.table td.is-dark,.table th.is-dark{background-color:#363636;border-color:#363636;color:#f5f5f5}.table td.is-primary,.table th.is-primary{background-color:#4eb5de;border-color:#4eb5de;color:#fff}.table td.is-link,.table th.is-link{background-color:#2e63b8;border-color:#2e63b8;color:#fff}.table td.is-info,.table th.is-info{background-color:#209cee;border-color:#209cee;color:#fff}.table td.is-success,.table th.is-success{background-color:#22c35b;border-color:#22c35b;color:#fff}.table td.is-warning,.table th.is-warning{background-color:#ffdd57;border-color:#ffdd57;color:rgba(0,0,0,0.7)}.table td.is-danger,.table th.is-danger{background-color:#da0b00;border-color:#da0b00;color:#fff}.table td.is-narrow,.table th.is-narrow{white-space:nowrap;width:1%}.table td.is-selected,.table th.is-selected{background-color:#4eb5de;color:#fff}.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong{color:currentColor}.table th{color:#222}.table th:not([align]){text-align:left}.table tr.is-selected{background-color:#4eb5de;color:#fff}.table tr.is-selected a,.table tr.is-selected strong{color:currentColor}.table tr.is-selected td,.table tr.is-selected th{border-color:#fff;color:currentColor}.table thead{background-color:rgba(0,0,0,0)}.table thead td,.table thead th{border-width:0 0 2px;color:#222}.table tfoot{background-color:rgba(0,0,0,0)}.table tfoot td,.table tfoot th{border-width:2px 0 0;color:#222}.table tbody{background-color:rgba(0,0,0,0)}.table tbody tr:last-child td,.table tbody tr:last-child th{border-bottom-width:0}.table.is-bordered td,.table.is-bordered th{border-width:1px}.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th{border-bottom-width:1px}.table.is-fullwidth{width:100%}.table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#f5f5f5}.table.is-narrow td,.table.is-narrow th{padding:0.25em 0.5em}.table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#fafafa}.table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}.tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.tags .tag,.tags .content kbd,.content .tags kbd,.tags .docstring>section>a.docs-sourcelink{margin-bottom:0.5rem}.tags .tag:not(:last-child),.tags .content kbd:not(:last-child),.content .tags kbd:not(:last-child),.tags .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0.5rem}.tags:last-child{margin-bottom:-0.5rem}.tags:not(:last-child){margin-bottom:1rem}.tags.are-medium .tag:not(.is-normal):not(.is-large),.tags.are-medium .content kbd:not(.is-normal):not(.is-large),.content .tags.are-medium kbd:not(.is-normal):not(.is-large),.tags.are-medium .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium),.tags.are-large .content kbd:not(.is-normal):not(.is-medium),.content .tags.are-large kbd:not(.is-normal):not(.is-medium),.tags.are-large .docstring>section>a.docs-sourcelink:not(.is-normal):not(.is-medium){font-size:1.25rem}.tags.is-centered{justify-content:center}.tags.is-centered .tag,.tags.is-centered .content kbd,.content .tags.is-centered kbd,.tags.is-centered .docstring>section>a.docs-sourcelink{margin-right:0.25rem;margin-left:0.25rem}.tags.is-right{justify-content:flex-end}.tags.is-right .tag:not(:first-child),.tags.is-right .content kbd:not(:first-child),.content .tags.is-right kbd:not(:first-child),.tags.is-right .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0.5rem}.tags.is-right .tag:not(:last-child),.tags.is-right .content kbd:not(:last-child),.content .tags.is-right kbd:not(:last-child),.tags.is-right .docstring>section>a.docs-sourcelink:not(:last-child){margin-right:0}.tags.has-addons .tag,.tags.has-addons .content kbd,.content .tags.has-addons kbd,.tags.has-addons .docstring>section>a.docs-sourcelink{margin-right:0}.tags.has-addons .tag:not(:first-child),.tags.has-addons .content kbd:not(:first-child),.content .tags.has-addons kbd:not(:first-child),.tags.has-addons .docstring>section>a.docs-sourcelink:not(:first-child){margin-left:0;border-bottom-left-radius:0;border-top-left-radius:0}.tags.has-addons .tag:not(:last-child),.tags.has-addons .content kbd:not(:last-child),.content .tags.has-addons kbd:not(:last-child),.tags.has-addons .docstring>section>a.docs-sourcelink:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.tag:not(body),.content kbd:not(body),.docstring>section>a.docs-sourcelink:not(body){align-items:center;background-color:#f5f5f5;border-radius:4px;color:#222;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}.tag:not(body) .delete,.content kbd:not(body) .delete,.docstring>section>a.docs-sourcelink:not(body) .delete{margin-left:0.25rem;margin-right:-0.375rem}.tag.is-white:not(body),.content kbd.is-white:not(body),.docstring>section>a.docs-sourcelink.is-white:not(body){background-color:#fff;color:#0a0a0a}.tag.is-black:not(body),.content kbd.is-black:not(body),.docstring>section>a.docs-sourcelink.is-black:not(body){background-color:#0a0a0a;color:#fff}.tag.is-light:not(body),.content kbd.is-light:not(body),.docstring>section>a.docs-sourcelink.is-light:not(body){background-color:#f5f5f5;color:#363636}.tag.is-dark:not(body),.content kbd:not(body),.docstring>section>a.docs-sourcelink.is-dark:not(body),.content .docstring>section>kbd:not(body){background-color:#363636;color:#f5f5f5}.tag.is-primary:not(body),.content kbd.is-primary:not(body),.docstring>section>a.docs-sourcelink:not(body){background-color:#4eb5de;color:#fff}.tag.is-link:not(body),.content kbd.is-link:not(body),.docstring>section>a.docs-sourcelink.is-link:not(body){background-color:#2e63b8;color:#fff}.tag.is-info:not(body),.content kbd.is-info:not(body),.docstring>section>a.docs-sourcelink.is-info:not(body){background-color:#209cee;color:#fff}.tag.is-success:not(body),.content kbd.is-success:not(body),.docstring>section>a.docs-sourcelink.is-success:not(body){background-color:#22c35b;color:#fff}.tag.is-warning:not(body),.content kbd.is-warning:not(body),.docstring>section>a.docs-sourcelink.is-warning:not(body){background-color:#ffdd57;color:rgba(0,0,0,0.7)}.tag.is-danger:not(body),.content kbd.is-danger:not(body),.docstring>section>a.docs-sourcelink.is-danger:not(body){background-color:#da0b00;color:#fff}.tag.is-normal:not(body),.content kbd.is-normal:not(body),.docstring>section>a.docs-sourcelink.is-normal:not(body){font-size:.75rem}.tag.is-medium:not(body),.content kbd.is-medium:not(body),.docstring>section>a.docs-sourcelink.is-medium:not(body){font-size:1rem}.tag.is-large:not(body),.content kbd.is-large:not(body),.docstring>section>a.docs-sourcelink.is-large:not(body){font-size:1.25rem}.tag:not(body) .icon:first-child:not(:last-child),.content kbd:not(body) .icon:first-child:not(:last-child),.docstring>section>a.docs-sourcelink:not(body) .icon:first-child:not(:last-child){margin-left:-0.375em;margin-right:0.1875em}.tag:not(body) .icon:last-child:not(:first-child),.content kbd:not(body) .icon:last-child:not(:first-child),.docstring>section>a.docs-sourcelink:not(body) .icon:last-child:not(:first-child){margin-left:0.1875em;margin-right:-0.375em}.tag:not(body) .icon:first-child:last-child,.content kbd:not(body) .icon:first-child:last-child,.docstring>section>a.docs-sourcelink:not(body) .icon:first-child:last-child{margin-left:-0.375em;margin-right:-0.375em}.tag.is-delete:not(body),.content kbd.is-delete:not(body),.docstring>section>a.docs-sourcelink.is-delete:not(body){margin-left:1px;padding:0;position:relative;width:2em}.tag.is-delete:not(body)::before,.content kbd.is-delete:not(body)::before,.docstring>section>a.docs-sourcelink.is-delete:not(body)::before,.tag.is-delete:not(body)::after,.content kbd.is-delete:not(body)::after,.docstring>section>a.docs-sourcelink.is-delete:not(body)::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.tag.is-delete:not(body)::before,.content kbd.is-delete:not(body)::before,.docstring>section>a.docs-sourcelink.is-delete:not(body)::before{height:1px;width:50%}.tag.is-delete:not(body)::after,.content kbd.is-delete:not(body)::after,.docstring>section>a.docs-sourcelink.is-delete:not(body)::after{height:50%;width:1px}.tag.is-delete:not(body):hover,.content kbd.is-delete:not(body):hover,.docstring>section>a.docs-sourcelink.is-delete:not(body):hover,.tag.is-delete:not(body):focus,.content kbd.is-delete:not(body):focus,.docstring>section>a.docs-sourcelink.is-delete:not(body):focus{background-color:#e8e8e8}.tag.is-delete:not(body):active,.content kbd.is-delete:not(body):active,.docstring>section>a.docs-sourcelink.is-delete:not(body):active{background-color:#dbdbdb}.tag.is-rounded:not(body),#documenter .docs-sidebar form.docs-search>input:not(body),.content kbd.is-rounded:not(body),#documenter .docs-sidebar .content form.docs-search>input:not(body),.docstring>section>a.docs-sourcelink.is-rounded:not(body){border-radius:290486px}a.tag:hover,.docstring>section>a.docs-sourcelink:hover{text-decoration:underline}.title,.subtitle{word-break:break-word}.title em,.title span,.subtitle em,.subtitle span{font-weight:inherit}.title sub,.subtitle sub{font-size:.75em}.title sup,.subtitle sup{font-size:.75em}.title .tag,.title .content kbd,.content .title kbd,.title .docstring>section>a.docs-sourcelink,.subtitle .tag,.subtitle .content kbd,.content .subtitle kbd,.subtitle .docstring>section>a.docs-sourcelink{vertical-align:middle}.title{color:#363636;font-size:2rem;font-weight:600;line-height:1.125}.title strong{color:inherit;font-weight:inherit}.title+.highlight{margin-top:-0.75rem}.title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}.title.is-1{font-size:3rem}.title.is-2{font-size:2.5rem}.title.is-3{font-size:2rem}.title.is-4{font-size:1.5rem}.title.is-5{font-size:1.25rem}.title.is-6{font-size:1rem}.title.is-7{font-size:.75rem}.subtitle{color:#4a4a4a;font-size:1.25rem;font-weight:400;line-height:1.25}.subtitle strong{color:#363636;font-weight:600}.subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}.subtitle.is-1{font-size:3rem}.subtitle.is-2{font-size:2.5rem}.subtitle.is-3{font-size:2rem}.subtitle.is-4{font-size:1.5rem}.subtitle.is-5{font-size:1.25rem}.subtitle.is-6{font-size:1rem}.subtitle.is-7{font-size:.75rem}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.highlight{font-weight:400;max-width:100%;overflow:hidden;padding:0}.highlight pre{overflow:auto;max-width:100%}.number{align-items:center;background-color:#f5f5f5;border-radius:290486px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}.select select,.textarea,.input,#documenter .docs-sidebar form.docs-search>input{background-color:#fff;border-color:#dbdbdb;border-radius:4px;color:#363636}.select select::-moz-placeholder,.textarea::-moz-placeholder,.input::-moz-placeholder,#documenter .docs-sidebar form.docs-search>input::-moz-placeholder{color:rgba(54,54,54,0.3)}.select select::-webkit-input-placeholder,.textarea::-webkit-input-placeholder,.input::-webkit-input-placeholder,#documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder{color:rgba(54,54,54,0.3)}.select select:-moz-placeholder,.textarea:-moz-placeholder,.input:-moz-placeholder,#documenter .docs-sidebar form.docs-search>input:-moz-placeholder{color:rgba(54,54,54,0.3)}.select select:-ms-input-placeholder,.textarea:-ms-input-placeholder,.input:-ms-input-placeholder,#documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder{color:rgba(54,54,54,0.3)}.select select:hover,.textarea:hover,.input:hover,#documenter .docs-sidebar form.docs-search>input:hover,.select select.is-hovered,.is-hovered.textarea,.is-hovered.input,#documenter .docs-sidebar form.docs-search>input.is-hovered{border-color:#b5b5b5}.select select:focus,.textarea:focus,.input:focus,#documenter .docs-sidebar form.docs-search>input:focus,.select select.is-focused,.is-focused.textarea,.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.select select:active,.textarea:active,.input:active,#documenter .docs-sidebar form.docs-search>input:active,.select select.is-active,.is-active.textarea,.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{border-color:#2e63b8;box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.select select[disabled],.textarea[disabled],.input[disabled],#documenter .docs-sidebar form.docs-search>input[disabled],fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .textarea,fieldset[disabled] .input,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#6b6b6b}.select select[disabled]::-moz-placeholder,.textarea[disabled]::-moz-placeholder,.input[disabled]::-moz-placeholder,#documenter .docs-sidebar form.docs-search>input[disabled]::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,.select fieldset[disabled] select::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input::-moz-placeholder,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input::-moz-placeholder{color:rgba(107,107,107,0.3)}.select select[disabled]::-webkit-input-placeholder,.textarea[disabled]::-webkit-input-placeholder,.input[disabled]::-webkit-input-placeholder,#documenter .docs-sidebar form.docs-search>input[disabled]::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,.select fieldset[disabled] select::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input::-webkit-input-placeholder,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input::-webkit-input-placeholder{color:rgba(107,107,107,0.3)}.select select[disabled]:-moz-placeholder,.textarea[disabled]:-moz-placeholder,.input[disabled]:-moz-placeholder,#documenter .docs-sidebar form.docs-search>input[disabled]:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,.select fieldset[disabled] select:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input:-moz-placeholder,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input:-moz-placeholder{color:rgba(107,107,107,0.3)}.select select[disabled]:-ms-input-placeholder,.textarea[disabled]:-ms-input-placeholder,.input[disabled]:-ms-input-placeholder,#documenter .docs-sidebar form.docs-search>input[disabled]:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,.select fieldset[disabled] select:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder,fieldset[disabled] #documenter .docs-sidebar form.docs-search>input:-ms-input-placeholder,#documenter .docs-sidebar fieldset[disabled] form.docs-search>input:-ms-input-placeholder{color:rgba(107,107,107,0.3)}.textarea,.input,#documenter .docs-sidebar form.docs-search>input{box-shadow:inset 0 1px 2px rgba(10,10,10,0.1);max-width:100%;width:100%}.textarea[readonly],.input[readonly],#documenter .docs-sidebar form.docs-search>input[readonly]{box-shadow:none}.is-white.textarea,.is-white.input,#documenter .docs-sidebar form.docs-search>input.is-white{border-color:#fff}.is-white.textarea:focus,.is-white.input:focus,#documenter .docs-sidebar form.docs-search>input.is-white:focus,.is-white.is-focused.textarea,.is-white.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-white.textarea:active,.is-white.input:active,#documenter .docs-sidebar form.docs-search>input.is-white:active,.is-white.is-active.textarea,.is-white.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}.is-black.textarea,.is-black.input,#documenter .docs-sidebar form.docs-search>input.is-black{border-color:#0a0a0a}.is-black.textarea:focus,.is-black.input:focus,#documenter .docs-sidebar form.docs-search>input.is-black:focus,.is-black.is-focused.textarea,.is-black.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-black.textarea:active,.is-black.input:active,#documenter .docs-sidebar form.docs-search>input.is-black:active,.is-black.is-active.textarea,.is-black.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}.is-light.textarea,.is-light.input,#documenter .docs-sidebar form.docs-search>input.is-light{border-color:#f5f5f5}.is-light.textarea:focus,.is-light.input:focus,#documenter .docs-sidebar form.docs-search>input.is-light:focus,.is-light.is-focused.textarea,.is-light.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-light.textarea:active,.is-light.input:active,#documenter .docs-sidebar form.docs-search>input.is-light:active,.is-light.is-active.textarea,.is-light.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}.is-dark.textarea,.content kbd.textarea,.is-dark.input,#documenter .docs-sidebar form.docs-search>input.is-dark,.content kbd.input{border-color:#363636}.is-dark.textarea:focus,.content kbd.textarea:focus,.is-dark.input:focus,#documenter .docs-sidebar form.docs-search>input.is-dark:focus,.content kbd.input:focus,.is-dark.is-focused.textarea,.content kbd.is-focused.textarea,.is-dark.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.content kbd.is-focused.input,#documenter .docs-sidebar .content form.docs-search>input.is-focused,.is-dark.textarea:active,.content kbd.textarea:active,.is-dark.input:active,#documenter .docs-sidebar form.docs-search>input.is-dark:active,.content kbd.input:active,.is-dark.is-active.textarea,.content kbd.is-active.textarea,.is-dark.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active,.content kbd.is-active.input,#documenter .docs-sidebar .content form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(54,54,54,0.25)}.is-primary.textarea,.docstring>section>a.textarea.docs-sourcelink,.is-primary.input,#documenter .docs-sidebar form.docs-search>input.is-primary,.docstring>section>a.input.docs-sourcelink{border-color:#4eb5de}.is-primary.textarea:focus,.docstring>section>a.textarea.docs-sourcelink:focus,.is-primary.input:focus,#documenter .docs-sidebar form.docs-search>input.is-primary:focus,.docstring>section>a.input.docs-sourcelink:focus,.is-primary.is-focused.textarea,.docstring>section>a.is-focused.textarea.docs-sourcelink,.is-primary.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.docstring>section>a.is-focused.input.docs-sourcelink,.is-primary.textarea:active,.docstring>section>a.textarea.docs-sourcelink:active,.is-primary.input:active,#documenter .docs-sidebar form.docs-search>input.is-primary:active,.docstring>section>a.input.docs-sourcelink:active,.is-primary.is-active.textarea,.docstring>section>a.is-active.textarea.docs-sourcelink,.is-primary.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active,.docstring>section>a.is-active.input.docs-sourcelink{box-shadow:0 0 0 0.125em rgba(78,181,222,0.25)}.is-link.textarea,.is-link.input,#documenter .docs-sidebar form.docs-search>input.is-link{border-color:#2e63b8}.is-link.textarea:focus,.is-link.input:focus,#documenter .docs-sidebar form.docs-search>input.is-link:focus,.is-link.is-focused.textarea,.is-link.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-link.textarea:active,.is-link.input:active,#documenter .docs-sidebar form.docs-search>input.is-link:active,.is-link.is-active.textarea,.is-link.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.is-info.textarea,.is-info.input,#documenter .docs-sidebar form.docs-search>input.is-info{border-color:#209cee}.is-info.textarea:focus,.is-info.input:focus,#documenter .docs-sidebar form.docs-search>input.is-info:focus,.is-info.is-focused.textarea,.is-info.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-info.textarea:active,.is-info.input:active,#documenter .docs-sidebar form.docs-search>input.is-info:active,.is-info.is-active.textarea,.is-info.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(32,156,238,0.25)}.is-success.textarea,.is-success.input,#documenter .docs-sidebar form.docs-search>input.is-success{border-color:#22c35b}.is-success.textarea:focus,.is-success.input:focus,#documenter .docs-sidebar form.docs-search>input.is-success:focus,.is-success.is-focused.textarea,.is-success.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-success.textarea:active,.is-success.input:active,#documenter .docs-sidebar form.docs-search>input.is-success:active,.is-success.is-active.textarea,.is-success.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(34,195,91,0.25)}.is-warning.textarea,.is-warning.input,#documenter .docs-sidebar form.docs-search>input.is-warning{border-color:#ffdd57}.is-warning.textarea:focus,.is-warning.input:focus,#documenter .docs-sidebar form.docs-search>input.is-warning:focus,.is-warning.is-focused.textarea,.is-warning.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-warning.textarea:active,.is-warning.input:active,#documenter .docs-sidebar form.docs-search>input.is-warning:active,.is-warning.is-active.textarea,.is-warning.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(255,221,87,0.25)}.is-danger.textarea,.is-danger.input,#documenter .docs-sidebar form.docs-search>input.is-danger{border-color:#da0b00}.is-danger.textarea:focus,.is-danger.input:focus,#documenter .docs-sidebar form.docs-search>input.is-danger:focus,.is-danger.is-focused.textarea,.is-danger.is-focused.input,#documenter .docs-sidebar form.docs-search>input.is-focused,.is-danger.textarea:active,.is-danger.input:active,#documenter .docs-sidebar form.docs-search>input.is-danger:active,.is-danger.is-active.textarea,.is-danger.is-active.input,#documenter .docs-sidebar form.docs-search>input.is-active{box-shadow:0 0 0 0.125em rgba(218,11,0,0.25)}.is-small.textarea,.is-small.input,#documenter .docs-sidebar form.docs-search>input{border-radius:2px;font-size:.75rem}.is-medium.textarea,.is-medium.input,#documenter .docs-sidebar form.docs-search>input.is-medium{font-size:1.25rem}.is-large.textarea,.is-large.input,#documenter .docs-sidebar form.docs-search>input.is-large{font-size:1.5rem}.is-fullwidth.textarea,.is-fullwidth.input,#documenter .docs-sidebar form.docs-search>input.is-fullwidth{display:block;width:100%}.is-inline.textarea,.is-inline.input,#documenter .docs-sidebar form.docs-search>input.is-inline{display:inline;width:auto}.input.is-rounded,#documenter .docs-sidebar form.docs-search>input{border-radius:290486px;padding-left:1em;padding-right:1em}.input.is-static,#documenter .docs-sidebar form.docs-search>input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}.textarea{display:block;max-width:100%;min-width:100%;padding:0.625em;resize:vertical}.textarea:not([rows]){max-height:600px;min-height:120px}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.radio,.checkbox{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.radio input,.checkbox input{cursor:pointer}.radio:hover,.checkbox:hover{color:#363636}.radio[disabled],.checkbox[disabled],fieldset[disabled] .radio,fieldset[disabled] .checkbox{color:#6b6b6b;cursor:not-allowed}.radio+.radio{margin-left:0.5em}.select{display:inline-block;max-width:100%;position:relative;vertical-align:top}.select:not(.is-multiple){height:2.25em}.select:not(.is-multiple):not(.is-loading)::after{border-color:#2e63b8;right:1.125em;z-index:4}.select.is-rounded select,#documenter .docs-sidebar form.docs-search>input.select select{border-radius:290486px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:#f5f5f5}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:0.5em 1em}.select:not(.is-multiple):not(.is-loading):hover::after{border-color:#363636}.select.is-white:not(:hover)::after{border-color:#fff}.select.is-white select{border-color:#fff}.select.is-white select:hover,.select.is-white select.is-hovered{border-color:#f2f2f2}.select.is-white select:focus,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}.select.is-black:not(:hover)::after{border-color:#0a0a0a}.select.is-black select{border-color:#0a0a0a}.select.is-black select:hover,.select.is-black select.is-hovered{border-color:#000}.select.is-black select:focus,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(10,10,10,0.25)}.select.is-light:not(:hover)::after{border-color:#f5f5f5}.select.is-light select{border-color:#f5f5f5}.select.is-light select:hover,.select.is-light select.is-hovered{border-color:#e8e8e8}.select.is-light select:focus,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}.select.is-dark:not(:hover)::after,.content kbd.select:not(:hover)::after{border-color:#363636}.select.is-dark select,.content kbd.select select{border-color:#363636}.select.is-dark select:hover,.content kbd.select select:hover,.select.is-dark select.is-hovered,.content kbd.select select.is-hovered{border-color:#292929}.select.is-dark select:focus,.content kbd.select select:focus,.select.is-dark select.is-focused,.content kbd.select select.is-focused,.select.is-dark select:active,.content kbd.select select:active,.select.is-dark select.is-active,.content kbd.select select.is-active{box-shadow:0 0 0 0.125em rgba(54,54,54,0.25)}.select.is-primary:not(:hover)::after,.docstring>section>a.select.docs-sourcelink:not(:hover)::after{border-color:#4eb5de}.select.is-primary select,.docstring>section>a.select.docs-sourcelink select{border-color:#4eb5de}.select.is-primary select:hover,.docstring>section>a.select.docs-sourcelink select:hover,.select.is-primary select.is-hovered,.docstring>section>a.select.docs-sourcelink select.is-hovered{border-color:#39acda}.select.is-primary select:focus,.docstring>section>a.select.docs-sourcelink select:focus,.select.is-primary select.is-focused,.docstring>section>a.select.docs-sourcelink select.is-focused,.select.is-primary select:active,.docstring>section>a.select.docs-sourcelink select:active,.select.is-primary select.is-active,.docstring>section>a.select.docs-sourcelink select.is-active{box-shadow:0 0 0 0.125em rgba(78,181,222,0.25)}.select.is-link:not(:hover)::after{border-color:#2e63b8}.select.is-link select{border-color:#2e63b8}.select.is-link select:hover,.select.is-link select.is-hovered{border-color:#2958a4}.select.is-link select:focus,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(46,99,184,0.25)}.select.is-info:not(:hover)::after{border-color:#209cee}.select.is-info select{border-color:#209cee}.select.is-info select:hover,.select.is-info select.is-hovered{border-color:#1190e3}.select.is-info select:focus,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(32,156,238,0.25)}.select.is-success:not(:hover)::after{border-color:#22c35b}.select.is-success select{border-color:#22c35b}.select.is-success select:hover,.select.is-success select.is-hovered{border-color:#1ead51}.select.is-success select:focus,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(34,195,91,0.25)}.select.is-warning:not(:hover)::after{border-color:#ffdd57}.select.is-warning select{border-color:#ffdd57}.select.is-warning select:hover,.select.is-warning select.is-hovered{border-color:#ffd83e}.select.is-warning select:focus,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(255,221,87,0.25)}.select.is-danger:not(:hover)::after{border-color:#da0b00}.select.is-danger select{border-color:#da0b00}.select.is-danger select:hover,.select.is-danger select.is-hovered{border-color:#c10a00}.select.is-danger select:focus,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(218,11,0,0.25)}.select.is-small,#documenter .docs-sidebar form.docs-search>input.select{border-radius:2px;font-size:.75rem}.select.is-medium{font-size:1.25rem}.select.is-large{font-size:1.5rem}.select.is-disabled::after{border-color:#6b6b6b}.select.is-fullwidth{width:100%}.select.is-fullwidth select{width:100%}.select.is-loading::after{margin-top:0;position:absolute;right:0.625em;top:0.625em;transform:none}.select.is-loading.is-small:after,#documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}.select.is-loading.is-medium:after{font-size:1.25rem}.select.is-loading.is-large:after{font-size:1.5rem}.file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}.file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#0a0a0a}.file.is-white:hover .file-cta,.file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#0a0a0a}.file.is-white:focus .file-cta,.file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#0a0a0a}.file.is-white:active .file-cta,.file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#0a0a0a}.file.is-black .file-cta{background-color:#0a0a0a;border-color:transparent;color:#fff}.file.is-black:hover .file-cta,.file.is-black.is-hovered .file-cta{background-color:#040404;border-color:transparent;color:#fff}.file.is-black:focus .file-cta,.file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(10,10,10,0.25);color:#fff}.file.is-black:active .file-cta,.file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:#363636}.file.is-light:hover .file-cta,.file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:#363636}.file.is-light:focus .file-cta,.file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(245,245,245,0.25);color:#363636}.file.is-light:active .file-cta,.file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:#363636}.file.is-dark .file-cta,.content kbd.file .file-cta{background-color:#363636;border-color:transparent;color:#f5f5f5}.file.is-dark:hover .file-cta,.content kbd.file:hover .file-cta,.file.is-dark.is-hovered .file-cta,.content kbd.file.is-hovered .file-cta{background-color:#2f2f2f;border-color:transparent;color:#f5f5f5}.file.is-dark:focus .file-cta,.content kbd.file:focus .file-cta,.file.is-dark.is-focused .file-cta,.content kbd.file.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(54,54,54,0.25);color:#f5f5f5}.file.is-dark:active .file-cta,.content kbd.file:active .file-cta,.file.is-dark.is-active .file-cta,.content kbd.file.is-active .file-cta{background-color:#292929;border-color:transparent;color:#f5f5f5}.file.is-primary .file-cta,.docstring>section>a.file.docs-sourcelink .file-cta{background-color:#4eb5de;border-color:transparent;color:#fff}.file.is-primary:hover .file-cta,.docstring>section>a.file.docs-sourcelink:hover .file-cta,.file.is-primary.is-hovered .file-cta,.docstring>section>a.file.is-hovered.docs-sourcelink .file-cta{background-color:#43b1dc;border-color:transparent;color:#fff}.file.is-primary:focus .file-cta,.docstring>section>a.file.docs-sourcelink:focus .file-cta,.file.is-primary.is-focused .file-cta,.docstring>section>a.file.is-focused.docs-sourcelink .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(78,181,222,0.25);color:#fff}.file.is-primary:active .file-cta,.docstring>section>a.file.docs-sourcelink:active .file-cta,.file.is-primary.is-active .file-cta,.docstring>section>a.file.is-active.docs-sourcelink .file-cta{background-color:#39acda;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:#2e63b8;border-color:transparent;color:#fff}.file.is-link:hover .file-cta,.file.is-link.is-hovered .file-cta{background-color:#2b5eae;border-color:transparent;color:#fff}.file.is-link:focus .file-cta,.file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(46,99,184,0.25);color:#fff}.file.is-link:active .file-cta,.file.is-link.is-active .file-cta{background-color:#2958a4;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:#209cee;border-color:transparent;color:#fff}.file.is-info:hover .file-cta,.file.is-info.is-hovered .file-cta{background-color:#1497ed;border-color:transparent;color:#fff}.file.is-info:focus .file-cta,.file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(32,156,238,0.25);color:#fff}.file.is-info:active .file-cta,.file.is-info.is-active .file-cta{background-color:#1190e3;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:#22c35b;border-color:transparent;color:#fff}.file.is-success:hover .file-cta,.file.is-success.is-hovered .file-cta{background-color:#20b856;border-color:transparent;color:#fff}.file.is-success:focus .file-cta,.file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(34,195,91,0.25);color:#fff}.file.is-success:active .file-cta,.file.is-success.is-active .file-cta{background-color:#1ead51;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:#ffdd57;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-warning:hover .file-cta,.file.is-warning.is-hovered .file-cta{background-color:#ffda4a;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-warning:focus .file-cta,.file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,221,87,0.25);color:rgba(0,0,0,0.7)}.file.is-warning:active .file-cta,.file.is-warning.is-active .file-cta{background-color:#ffd83e;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-danger .file-cta{background-color:#da0b00;border-color:transparent;color:#fff}.file.is-danger:hover .file-cta,.file.is-danger.is-hovered .file-cta{background-color:#cd0a00;border-color:transparent;color:#fff}.file.is-danger:focus .file-cta,.file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(218,11,0,0.25);color:#fff}.file.is-danger:active .file-cta,.file.is-danger.is-active .file-cta{background-color:#c10a00;border-color:transparent;color:#fff}.file.is-small,#documenter .docs-sidebar form.docs-search>input.file{font-size:.75rem}.file.is-medium{font-size:1.25rem}.file.is-medium .file-icon .fa{font-size:21px}.file.is-large{font-size:1.5rem}.file.is-large .file-icon .fa{font-size:28px}.file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}.file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}.file.has-name.is-empty .file-cta{border-radius:4px}.file.has-name.is-empty .file-name{display:none}.file.is-boxed .file-label{flex-direction:column}.file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}.file.is-boxed .file-name{border-width:0 1px 1px}.file.is-boxed .file-icon{height:1.5em;width:1.5em}.file.is-boxed .file-icon .fa{font-size:21px}.file.is-boxed.is-small .file-icon .fa,#documenter .docs-sidebar form.docs-search>input.is-boxed .file-icon .fa{font-size:14px}.file.is-boxed.is-medium .file-icon .fa{font-size:28px}.file.is-boxed.is-large .file-icon .fa{font-size:35px}.file.is-boxed.has-name .file-cta{border-radius:4px 4px 0 0}.file.is-boxed.has-name .file-name{border-radius:0 0 4px 4px;border-width:0 1px 1px}.file.is-centered{justify-content:center}.file.is-fullwidth .file-label{width:100%}.file.is-fullwidth .file-name{flex-grow:1;max-width:none}.file.is-right{justify-content:flex-end}.file.is-right .file-cta{border-radius:0 4px 4px 0}.file.is-right .file-name{border-radius:4px 0 0 4px;border-width:1px 0 1px 1px;order:-1}.file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}.file-label:hover .file-cta{background-color:#eee;color:#363636}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:#363636}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:#dbdbdb;border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:#f5f5f5;color:#4a4a4a}.file-name{border-color:#dbdbdb;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:left;text-overflow:ellipsis}.file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:0.5em;width:1em}.file-icon .fa{font-size:14px}.label{color:#363636;display:block;font-size:1rem;font-weight:700}.label:not(:last-child){margin-bottom:0.5em}.label.is-small,#documenter .docs-sidebar form.docs-search>input.label{font-size:.75rem}.label.is-medium{font-size:1.25rem}.label.is-large{font-size:1.5rem}.help{display:block;font-size:.75rem;margin-top:0.25rem}.help.is-white{color:#fff}.help.is-black{color:#0a0a0a}.help.is-light{color:#f5f5f5}.help.is-dark,.content kbd.help{color:#363636}.help.is-primary,.docstring>section>a.help.docs-sourcelink{color:#4eb5de}.help.is-link{color:#2e63b8}.help.is-info{color:#209cee}.help.is-success{color:#22c35b}.help.is-warning{color:#ffdd57}.help.is-danger{color:#da0b00}.field:not(:last-child){margin-bottom:0.75rem}.field.has-addons{display:flex;justify-content:flex-start}.field.has-addons .control:not(:last-child){margin-right:-1px}.field.has-addons .control:not(:first-child):not(:last-child) .button,.field.has-addons .control:not(:first-child):not(:last-child) .input,.field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search>input,.field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}.field.has-addons .control:first-child:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search>input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search>input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .button.is-hovered:not([disabled]),.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):hover,.field.has-addons .control .input.is-hovered:not([disabled]),.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-hovered:not([disabled]),#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-hovered:not([disabled]),.field.has-addons .control .select select:not([disabled]):hover,.field.has-addons .control .select select.is-hovered:not([disabled]){z-index:2}.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .button.is-focused:not([disabled]),.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button.is-active:not([disabled]),.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus,.field.has-addons .control .input.is-focused:not([disabled]),.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]),#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]),.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active,.field.has-addons .control .input.is-active:not([disabled]),.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]),#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]),.field.has-addons .control .select select:not([disabled]):focus,.field.has-addons .control .select select.is-focused:not([disabled]),.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select.is-active:not([disabled]){z-index:3}.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .button.is-focused:not([disabled]):hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button.is-active:not([disabled]):hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):focus:hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):focus:hover,.field.has-addons .control .input.is-focused:not([disabled]):hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-focused:not([disabled]):hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-focused:not([disabled]):hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input:not([disabled]):active:hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input:not([disabled]):active:hover,.field.has-addons .control .input.is-active:not([disabled]):hover,.field.has-addons .control #documenter .docs-sidebar form.docs-search>input.is-active:not([disabled]):hover,#documenter .docs-sidebar .field.has-addons .control form.docs-search>input.is-active:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]):focus:hover,.field.has-addons .control .select select.is-focused:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select.is-active:not([disabled]):hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}.field.has-addons.has-addons-centered{justify-content:center}.field.has-addons.has-addons-right{justify-content:flex-end}.field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}.field.is-grouped{display:flex;justify-content:flex-start}.field.is-grouped>.control{flex-shrink:0}.field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:0.75rem}.field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}.field.is-grouped.is-grouped-centered{justify-content:center}.field.is-grouped.is-grouped-right{justify-content:flex-end}.field.is-grouped.is-grouped-multiline{flex-wrap:wrap}.field.is-grouped.is-grouped-multiline>.control:last-child,.field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}.field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}.field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 769px),print{.field.is-horizontal{display:flex}}.field-label .label{font-size:inherit}@media screen and (max-width: 768px){.field-label{margin-bottom:0.5rem}}@media screen and (min-width: 769px),print{.field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}.field-label.is-small,#documenter .docs-sidebar form.docs-search>input.field-label{font-size:.75rem;padding-top:0.375em}.field-label.is-normal{padding-top:0.375em}.field-label.is-medium{font-size:1.25rem;padding-top:0.375em}.field-label.is-large{font-size:1.5rem;padding-top:0.375em}}.field-body .field .field{margin-bottom:0}@media screen and (min-width: 769px),print{.field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}.field-body .field{margin-bottom:0}.field-body>.field{flex-shrink:1}.field-body>.field:not(.is-narrow){flex-grow:1}.field-body>.field:not(:last-child){margin-right:0.75rem}}.control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:left}.control.has-icons-left .input:focus~.icon,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input:focus~.icon,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input:focus~.icon,.control.has-icons-left .select:focus~.icon,.control.has-icons-right .input:focus~.icon,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input:focus~.icon,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input:focus~.icon,.control.has-icons-right .select:focus~.icon{color:#6b6b6b}.control.has-icons-left .input.is-small~.icon,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input~.icon,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input~.icon,.control.has-icons-left .select.is-small~.icon,.control.has-icons-right .input.is-small~.icon,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input~.icon,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input~.icon,.control.has-icons-right .select.is-small~.icon{font-size:.75rem}.control.has-icons-left .input.is-medium~.icon,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-medium~.icon,.control.has-icons-left .select.is-medium~.icon,.control.has-icons-right .input.is-medium~.icon,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-medium~.icon,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-medium~.icon,.control.has-icons-right .select.is-medium~.icon{font-size:1.25rem}.control.has-icons-left .input.is-large~.icon,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input.is-large~.icon,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input.is-large~.icon,.control.has-icons-left .select.is-large~.icon,.control.has-icons-right .input.is-large~.icon,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input.is-large~.icon,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input.is-large~.icon,.control.has-icons-right .select.is-large~.icon{font-size:1.5rem}.control.has-icons-left .icon,.control.has-icons-right .icon{color:#dbdbdb;height:2.25em;pointer-events:none;position:absolute;top:0;width:2.25em;z-index:4}.control.has-icons-left .input,.control.has-icons-left #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .control.has-icons-left form.docs-search>input,.control.has-icons-left .select select{padding-left:2.25em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right #documenter .docs-sidebar form.docs-search>input,#documenter .docs-sidebar .control.has-icons-right form.docs-search>input,.control.has-icons-right .select select{padding-right:2.25em}.control.has-icons-right .icon.is-right{right:0}.control.is-loading::after{position:absolute !important;right:0.625em;top:0.625em;z-index:4}.control.is-loading.is-small:after,#documenter .docs-sidebar form.docs-search>input.is-loading:after{font-size:.75rem}.control.is-loading.is-medium:after{font-size:1.25rem}.control.is-loading.is-large:after{font-size:1.5rem}.breadcrumb{font-size:1rem;white-space:nowrap}.breadcrumb a{align-items:center;color:#2e63b8;display:flex;justify-content:center;padding:0 .75em}.breadcrumb a:hover{color:#363636}.breadcrumb li{align-items:center;display:flex}.breadcrumb li:first-child a{padding-left:0}.breadcrumb li.is-active a{color:#222;cursor:default;pointer-events:none}.breadcrumb li+li::before{color:#b5b5b5;content:"\0002f"}.breadcrumb ul,.breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}.breadcrumb .icon:first-child{margin-right:0.5em}.breadcrumb .icon:last-child{margin-left:0.5em}.breadcrumb.is-centered ol,.breadcrumb.is-centered ul{justify-content:center}.breadcrumb.is-right ol,.breadcrumb.is-right ul{justify-content:flex-end}.breadcrumb.is-small,#documenter .docs-sidebar form.docs-search>input.breadcrumb{font-size:.75rem}.breadcrumb.is-medium{font-size:1.25rem}.breadcrumb.is-large{font-size:1.5rem}.breadcrumb.has-arrow-separator li+li::before{content:"\02192"}.breadcrumb.has-bullet-separator li+li::before{content:"\02022"}.breadcrumb.has-dot-separator li+li::before{content:"\000b7"}.breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}.card{background-color:#fff;box-shadow:0 2px 3px rgba(10,10,10,0.1),0 0 0 1px rgba(10,10,10,0.1);color:#222;max-width:100%;position:relative}.card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 1px 2px rgba(10,10,10,0.1);display:flex}.card-header-title{align-items:center;color:#222;display:flex;flex-grow:1;font-weight:700;padding:.75rem}.card-header-title.is-centered{justify-content:center}.card-header-icon{align-items:center;cursor:pointer;display:flex;justify-content:center;padding:.75rem}.card-image{display:block;position:relative}.card-content{background-color:rgba(0,0,0,0);padding:1.5rem}.card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #dbdbdb;align-items:stretch;display:flex}.card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}.card-footer-item:not(:last-child){border-right:1px solid #dbdbdb}.card .media:not(:last-child){margin-bottom:1.5rem}.dropdown{display:inline-flex;position:relative;vertical-align:top}.dropdown.is-active .dropdown-menu,.dropdown.is-hoverable:hover .dropdown-menu{display:block}.dropdown.is-right .dropdown-menu{left:auto;right:0}.dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}.dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}.dropdown-content{background-color:#fff;border-radius:4px;box-shadow:0 2px 3px rgba(10,10,10,0.1),0 0 0 1px rgba(10,10,10,0.1);padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:#4a4a4a;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:left;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:#f5f5f5;color:#0a0a0a}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:#2e63b8;color:#fff}.dropdown-divider{background-color:#dbdbdb;border:none;display:block;height:1px;margin:0.5rem 0}.level{align-items:center;justify-content:space-between}.level code{border-radius:4px}.level img{display:inline-block;vertical-align:top}.level.is-mobile{display:flex}.level.is-mobile .level-left,.level.is-mobile .level-right{display:flex}.level.is-mobile .level-left+.level-right{margin-top:0}.level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}.level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 769px),print{.level{display:flex}.level>.level-item:not(.is-narrow){flex-grow:1}}.level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}.level-item .title,.level-item .subtitle{margin-bottom:0}@media screen and (max-width: 768px){.level-item:not(:last-child){margin-bottom:.75rem}}.level-left,.level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.level-left .level-item.is-flexible,.level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 769px),print{.level-left .level-item:not(:last-child),.level-right .level-item:not(:last-child){margin-right:.75rem}}.level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){.level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 769px),print{.level-left{display:flex}}.level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 769px),print{.level-right{display:flex}}.list{background-color:#fff;border-radius:4px;box-shadow:0 2px 3px rgba(10,10,10,0.1),0 0 0 1px rgba(10,10,10,0.1)}.list-item{display:block;padding:0.5em 1em}.list-item:not(a){color:#222}.list-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-item:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.list-item:not(:last-child){border-bottom:1px solid #dbdbdb}.list-item.is-active{background-color:#2e63b8;color:#fff}a.list-item{background-color:#f5f5f5;cursor:pointer}.media{align-items:flex-start;display:flex;text-align:left}.media .content:not(:last-child){margin-bottom:0.75rem}.media .media{border-top:1px solid rgba(219,219,219,0.5);display:flex;padding-top:0.75rem}.media .media .content:not(:last-child),.media .media .control:not(:last-child){margin-bottom:0.5rem}.media .media .media{padding-top:0.5rem}.media .media .media+.media{margin-top:0.5rem}.media+.media{border-top:1px solid rgba(219,219,219,0.5);margin-top:1rem;padding-top:1rem}.media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}.media-left,.media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.media-left{margin-right:1rem}.media-right{margin-left:1rem}.media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:left}@media screen and (max-width: 768px){.media-content{overflow-x:auto}}.menu{font-size:1rem}.menu.is-small,#documenter .docs-sidebar form.docs-search>input.menu{font-size:.75rem}.menu.is-medium{font-size:1.25rem}.menu.is-large{font-size:1.5rem}.menu-list{line-height:1.25}.menu-list a{border-radius:2px;color:#222;display:block;padding:0.5em 0.75em}.menu-list a:hover{background-color:#f5f5f5;color:#222}.menu-list a.is-active{background-color:#2e63b8;color:#fff}.menu-list li ul{border-left:1px solid #dbdbdb;margin:.75em;padding-left:.75em}.menu-label{color:#6b6b6b;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}.menu-label:not(:first-child){margin-top:1em}.menu-label:not(:last-child){margin-bottom:1em}.message{background-color:#f5f5f5;border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}.message.is-small,#documenter .docs-sidebar form.docs-search>input.message{font-size:.75rem}.message.is-medium{font-size:1.25rem}.message.is-large{font-size:1.5rem}.message.is-white{background-color:#fff}.message.is-white .message-header{background-color:#fff;color:#0a0a0a}.message.is-white .message-body{border-color:#fff;color:#4d4d4d}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:#0a0a0a;color:#fff}.message.is-black .message-body{border-color:#0a0a0a;color:#090909}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:#f5f5f5;color:#363636}.message.is-light .message-body{border-color:#f5f5f5;color:#505050}.message.is-dark,.content kbd.message{background-color:#fafafa}.message.is-dark .message-header,.content kbd.message .message-header{background-color:#363636;color:#f5f5f5}.message.is-dark .message-body,.content kbd.message .message-body{border-color:#363636;color:#2a2a2a}.message.is-primary,.docstring>section>a.message.docs-sourcelink{background-color:#f6fbfd}.message.is-primary .message-header,.docstring>section>a.message.docs-sourcelink .message-header{background-color:#4eb5de;color:#fff}.message.is-primary .message-body,.docstring>section>a.message.docs-sourcelink .message-body{border-color:#4eb5de;color:#1f556a}.message.is-link{background-color:#f7f9fd}.message.is-link .message-header{background-color:#2e63b8;color:#fff}.message.is-link .message-body{border-color:#2e63b8;color:#264981}.message.is-info{background-color:#f6fbfe}.message.is-info .message-header{background-color:#209cee;color:#fff}.message.is-info .message-body{border-color:#209cee;color:#12537d}.message.is-success{background-color:#f6fdf9}.message.is-success .message-header{background-color:#22c35b;color:#fff}.message.is-success .message-body{border-color:#22c35b;color:#0f361d}.message.is-warning{background-color:#fffdf5}.message.is-warning .message-header{background-color:#ffdd57;color:rgba(0,0,0,0.7)}.message.is-warning .message-body{border-color:#ffdd57;color:#3c3108}.message.is-danger{background-color:#fff5f5}.message.is-danger .message-header{background-color:#da0b00;color:#fff}.message.is-danger .message-body{border-color:#da0b00;color:#9b0c04}.message-header{align-items:center;background-color:#222;border-radius:4px 4px 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}.message-header .delete{flex-grow:0;flex-shrink:0;margin-left:0.75em}.message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}.message-body{border-color:#dbdbdb;border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:#222;padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:#fff}.message-body pre code{background-color:rgba(0,0,0,0)}.modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}.modal.is-active{display:flex}.modal-background{background-color:rgba(10,10,10,0.86)}.modal-content,.modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 769px),print{.modal-content,.modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}.modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}.modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}.modal-card-head,.modal-card-foot{align-items:center;background-color:#f5f5f5;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}.modal-card-head{border-bottom:1px solid #dbdbdb;border-top-left-radius:6px;border-top-right-radius:6px}.modal-card-title{color:#222;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}.modal-card-foot{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #dbdbdb}.modal-card-foot .button:not(:last-child){margin-right:0.5em}.modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}.navbar{background-color:#fff;min-height:3.25rem;position:relative;z-index:30}.navbar.is-white{background-color:#fff;color:#0a0a0a}.navbar.is-white .navbar-brand>.navbar-item,.navbar.is-white .navbar-brand .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-brand>a.navbar-item:focus,.navbar.is-white .navbar-brand>a.navbar-item:hover,.navbar.is-white .navbar-brand>a.navbar-item.is-active,.navbar.is-white .navbar-brand .navbar-link:focus,.navbar.is-white .navbar-brand .navbar-link:hover,.navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-brand .navbar-link::after{border-color:#0a0a0a}.navbar.is-white .navbar-burger{color:#0a0a0a}@media screen and (min-width: 1056px){.navbar.is-white .navbar-start>.navbar-item,.navbar.is-white .navbar-start .navbar-link,.navbar.is-white .navbar-end>.navbar-item,.navbar.is-white .navbar-end .navbar-link{color:#0a0a0a}.navbar.is-white .navbar-start>a.navbar-item:focus,.navbar.is-white .navbar-start>a.navbar-item:hover,.navbar.is-white .navbar-start>a.navbar-item.is-active,.navbar.is-white .navbar-start .navbar-link:focus,.navbar.is-white .navbar-start .navbar-link:hover,.navbar.is-white .navbar-start .navbar-link.is-active,.navbar.is-white .navbar-end>a.navbar-item:focus,.navbar.is-white .navbar-end>a.navbar-item:hover,.navbar.is-white .navbar-end>a.navbar-item.is-active,.navbar.is-white .navbar-end .navbar-link:focus,.navbar.is-white .navbar-end .navbar-link:hover,.navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-start .navbar-link::after,.navbar.is-white .navbar-end .navbar-link::after{border-color:#0a0a0a}.navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#0a0a0a}.navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#0a0a0a}}.navbar.is-black{background-color:#0a0a0a;color:#fff}.navbar.is-black .navbar-brand>.navbar-item,.navbar.is-black .navbar-brand .navbar-link{color:#fff}.navbar.is-black .navbar-brand>a.navbar-item:focus,.navbar.is-black .navbar-brand>a.navbar-item:hover,.navbar.is-black .navbar-brand>a.navbar-item.is-active,.navbar.is-black .navbar-brand .navbar-link:focus,.navbar.is-black .navbar-brand .navbar-link:hover,.navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-black .navbar-start>.navbar-item,.navbar.is-black .navbar-start .navbar-link,.navbar.is-black .navbar-end>.navbar-item,.navbar.is-black .navbar-end .navbar-link{color:#fff}.navbar.is-black .navbar-start>a.navbar-item:focus,.navbar.is-black .navbar-start>a.navbar-item:hover,.navbar.is-black .navbar-start>a.navbar-item.is-active,.navbar.is-black .navbar-start .navbar-link:focus,.navbar.is-black .navbar-start .navbar-link:hover,.navbar.is-black .navbar-start .navbar-link.is-active,.navbar.is-black .navbar-end>a.navbar-item:focus,.navbar.is-black .navbar-end>a.navbar-item:hover,.navbar.is-black .navbar-end>a.navbar-item.is-active,.navbar.is-black .navbar-end .navbar-link:focus,.navbar.is-black .navbar-end .navbar-link:hover,.navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-start .navbar-link::after,.navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}.navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#0a0a0a;color:#fff}}.navbar.is-light{background-color:#f5f5f5;color:#363636}.navbar.is-light .navbar-brand>.navbar-item,.navbar.is-light .navbar-brand .navbar-link{color:#363636}.navbar.is-light .navbar-brand>a.navbar-item:focus,.navbar.is-light .navbar-brand>a.navbar-item:hover,.navbar.is-light .navbar-brand>a.navbar-item.is-active,.navbar.is-light .navbar-brand .navbar-link:focus,.navbar.is-light .navbar-brand .navbar-link:hover,.navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:#363636}.navbar.is-light .navbar-brand .navbar-link::after{border-color:#363636}.navbar.is-light .navbar-burger{color:#363636}@media screen and (min-width: 1056px){.navbar.is-light .navbar-start>.navbar-item,.navbar.is-light .navbar-start .navbar-link,.navbar.is-light .navbar-end>.navbar-item,.navbar.is-light .navbar-end .navbar-link{color:#363636}.navbar.is-light .navbar-start>a.navbar-item:focus,.navbar.is-light .navbar-start>a.navbar-item:hover,.navbar.is-light .navbar-start>a.navbar-item.is-active,.navbar.is-light .navbar-start .navbar-link:focus,.navbar.is-light .navbar-start .navbar-link:hover,.navbar.is-light .navbar-start .navbar-link.is-active,.navbar.is-light .navbar-end>a.navbar-item:focus,.navbar.is-light .navbar-end>a.navbar-item:hover,.navbar.is-light .navbar-end>a.navbar-item.is-active,.navbar.is-light .navbar-end .navbar-link:focus,.navbar.is-light .navbar-end .navbar-link:hover,.navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:#363636}.navbar.is-light .navbar-start .navbar-link::after,.navbar.is-light .navbar-end .navbar-link::after{border-color:#363636}.navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:#363636}.navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#363636}}.navbar.is-dark,.content kbd.navbar{background-color:#363636;color:#f5f5f5}.navbar.is-dark .navbar-brand>.navbar-item,.content kbd.navbar .navbar-brand>.navbar-item,.navbar.is-dark .navbar-brand .navbar-link,.content kbd.navbar .navbar-brand .navbar-link{color:#f5f5f5}.navbar.is-dark .navbar-brand>a.navbar-item:focus,.content kbd.navbar .navbar-brand>a.navbar-item:focus,.navbar.is-dark .navbar-brand>a.navbar-item:hover,.content kbd.navbar .navbar-brand>a.navbar-item:hover,.navbar.is-dark .navbar-brand>a.navbar-item.is-active,.content kbd.navbar .navbar-brand>a.navbar-item.is-active,.navbar.is-dark .navbar-brand .navbar-link:focus,.content kbd.navbar .navbar-brand .navbar-link:focus,.navbar.is-dark .navbar-brand .navbar-link:hover,.content kbd.navbar .navbar-brand .navbar-link:hover,.navbar.is-dark .navbar-brand .navbar-link.is-active,.content kbd.navbar .navbar-brand .navbar-link.is-active{background-color:#292929;color:#f5f5f5}.navbar.is-dark .navbar-brand .navbar-link::after,.content kbd.navbar .navbar-brand .navbar-link::after{border-color:#f5f5f5}.navbar.is-dark .navbar-burger,.content kbd.navbar .navbar-burger{color:#f5f5f5}@media screen and (min-width: 1056px){.navbar.is-dark .navbar-start>.navbar-item,.content kbd.navbar .navbar-start>.navbar-item,.navbar.is-dark .navbar-start .navbar-link,.content kbd.navbar .navbar-start .navbar-link,.navbar.is-dark .navbar-end>.navbar-item,.content kbd.navbar .navbar-end>.navbar-item,.navbar.is-dark .navbar-end .navbar-link,.content kbd.navbar .navbar-end .navbar-link{color:#f5f5f5}.navbar.is-dark .navbar-start>a.navbar-item:focus,.content kbd.navbar .navbar-start>a.navbar-item:focus,.navbar.is-dark .navbar-start>a.navbar-item:hover,.content kbd.navbar .navbar-start>a.navbar-item:hover,.navbar.is-dark .navbar-start>a.navbar-item.is-active,.content kbd.navbar .navbar-start>a.navbar-item.is-active,.navbar.is-dark .navbar-start .navbar-link:focus,.content kbd.navbar .navbar-start .navbar-link:focus,.navbar.is-dark .navbar-start .navbar-link:hover,.content kbd.navbar .navbar-start .navbar-link:hover,.navbar.is-dark .navbar-start .navbar-link.is-active,.content kbd.navbar .navbar-start .navbar-link.is-active,.navbar.is-dark .navbar-end>a.navbar-item:focus,.content kbd.navbar .navbar-end>a.navbar-item:focus,.navbar.is-dark .navbar-end>a.navbar-item:hover,.content kbd.navbar .navbar-end>a.navbar-item:hover,.navbar.is-dark .navbar-end>a.navbar-item.is-active,.content kbd.navbar .navbar-end>a.navbar-item.is-active,.navbar.is-dark .navbar-end .navbar-link:focus,.content kbd.navbar .navbar-end .navbar-link:focus,.navbar.is-dark .navbar-end .navbar-link:hover,.content kbd.navbar .navbar-end .navbar-link:hover,.navbar.is-dark .navbar-end .navbar-link.is-active,.content kbd.navbar .navbar-end .navbar-link.is-active{background-color:#292929;color:#f5f5f5}.navbar.is-dark .navbar-start .navbar-link::after,.content kbd.navbar .navbar-start .navbar-link::after,.navbar.is-dark .navbar-end .navbar-link::after,.content kbd.navbar .navbar-end .navbar-link::after{border-color:#f5f5f5}.navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,.content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,.content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link,.content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link{background-color:#292929;color:#f5f5f5}.navbar.is-dark .navbar-dropdown a.navbar-item.is-active,.content kbd.navbar .navbar-dropdown a.navbar-item.is-active{background-color:#363636;color:#f5f5f5}}.navbar.is-primary,.docstring>section>a.navbar.docs-sourcelink{background-color:#4eb5de;color:#fff}.navbar.is-primary .navbar-brand>.navbar-item,.docstring>section>a.navbar.docs-sourcelink .navbar-brand>.navbar-item,.navbar.is-primary .navbar-brand .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link{color:#fff}.navbar.is-primary .navbar-brand>a.navbar-item:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:focus,.navbar.is-primary .navbar-brand>a.navbar-item:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item:hover,.navbar.is-primary .navbar-brand>a.navbar-item.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-brand>a.navbar-item.is-active,.navbar.is-primary .navbar-brand .navbar-link:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus,.navbar.is-primary .navbar-brand .navbar-link:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover,.navbar.is-primary .navbar-brand .navbar-link.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active{background-color:#39acda;color:#fff}.navbar.is-primary .navbar-brand .navbar-link::after,.docstring>section>a.navbar.docs-sourcelink .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-primary .navbar-burger,.docstring>section>a.navbar.docs-sourcelink .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-primary .navbar-start>.navbar-item,.docstring>section>a.navbar.docs-sourcelink .navbar-start>.navbar-item,.navbar.is-primary .navbar-start .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link,.navbar.is-primary .navbar-end>.navbar-item,.docstring>section>a.navbar.docs-sourcelink .navbar-end>.navbar-item,.navbar.is-primary .navbar-end .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link{color:#fff}.navbar.is-primary .navbar-start>a.navbar-item:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:focus,.navbar.is-primary .navbar-start>a.navbar-item:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item:hover,.navbar.is-primary .navbar-start>a.navbar-item.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-start>a.navbar-item.is-active,.navbar.is-primary .navbar-start .navbar-link:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:focus,.navbar.is-primary .navbar-start .navbar-link:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link:hover,.navbar.is-primary .navbar-start .navbar-link.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active,.navbar.is-primary .navbar-end>a.navbar-item:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:focus,.navbar.is-primary .navbar-end>a.navbar-item:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item:hover,.navbar.is-primary .navbar-end>a.navbar-item.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-end>a.navbar-item.is-active,.navbar.is-primary .navbar-end .navbar-link:focus,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:focus,.navbar.is-primary .navbar-end .navbar-link:hover,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link:hover,.navbar.is-primary .navbar-end .navbar-link.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active{background-color:#39acda;color:#fff}.navbar.is-primary .navbar-start .navbar-link::after,.docstring>section>a.navbar.docs-sourcelink .navbar-start .navbar-link::after,.navbar.is-primary .navbar-end .navbar-link::after,.docstring>section>a.navbar.docs-sourcelink .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,.docstring>section>a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link{background-color:#39acda;color:#fff}.navbar.is-primary .navbar-dropdown a.navbar-item.is-active,.docstring>section>a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active{background-color:#4eb5de;color:#fff}}.navbar.is-link{background-color:#2e63b8;color:#fff}.navbar.is-link .navbar-brand>.navbar-item,.navbar.is-link .navbar-brand .navbar-link{color:#fff}.navbar.is-link .navbar-brand>a.navbar-item:focus,.navbar.is-link .navbar-brand>a.navbar-item:hover,.navbar.is-link .navbar-brand>a.navbar-item.is-active,.navbar.is-link .navbar-brand .navbar-link:focus,.navbar.is-link .navbar-brand .navbar-link:hover,.navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#2958a4;color:#fff}.navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-link .navbar-start>.navbar-item,.navbar.is-link .navbar-start .navbar-link,.navbar.is-link .navbar-end>.navbar-item,.navbar.is-link .navbar-end .navbar-link{color:#fff}.navbar.is-link .navbar-start>a.navbar-item:focus,.navbar.is-link .navbar-start>a.navbar-item:hover,.navbar.is-link .navbar-start>a.navbar-item.is-active,.navbar.is-link .navbar-start .navbar-link:focus,.navbar.is-link .navbar-start .navbar-link:hover,.navbar.is-link .navbar-start .navbar-link.is-active,.navbar.is-link .navbar-end>a.navbar-item:focus,.navbar.is-link .navbar-end>a.navbar-item:hover,.navbar.is-link .navbar-end>a.navbar-item.is-active,.navbar.is-link .navbar-end .navbar-link:focus,.navbar.is-link .navbar-end .navbar-link:hover,.navbar.is-link .navbar-end .navbar-link.is-active{background-color:#2958a4;color:#fff}.navbar.is-link .navbar-start .navbar-link::after,.navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#2958a4;color:#fff}.navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#2e63b8;color:#fff}}.navbar.is-info{background-color:#209cee;color:#fff}.navbar.is-info .navbar-brand>.navbar-item,.navbar.is-info .navbar-brand .navbar-link{color:#fff}.navbar.is-info .navbar-brand>a.navbar-item:focus,.navbar.is-info .navbar-brand>a.navbar-item:hover,.navbar.is-info .navbar-brand>a.navbar-item.is-active,.navbar.is-info .navbar-brand .navbar-link:focus,.navbar.is-info .navbar-brand .navbar-link:hover,.navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#1190e3;color:#fff}.navbar.is-info .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-info .navbar-start>.navbar-item,.navbar.is-info .navbar-start .navbar-link,.navbar.is-info .navbar-end>.navbar-item,.navbar.is-info .navbar-end .navbar-link{color:#fff}.navbar.is-info .navbar-start>a.navbar-item:focus,.navbar.is-info .navbar-start>a.navbar-item:hover,.navbar.is-info .navbar-start>a.navbar-item.is-active,.navbar.is-info .navbar-start .navbar-link:focus,.navbar.is-info .navbar-start .navbar-link:hover,.navbar.is-info .navbar-start .navbar-link.is-active,.navbar.is-info .navbar-end>a.navbar-item:focus,.navbar.is-info .navbar-end>a.navbar-item:hover,.navbar.is-info .navbar-end>a.navbar-item.is-active,.navbar.is-info .navbar-end .navbar-link:focus,.navbar.is-info .navbar-end .navbar-link:hover,.navbar.is-info .navbar-end .navbar-link.is-active{background-color:#1190e3;color:#fff}.navbar.is-info .navbar-start .navbar-link::after,.navbar.is-info .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#1190e3;color:#fff}.navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#209cee;color:#fff}}.navbar.is-success{background-color:#22c35b;color:#fff}.navbar.is-success .navbar-brand>.navbar-item,.navbar.is-success .navbar-brand .navbar-link{color:#fff}.navbar.is-success .navbar-brand>a.navbar-item:focus,.navbar.is-success .navbar-brand>a.navbar-item:hover,.navbar.is-success .navbar-brand>a.navbar-item.is-active,.navbar.is-success .navbar-brand .navbar-link:focus,.navbar.is-success .navbar-brand .navbar-link:hover,.navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#1ead51;color:#fff}.navbar.is-success .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-success .navbar-start>.navbar-item,.navbar.is-success .navbar-start .navbar-link,.navbar.is-success .navbar-end>.navbar-item,.navbar.is-success .navbar-end .navbar-link{color:#fff}.navbar.is-success .navbar-start>a.navbar-item:focus,.navbar.is-success .navbar-start>a.navbar-item:hover,.navbar.is-success .navbar-start>a.navbar-item.is-active,.navbar.is-success .navbar-start .navbar-link:focus,.navbar.is-success .navbar-start .navbar-link:hover,.navbar.is-success .navbar-start .navbar-link.is-active,.navbar.is-success .navbar-end>a.navbar-item:focus,.navbar.is-success .navbar-end>a.navbar-item:hover,.navbar.is-success .navbar-end>a.navbar-item.is-active,.navbar.is-success .navbar-end .navbar-link:focus,.navbar.is-success .navbar-end .navbar-link:hover,.navbar.is-success .navbar-end .navbar-link.is-active{background-color:#1ead51;color:#fff}.navbar.is-success .navbar-start .navbar-link::after,.navbar.is-success .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#1ead51;color:#fff}.navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#22c35b;color:#fff}}.navbar.is-warning{background-color:#ffdd57;color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-brand>.navbar-item,.navbar.is-warning .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-brand>a.navbar-item:focus,.navbar.is-warning .navbar-brand>a.navbar-item:hover,.navbar.is-warning .navbar-brand>a.navbar-item.is-active,.navbar.is-warning .navbar-brand .navbar-link:focus,.navbar.is-warning .navbar-brand .navbar-link:hover,.navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#ffd83e;color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1056px){.navbar.is-warning .navbar-start>.navbar-item,.navbar.is-warning .navbar-start .navbar-link,.navbar.is-warning .navbar-end>.navbar-item,.navbar.is-warning .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-start>a.navbar-item:focus,.navbar.is-warning .navbar-start>a.navbar-item:hover,.navbar.is-warning .navbar-start>a.navbar-item.is-active,.navbar.is-warning .navbar-start .navbar-link:focus,.navbar.is-warning .navbar-start .navbar-link:hover,.navbar.is-warning .navbar-start .navbar-link.is-active,.navbar.is-warning .navbar-end>a.navbar-item:focus,.navbar.is-warning .navbar-end>a.navbar-item:hover,.navbar.is-warning .navbar-end>a.navbar-item.is-active,.navbar.is-warning .navbar-end .navbar-link:focus,.navbar.is-warning .navbar-end .navbar-link:hover,.navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#ffd83e;color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-start .navbar-link::after,.navbar.is-warning .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ffd83e;color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#ffdd57;color:rgba(0,0,0,0.7)}}.navbar.is-danger{background-color:#da0b00;color:#fff}.navbar.is-danger .navbar-brand>.navbar-item,.navbar.is-danger .navbar-brand .navbar-link{color:#fff}.navbar.is-danger .navbar-brand>a.navbar-item:focus,.navbar.is-danger .navbar-brand>a.navbar-item:hover,.navbar.is-danger .navbar-brand>a.navbar-item.is-active,.navbar.is-danger .navbar-brand .navbar-link:focus,.navbar.is-danger .navbar-brand .navbar-link:hover,.navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#c10a00;color:#fff}.navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1056px){.navbar.is-danger .navbar-start>.navbar-item,.navbar.is-danger .navbar-start .navbar-link,.navbar.is-danger .navbar-end>.navbar-item,.navbar.is-danger .navbar-end .navbar-link{color:#fff}.navbar.is-danger .navbar-start>a.navbar-item:focus,.navbar.is-danger .navbar-start>a.navbar-item:hover,.navbar.is-danger .navbar-start>a.navbar-item.is-active,.navbar.is-danger .navbar-start .navbar-link:focus,.navbar.is-danger .navbar-start .navbar-link:hover,.navbar.is-danger .navbar-start .navbar-link.is-active,.navbar.is-danger .navbar-end>a.navbar-item:focus,.navbar.is-danger .navbar-end>a.navbar-item:hover,.navbar.is-danger .navbar-end>a.navbar-item.is-active,.navbar.is-danger .navbar-end .navbar-link:focus,.navbar.is-danger .navbar-end .navbar-link:hover,.navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#c10a00;color:#fff}.navbar.is-danger .navbar-start .navbar-link::after,.navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#c10a00;color:#fff}.navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#da0b00;color:#fff}}.navbar>.container{align-items:stretch;display:flex;min-height:3.25rem;width:100%}.navbar.has-shadow{box-shadow:0 2px 0 0 #f5f5f5}.navbar.is-fixed-bottom,.navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom{bottom:0}.navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #f5f5f5}.navbar.is-fixed-top{top:0}html.has-navbar-fixed-top,body.has-navbar-fixed-top{padding-top:3.25rem}html.has-navbar-fixed-bottom,body.has-navbar-fixed-bottom{padding-bottom:3.25rem}.navbar-brand,.navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:3.25rem}.navbar-brand a.navbar-item:focus,.navbar-brand a.navbar-item:hover{background-color:transparent}.navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}.navbar-burger{color:#4a4a4a;cursor:pointer;display:block;height:3.25rem;position:relative;width:3.25rem;margin-left:auto}.navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}.navbar-burger span:nth-child(1){top:calc(50% - 6px)}.navbar-burger span:nth-child(2){top:calc(50% - 1px)}.navbar-burger span:nth-child(3){top:calc(50% + 4px)}.navbar-burger:hover{background-color:rgba(0,0,0,0.05)}.navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}.navbar-burger.is-active span:nth-child(2){opacity:0}.navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}.navbar-menu{display:none}.navbar-item,.navbar-link{color:#4a4a4a;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}.navbar-item .icon:only-child,.navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}a.navbar-item,.navbar-link{cursor:pointer}a.navbar-item:focus,a.navbar-item:focus-within,a.navbar-item:hover,a.navbar-item.is-active,.navbar-link:focus,.navbar-link:focus-within,.navbar-link:hover,.navbar-link.is-active{background-color:#fafafa;color:#2e63b8}.navbar-item{display:block;flex-grow:0;flex-shrink:0}.navbar-item img{max-height:1.75rem}.navbar-item.has-dropdown{padding:0}.navbar-item.is-expanded{flex-grow:1;flex-shrink:1}.navbar-item.is-tab{border-bottom:1px solid transparent;min-height:3.25rem;padding-bottom:calc(0.5rem - 1px)}.navbar-item.is-tab:focus,.navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#2e63b8}.navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#2e63b8;border-bottom-style:solid;border-bottom-width:3px;color:#2e63b8;padding-bottom:calc(0.5rem - 3px)}.navbar-content{flex-grow:1;flex-shrink:1}.navbar-link:not(.is-arrowless){padding-right:2.5em}.navbar-link:not(.is-arrowless)::after{border-color:#2e63b8;margin-top:-0.375em;right:1.125em}.navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}.navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}.navbar-divider{background-color:#f5f5f5;border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1055px){.navbar>.container{display:block}.navbar-brand .navbar-item,.navbar-tabs .navbar-item{align-items:center;display:flex}.navbar-link::after{display:none}.navbar-menu{background-color:#fff;box-shadow:0 8px 16px rgba(10,10,10,0.1);padding:0.5rem 0}.navbar-menu.is-active{display:block}.navbar.is-fixed-bottom-touch,.navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-touch{bottom:0}.navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}.navbar.is-fixed-top-touch{top:0}.navbar.is-fixed-top .navbar-menu,.navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 3.25rem);overflow:auto}html.has-navbar-fixed-top-touch,body.has-navbar-fixed-top-touch{padding-top:3.25rem}html.has-navbar-fixed-bottom-touch,body.has-navbar-fixed-bottom-touch{padding-bottom:3.25rem}}@media screen and (min-width: 1056px){.navbar,.navbar-menu,.navbar-start,.navbar-end{align-items:stretch;display:flex}.navbar{min-height:3.25rem}.navbar.is-spaced{padding:1rem 2rem}.navbar.is-spaced .navbar-start,.navbar.is-spaced .navbar-end{align-items:center}.navbar.is-spaced a.navbar-item,.navbar.is-spaced .navbar-link{border-radius:4px}.navbar.is-transparent a.navbar-item:focus,.navbar.is-transparent a.navbar-item:hover,.navbar.is-transparent a.navbar-item.is-active,.navbar.is-transparent .navbar-link:focus,.navbar.is-transparent .navbar-link:hover,.navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}.navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}.navbar.is-transparent .navbar-dropdown a.navbar-item:focus,.navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#2e63b8}.navbar-burger{display:none}.navbar-item,.navbar-link{align-items:center;display:flex}.navbar-item{display:flex}.navbar-item.has-dropdown{align-items:stretch}.navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}.navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:2px solid #dbdbdb;border-radius:6px 6px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(10,10,10,0.1);top:auto}.navbar-item.is-active .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced .navbar-item.is-active .navbar-dropdown,.navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}.navbar-menu{flex-grow:1;flex-shrink:0}.navbar-start{justify-content:flex-start;margin-right:auto}.navbar-end{justify-content:flex-end;margin-left:auto}.navbar-dropdown{background-color:#fff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:2px solid #dbdbdb;box-shadow:0 8px 8px rgba(10,10,10,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}.navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}.navbar-dropdown a.navbar-item{padding-right:3rem}.navbar-dropdown a.navbar-item:focus,.navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#0a0a0a}.navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#2e63b8}.navbar.is-spaced .navbar-dropdown,.navbar-dropdown.is-boxed{border-radius:6px;border-top:none;box-shadow:0 8px 8px rgba(10,10,10,0.1), 0 0 0 1px rgba(10,10,10,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}.navbar-dropdown.is-right{left:auto;right:0}.navbar-divider{display:block}.navbar>.container .navbar-brand,.container>.navbar .navbar-brand{margin-left:-.75rem}.navbar>.container .navbar-menu,.container>.navbar .navbar-menu{margin-right:-.75rem}.navbar.is-fixed-bottom-desktop,.navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-desktop{bottom:0}.navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(10,10,10,0.1)}.navbar.is-fixed-top-desktop{top:0}html.has-navbar-fixed-top-desktop,body.has-navbar-fixed-top-desktop{padding-top:3.25rem}html.has-navbar-fixed-bottom-desktop,body.has-navbar-fixed-bottom-desktop{padding-bottom:3.25rem}html.has-spaced-navbar-fixed-top,body.has-spaced-navbar-fixed-top{padding-top:5.25rem}html.has-spaced-navbar-fixed-bottom,body.has-spaced-navbar-fixed-bottom{padding-bottom:5.25rem}a.navbar-item.is-active,.navbar-link.is-active{color:#0a0a0a}a.navbar-item.is-active:not(:focus):not(:hover),.navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}.navbar-item.has-dropdown:focus .navbar-link,.navbar-item.has-dropdown:hover .navbar-link,.navbar-item.has-dropdown.is-active .navbar-link{background-color:#fafafa}}.hero.is-fullheight-with-navbar{min-height:calc(100vh - 3.25rem)}.pagination{font-size:1rem;margin:-.25rem}.pagination.is-small,#documenter .docs-sidebar form.docs-search>input.pagination{font-size:.75rem}.pagination.is-medium{font-size:1.25rem}.pagination.is-large{font-size:1.5rem}.pagination.is-rounded .pagination-previous,#documenter .docs-sidebar form.docs-search>input.pagination .pagination-previous,.pagination.is-rounded .pagination-next,#documenter .docs-sidebar form.docs-search>input.pagination .pagination-next{padding-left:1em;padding-right:1em;border-radius:290486px}.pagination.is-rounded .pagination-link,#documenter .docs-sidebar form.docs-search>input.pagination .pagination-link{border-radius:290486px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}.pagination-previous,.pagination-next,.pagination-link{border-color:#dbdbdb;color:#363636;min-width:2.25em}.pagination-previous:hover,.pagination-next:hover,.pagination-link:hover{border-color:#b5b5b5;color:#363636}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus{border-color:#3c5dcd}.pagination-previous:active,.pagination-next:active,.pagination-link:active{box-shadow:inset 0 1px 2px rgba(10,10,10,0.2)}.pagination-previous[disabled],.pagination-next[disabled],.pagination-link[disabled]{background-color:#dbdbdb;border-color:#dbdbdb;box-shadow:none;color:#6b6b6b;opacity:0.5}.pagination-previous,.pagination-next{padding-left:0.75em;padding-right:0.75em;white-space:nowrap}.pagination-link.is-current{background-color:#2e63b8;border-color:#2e63b8;color:#fff}.pagination-ellipsis{color:#b5b5b5;pointer-events:none}.pagination-list{flex-wrap:wrap}@media screen and (max-width: 768px){.pagination{flex-wrap:wrap}.pagination-previous,.pagination-next{flex-grow:1;flex-shrink:1}.pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 769px),print{.pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between}.pagination.is-centered .pagination-previous{order:1}.pagination.is-centered .pagination-list{justify-content:center;order:2}.pagination.is-centered .pagination-next{order:3}.pagination.is-right .pagination-previous{order:1}.pagination.is-right .pagination-next{order:2}.pagination.is-right .pagination-list{justify-content:flex-end;order:3}}.panel{font-size:1rem}.panel:not(:last-child){margin-bottom:1.5rem}.panel-heading,.panel-tabs,.panel-block{border-bottom:1px solid #dbdbdb;border-left:1px solid #dbdbdb;border-right:1px solid #dbdbdb}.panel-heading:first-child,.panel-tabs:first-child,.panel-block:first-child{border-top:1px solid #dbdbdb}.panel-heading{background-color:#f5f5f5;border-radius:4px 4px 0 0;color:#222;font-size:1.25em;font-weight:300;line-height:1.25;padding:0.5em 0.75em}.panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}.panel-tabs a{border-bottom:1px solid #dbdbdb;margin-bottom:-1px;padding:0.5em}.panel-tabs a.is-active{border-bottom-color:#4a4a4a;color:#363636}.panel-list a{color:#222}.panel-list a:hover{color:#2e63b8}.panel-block{align-items:center;color:#222;display:flex;justify-content:flex-start;padding:0.5em 0.75em}.panel-block input[type="checkbox"]{margin-right:0.75em}.panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}.panel-block.is-wrapped{flex-wrap:wrap}.panel-block.is-active{border-left-color:#2e63b8;color:#363636}.panel-block.is-active .panel-icon{color:#2e63b8}a.panel-block,label.panel-block{cursor:pointer}a.panel-block:hover,label.panel-block:hover{background-color:#f5f5f5}.panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#6b6b6b;margin-right:0.75em}.panel-icon .fa{font-size:inherit;line-height:inherit}.tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}.tabs a{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;color:#222;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}.tabs a:hover{border-bottom-color:#222;color:#222}.tabs li{display:block}.tabs li.is-active a{border-bottom-color:#2e63b8;color:#2e63b8}.tabs ul{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}.tabs ul.is-left{padding-right:0.75em}.tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}.tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}.tabs .icon:first-child{margin-right:0.5em}.tabs .icon:last-child{margin-left:0.5em}.tabs.is-centered ul{justify-content:center}.tabs.is-right ul{justify-content:flex-end}.tabs.is-boxed a{border:1px solid transparent;border-radius:4px 4px 0 0}.tabs.is-boxed a:hover{background-color:#f5f5f5;border-bottom-color:#dbdbdb}.tabs.is-boxed li.is-active a{background-color:#fff;border-color:#dbdbdb;border-bottom-color:rgba(0,0,0,0) !important}.tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}.tabs.is-toggle a{border-color:#dbdbdb;border-style:solid;border-width:1px;margin-bottom:0;position:relative}.tabs.is-toggle a:hover{background-color:#f5f5f5;border-color:#b5b5b5;z-index:2}.tabs.is-toggle li+li{margin-left:-1px}.tabs.is-toggle li:first-child a{border-radius:4px 0 0 4px}.tabs.is-toggle li:last-child a{border-radius:0 4px 4px 0}.tabs.is-toggle li.is-active a{background-color:#2e63b8;border-color:#2e63b8;color:#fff;z-index:1}.tabs.is-toggle ul{border-bottom:none}.tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:290486px;border-top-left-radius:290486px;padding-left:1.25em}.tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:290486px;border-top-right-radius:290486px;padding-right:1.25em}.tabs.is-small,#documenter .docs-sidebar form.docs-search>input.tabs{font-size:.75rem}.tabs.is-medium{font-size:1.25rem}.tabs.is-large{font-size:1.5rem}.column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:.75rem}.columns.is-mobile>.column.is-narrow{flex:none}.columns.is-mobile>.column.is-full{flex:none;width:100%}.columns.is-mobile>.column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>.column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>.column.is-half{flex:none;width:50%}.columns.is-mobile>.column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>.column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>.column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>.column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>.column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>.column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>.column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>.column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>.column.is-offset-half{margin-left:50%}.columns.is-mobile>.column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>.column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>.column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>.column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>.column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>.column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>.column.is-0{flex:none;width:0%}.columns.is-mobile>.column.is-offset-0{margin-left:0%}.columns.is-mobile>.column.is-1{flex:none;width:8.3333333333%}.columns.is-mobile>.column.is-offset-1{margin-left:8.3333333333%}.columns.is-mobile>.column.is-2{flex:none;width:16.6666666667%}.columns.is-mobile>.column.is-offset-2{margin-left:16.6666666667%}.columns.is-mobile>.column.is-3{flex:none;width:25%}.columns.is-mobile>.column.is-offset-3{margin-left:25%}.columns.is-mobile>.column.is-4{flex:none;width:33.3333333333%}.columns.is-mobile>.column.is-offset-4{margin-left:33.3333333333%}.columns.is-mobile>.column.is-5{flex:none;width:41.6666666667%}.columns.is-mobile>.column.is-offset-5{margin-left:41.6666666667%}.columns.is-mobile>.column.is-6{flex:none;width:50%}.columns.is-mobile>.column.is-offset-6{margin-left:50%}.columns.is-mobile>.column.is-7{flex:none;width:58.3333333333%}.columns.is-mobile>.column.is-offset-7{margin-left:58.3333333333%}.columns.is-mobile>.column.is-8{flex:none;width:66.6666666667%}.columns.is-mobile>.column.is-offset-8{margin-left:66.6666666667%}.columns.is-mobile>.column.is-9{flex:none;width:75%}.columns.is-mobile>.column.is-offset-9{margin-left:75%}.columns.is-mobile>.column.is-10{flex:none;width:83.3333333333%}.columns.is-mobile>.column.is-offset-10{margin-left:83.3333333333%}.columns.is-mobile>.column.is-11{flex:none;width:91.6666666667%}.columns.is-mobile>.column.is-offset-11{margin-left:91.6666666667%}.columns.is-mobile>.column.is-12{flex:none;width:100%}.columns.is-mobile>.column.is-offset-12{margin-left:100%}@media screen and (max-width: 768px){.column.is-narrow-mobile{flex:none}.column.is-full-mobile{flex:none;width:100%}.column.is-three-quarters-mobile{flex:none;width:75%}.column.is-two-thirds-mobile{flex:none;width:66.6666%}.column.is-half-mobile{flex:none;width:50%}.column.is-one-third-mobile{flex:none;width:33.3333%}.column.is-one-quarter-mobile{flex:none;width:25%}.column.is-one-fifth-mobile{flex:none;width:20%}.column.is-two-fifths-mobile{flex:none;width:40%}.column.is-three-fifths-mobile{flex:none;width:60%}.column.is-four-fifths-mobile{flex:none;width:80%}.column.is-offset-three-quarters-mobile{margin-left:75%}.column.is-offset-two-thirds-mobile{margin-left:66.6666%}.column.is-offset-half-mobile{margin-left:50%}.column.is-offset-one-third-mobile{margin-left:33.3333%}.column.is-offset-one-quarter-mobile{margin-left:25%}.column.is-offset-one-fifth-mobile{margin-left:20%}.column.is-offset-two-fifths-mobile{margin-left:40%}.column.is-offset-three-fifths-mobile{margin-left:60%}.column.is-offset-four-fifths-mobile{margin-left:80%}.column.is-0-mobile{flex:none;width:0%}.column.is-offset-0-mobile{margin-left:0%}.column.is-1-mobile{flex:none;width:8.3333333333%}.column.is-offset-1-mobile{margin-left:8.3333333333%}.column.is-2-mobile{flex:none;width:16.6666666667%}.column.is-offset-2-mobile{margin-left:16.6666666667%}.column.is-3-mobile{flex:none;width:25%}.column.is-offset-3-mobile{margin-left:25%}.column.is-4-mobile{flex:none;width:33.3333333333%}.column.is-offset-4-mobile{margin-left:33.3333333333%}.column.is-5-mobile{flex:none;width:41.6666666667%}.column.is-offset-5-mobile{margin-left:41.6666666667%}.column.is-6-mobile{flex:none;width:50%}.column.is-offset-6-mobile{margin-left:50%}.column.is-7-mobile{flex:none;width:58.3333333333%}.column.is-offset-7-mobile{margin-left:58.3333333333%}.column.is-8-mobile{flex:none;width:66.6666666667%}.column.is-offset-8-mobile{margin-left:66.6666666667%}.column.is-9-mobile{flex:none;width:75%}.column.is-offset-9-mobile{margin-left:75%}.column.is-10-mobile{flex:none;width:83.3333333333%}.column.is-offset-10-mobile{margin-left:83.3333333333%}.column.is-11-mobile{flex:none;width:91.6666666667%}.column.is-offset-11-mobile{margin-left:91.6666666667%}.column.is-12-mobile{flex:none;width:100%}.column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 769px),print{.column.is-narrow,.column.is-narrow-tablet{flex:none}.column.is-full,.column.is-full-tablet{flex:none;width:100%}.column.is-three-quarters,.column.is-three-quarters-tablet{flex:none;width:75%}.column.is-two-thirds,.column.is-two-thirds-tablet{flex:none;width:66.6666%}.column.is-half,.column.is-half-tablet{flex:none;width:50%}.column.is-one-third,.column.is-one-third-tablet{flex:none;width:33.3333%}.column.is-one-quarter,.column.is-one-quarter-tablet{flex:none;width:25%}.column.is-one-fifth,.column.is-one-fifth-tablet{flex:none;width:20%}.column.is-two-fifths,.column.is-two-fifths-tablet{flex:none;width:40%}.column.is-three-fifths,.column.is-three-fifths-tablet{flex:none;width:60%}.column.is-four-fifths,.column.is-four-fifths-tablet{flex:none;width:80%}.column.is-offset-three-quarters,.column.is-offset-three-quarters-tablet{margin-left:75%}.column.is-offset-two-thirds,.column.is-offset-two-thirds-tablet{margin-left:66.6666%}.column.is-offset-half,.column.is-offset-half-tablet{margin-left:50%}.column.is-offset-one-third,.column.is-offset-one-third-tablet{margin-left:33.3333%}.column.is-offset-one-quarter,.column.is-offset-one-quarter-tablet{margin-left:25%}.column.is-offset-one-fifth,.column.is-offset-one-fifth-tablet{margin-left:20%}.column.is-offset-two-fifths,.column.is-offset-two-fifths-tablet{margin-left:40%}.column.is-offset-three-fifths,.column.is-offset-three-fifths-tablet{margin-left:60%}.column.is-offset-four-fifths,.column.is-offset-four-fifths-tablet{margin-left:80%}.column.is-0,.column.is-0-tablet{flex:none;width:0%}.column.is-offset-0,.column.is-offset-0-tablet{margin-left:0%}.column.is-1,.column.is-1-tablet{flex:none;width:8.3333333333%}.column.is-offset-1,.column.is-offset-1-tablet{margin-left:8.3333333333%}.column.is-2,.column.is-2-tablet{flex:none;width:16.6666666667%}.column.is-offset-2,.column.is-offset-2-tablet{margin-left:16.6666666667%}.column.is-3,.column.is-3-tablet{flex:none;width:25%}.column.is-offset-3,.column.is-offset-3-tablet{margin-left:25%}.column.is-4,.column.is-4-tablet{flex:none;width:33.3333333333%}.column.is-offset-4,.column.is-offset-4-tablet{margin-left:33.3333333333%}.column.is-5,.column.is-5-tablet{flex:none;width:41.6666666667%}.column.is-offset-5,.column.is-offset-5-tablet{margin-left:41.6666666667%}.column.is-6,.column.is-6-tablet{flex:none;width:50%}.column.is-offset-6,.column.is-offset-6-tablet{margin-left:50%}.column.is-7,.column.is-7-tablet{flex:none;width:58.3333333333%}.column.is-offset-7,.column.is-offset-7-tablet{margin-left:58.3333333333%}.column.is-8,.column.is-8-tablet{flex:none;width:66.6666666667%}.column.is-offset-8,.column.is-offset-8-tablet{margin-left:66.6666666667%}.column.is-9,.column.is-9-tablet{flex:none;width:75%}.column.is-offset-9,.column.is-offset-9-tablet{margin-left:75%}.column.is-10,.column.is-10-tablet{flex:none;width:83.3333333333%}.column.is-offset-10,.column.is-offset-10-tablet{margin-left:83.3333333333%}.column.is-11,.column.is-11-tablet{flex:none;width:91.6666666667%}.column.is-offset-11,.column.is-offset-11-tablet{margin-left:91.6666666667%}.column.is-12,.column.is-12-tablet{flex:none;width:100%}.column.is-offset-12,.column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1055px){.column.is-narrow-touch{flex:none}.column.is-full-touch{flex:none;width:100%}.column.is-three-quarters-touch{flex:none;width:75%}.column.is-two-thirds-touch{flex:none;width:66.6666%}.column.is-half-touch{flex:none;width:50%}.column.is-one-third-touch{flex:none;width:33.3333%}.column.is-one-quarter-touch{flex:none;width:25%}.column.is-one-fifth-touch{flex:none;width:20%}.column.is-two-fifths-touch{flex:none;width:40%}.column.is-three-fifths-touch{flex:none;width:60%}.column.is-four-fifths-touch{flex:none;width:80%}.column.is-offset-three-quarters-touch{margin-left:75%}.column.is-offset-two-thirds-touch{margin-left:66.6666%}.column.is-offset-half-touch{margin-left:50%}.column.is-offset-one-third-touch{margin-left:33.3333%}.column.is-offset-one-quarter-touch{margin-left:25%}.column.is-offset-one-fifth-touch{margin-left:20%}.column.is-offset-two-fifths-touch{margin-left:40%}.column.is-offset-three-fifths-touch{margin-left:60%}.column.is-offset-four-fifths-touch{margin-left:80%}.column.is-0-touch{flex:none;width:0%}.column.is-offset-0-touch{margin-left:0%}.column.is-1-touch{flex:none;width:8.3333333333%}.column.is-offset-1-touch{margin-left:8.3333333333%}.column.is-2-touch{flex:none;width:16.6666666667%}.column.is-offset-2-touch{margin-left:16.6666666667%}.column.is-3-touch{flex:none;width:25%}.column.is-offset-3-touch{margin-left:25%}.column.is-4-touch{flex:none;width:33.3333333333%}.column.is-offset-4-touch{margin-left:33.3333333333%}.column.is-5-touch{flex:none;width:41.6666666667%}.column.is-offset-5-touch{margin-left:41.6666666667%}.column.is-6-touch{flex:none;width:50%}.column.is-offset-6-touch{margin-left:50%}.column.is-7-touch{flex:none;width:58.3333333333%}.column.is-offset-7-touch{margin-left:58.3333333333%}.column.is-8-touch{flex:none;width:66.6666666667%}.column.is-offset-8-touch{margin-left:66.6666666667%}.column.is-9-touch{flex:none;width:75%}.column.is-offset-9-touch{margin-left:75%}.column.is-10-touch{flex:none;width:83.3333333333%}.column.is-offset-10-touch{margin-left:83.3333333333%}.column.is-11-touch{flex:none;width:91.6666666667%}.column.is-offset-11-touch{margin-left:91.6666666667%}.column.is-12-touch{flex:none;width:100%}.column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1056px){.column.is-narrow-desktop{flex:none}.column.is-full-desktop{flex:none;width:100%}.column.is-three-quarters-desktop{flex:none;width:75%}.column.is-two-thirds-desktop{flex:none;width:66.6666%}.column.is-half-desktop{flex:none;width:50%}.column.is-one-third-desktop{flex:none;width:33.3333%}.column.is-one-quarter-desktop{flex:none;width:25%}.column.is-one-fifth-desktop{flex:none;width:20%}.column.is-two-fifths-desktop{flex:none;width:40%}.column.is-three-fifths-desktop{flex:none;width:60%}.column.is-four-fifths-desktop{flex:none;width:80%}.column.is-offset-three-quarters-desktop{margin-left:75%}.column.is-offset-two-thirds-desktop{margin-left:66.6666%}.column.is-offset-half-desktop{margin-left:50%}.column.is-offset-one-third-desktop{margin-left:33.3333%}.column.is-offset-one-quarter-desktop{margin-left:25%}.column.is-offset-one-fifth-desktop{margin-left:20%}.column.is-offset-two-fifths-desktop{margin-left:40%}.column.is-offset-three-fifths-desktop{margin-left:60%}.column.is-offset-four-fifths-desktop{margin-left:80%}.column.is-0-desktop{flex:none;width:0%}.column.is-offset-0-desktop{margin-left:0%}.column.is-1-desktop{flex:none;width:8.3333333333%}.column.is-offset-1-desktop{margin-left:8.3333333333%}.column.is-2-desktop{flex:none;width:16.6666666667%}.column.is-offset-2-desktop{margin-left:16.6666666667%}.column.is-3-desktop{flex:none;width:25%}.column.is-offset-3-desktop{margin-left:25%}.column.is-4-desktop{flex:none;width:33.3333333333%}.column.is-offset-4-desktop{margin-left:33.3333333333%}.column.is-5-desktop{flex:none;width:41.6666666667%}.column.is-offset-5-desktop{margin-left:41.6666666667%}.column.is-6-desktop{flex:none;width:50%}.column.is-offset-6-desktop{margin-left:50%}.column.is-7-desktop{flex:none;width:58.3333333333%}.column.is-offset-7-desktop{margin-left:58.3333333333%}.column.is-8-desktop{flex:none;width:66.6666666667%}.column.is-offset-8-desktop{margin-left:66.6666666667%}.column.is-9-desktop{flex:none;width:75%}.column.is-offset-9-desktop{margin-left:75%}.column.is-10-desktop{flex:none;width:83.3333333333%}.column.is-offset-10-desktop{margin-left:83.3333333333%}.column.is-11-desktop{flex:none;width:91.6666666667%}.column.is-offset-11-desktop{margin-left:91.6666666667%}.column.is-12-desktop{flex:none;width:100%}.column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1216px){.column.is-narrow-widescreen{flex:none}.column.is-full-widescreen{flex:none;width:100%}.column.is-three-quarters-widescreen{flex:none;width:75%}.column.is-two-thirds-widescreen{flex:none;width:66.6666%}.column.is-half-widescreen{flex:none;width:50%}.column.is-one-third-widescreen{flex:none;width:33.3333%}.column.is-one-quarter-widescreen{flex:none;width:25%}.column.is-one-fifth-widescreen{flex:none;width:20%}.column.is-two-fifths-widescreen{flex:none;width:40%}.column.is-three-fifths-widescreen{flex:none;width:60%}.column.is-four-fifths-widescreen{flex:none;width:80%}.column.is-offset-three-quarters-widescreen{margin-left:75%}.column.is-offset-two-thirds-widescreen{margin-left:66.6666%}.column.is-offset-half-widescreen{margin-left:50%}.column.is-offset-one-third-widescreen{margin-left:33.3333%}.column.is-offset-one-quarter-widescreen{margin-left:25%}.column.is-offset-one-fifth-widescreen{margin-left:20%}.column.is-offset-two-fifths-widescreen{margin-left:40%}.column.is-offset-three-fifths-widescreen{margin-left:60%}.column.is-offset-four-fifths-widescreen{margin-left:80%}.column.is-0-widescreen{flex:none;width:0%}.column.is-offset-0-widescreen{margin-left:0%}.column.is-1-widescreen{flex:none;width:8.3333333333%}.column.is-offset-1-widescreen{margin-left:8.3333333333%}.column.is-2-widescreen{flex:none;width:16.6666666667%}.column.is-offset-2-widescreen{margin-left:16.6666666667%}.column.is-3-widescreen{flex:none;width:25%}.column.is-offset-3-widescreen{margin-left:25%}.column.is-4-widescreen{flex:none;width:33.3333333333%}.column.is-offset-4-widescreen{margin-left:33.3333333333%}.column.is-5-widescreen{flex:none;width:41.6666666667%}.column.is-offset-5-widescreen{margin-left:41.6666666667%}.column.is-6-widescreen{flex:none;width:50%}.column.is-offset-6-widescreen{margin-left:50%}.column.is-7-widescreen{flex:none;width:58.3333333333%}.column.is-offset-7-widescreen{margin-left:58.3333333333%}.column.is-8-widescreen{flex:none;width:66.6666666667%}.column.is-offset-8-widescreen{margin-left:66.6666666667%}.column.is-9-widescreen{flex:none;width:75%}.column.is-offset-9-widescreen{margin-left:75%}.column.is-10-widescreen{flex:none;width:83.3333333333%}.column.is-offset-10-widescreen{margin-left:83.3333333333%}.column.is-11-widescreen{flex:none;width:91.6666666667%}.column.is-offset-11-widescreen{margin-left:91.6666666667%}.column.is-12-widescreen{flex:none;width:100%}.column.is-offset-12-widescreen{margin-left:100%}}@media screen and (min-width: 1408px){.column.is-narrow-fullhd{flex:none}.column.is-full-fullhd{flex:none;width:100%}.column.is-three-quarters-fullhd{flex:none;width:75%}.column.is-two-thirds-fullhd{flex:none;width:66.6666%}.column.is-half-fullhd{flex:none;width:50%}.column.is-one-third-fullhd{flex:none;width:33.3333%}.column.is-one-quarter-fullhd{flex:none;width:25%}.column.is-one-fifth-fullhd{flex:none;width:20%}.column.is-two-fifths-fullhd{flex:none;width:40%}.column.is-three-fifths-fullhd{flex:none;width:60%}.column.is-four-fifths-fullhd{flex:none;width:80%}.column.is-offset-three-quarters-fullhd{margin-left:75%}.column.is-offset-two-thirds-fullhd{margin-left:66.6666%}.column.is-offset-half-fullhd{margin-left:50%}.column.is-offset-one-third-fullhd{margin-left:33.3333%}.column.is-offset-one-quarter-fullhd{margin-left:25%}.column.is-offset-one-fifth-fullhd{margin-left:20%}.column.is-offset-two-fifths-fullhd{margin-left:40%}.column.is-offset-three-fifths-fullhd{margin-left:60%}.column.is-offset-four-fifths-fullhd{margin-left:80%}.column.is-0-fullhd{flex:none;width:0%}.column.is-offset-0-fullhd{margin-left:0%}.column.is-1-fullhd{flex:none;width:8.3333333333%}.column.is-offset-1-fullhd{margin-left:8.3333333333%}.column.is-2-fullhd{flex:none;width:16.6666666667%}.column.is-offset-2-fullhd{margin-left:16.6666666667%}.column.is-3-fullhd{flex:none;width:25%}.column.is-offset-3-fullhd{margin-left:25%}.column.is-4-fullhd{flex:none;width:33.3333333333%}.column.is-offset-4-fullhd{margin-left:33.3333333333%}.column.is-5-fullhd{flex:none;width:41.6666666667%}.column.is-offset-5-fullhd{margin-left:41.6666666667%}.column.is-6-fullhd{flex:none;width:50%}.column.is-offset-6-fullhd{margin-left:50%}.column.is-7-fullhd{flex:none;width:58.3333333333%}.column.is-offset-7-fullhd{margin-left:58.3333333333%}.column.is-8-fullhd{flex:none;width:66.6666666667%}.column.is-offset-8-fullhd{margin-left:66.6666666667%}.column.is-9-fullhd{flex:none;width:75%}.column.is-offset-9-fullhd{margin-left:75%}.column.is-10-fullhd{flex:none;width:83.3333333333%}.column.is-offset-10-fullhd{margin-left:83.3333333333%}.column.is-11-fullhd{flex:none;width:91.6666666667%}.column.is-offset-11-fullhd{margin-left:91.6666666667%}.column.is-12-fullhd{flex:none;width:100%}.column.is-offset-12-fullhd{margin-left:100%}}.columns{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.columns:last-child{margin-bottom:-.75rem}.columns:not(:last-child){margin-bottom:calc(1.5rem - .75rem)}.columns.is-centered{justify-content:center}.columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}.columns.is-gapless>.column{margin:0;padding:0 !important}.columns.is-gapless:not(:last-child){margin-bottom:1.5rem}.columns.is-gapless:last-child{margin-bottom:0}.columns.is-mobile{display:flex}.columns.is-multiline{flex-wrap:wrap}.columns.is-vcentered{align-items:center}@media screen and (min-width: 769px),print{.columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1056px){.columns.is-desktop{display:flex}}.columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}.columns.is-variable .column{padding-left:var(--columnGap);padding-right:var(--columnGap)}.columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 768px){.columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-0-widescreen{--columnGap: 0rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-0-widescreen-only{--columnGap: 0rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-0-fullhd{--columnGap: 0rem}}.columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 768px){.columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-1-widescreen{--columnGap: .25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-1-widescreen-only{--columnGap: .25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-1-fullhd{--columnGap: .25rem}}.columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 768px){.columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-2-widescreen{--columnGap: .5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-2-widescreen-only{--columnGap: .5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-2-fullhd{--columnGap: .5rem}}.columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 768px){.columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-3-widescreen{--columnGap: .75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-3-widescreen-only{--columnGap: .75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-3-fullhd{--columnGap: .75rem}}.columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 768px){.columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-4-widescreen{--columnGap: 1rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-4-widescreen-only{--columnGap: 1rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-4-fullhd{--columnGap: 1rem}}.columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 768px){.columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-5-widescreen-only{--columnGap: 1.25rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-5-fullhd{--columnGap: 1.25rem}}.columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 768px){.columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-6-widescreen-only{--columnGap: 1.5rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-6-fullhd{--columnGap: 1.5rem}}.columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 768px){.columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-7-widescreen-only{--columnGap: 1.75rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-7-fullhd{--columnGap: 1.75rem}}.columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 768px){.columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 769px),print{.columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 769px) and (max-width: 1055px){.columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1055px){.columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1056px){.columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1056px) and (max-width: 1215px){.columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1216px){.columns.is-variable.is-8-widescreen{--columnGap: 2rem}}@media screen and (min-width: 1216px) and (max-width: 1407px){.columns.is-variable.is-8-widescreen-only{--columnGap: 2rem}}@media screen and (min-width: 1408px){.columns.is-variable.is-8-fullhd{--columnGap: 2rem}}.tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}.tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.tile.is-ancestor:last-child{margin-bottom:-.75rem}.tile.is-ancestor:not(:last-child){margin-bottom:.75rem}.tile.is-child{margin:0 !important}.tile.is-parent{padding:.75rem}.tile.is-vertical{flex-direction:column}.tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 769px),print{.tile:not(.is-child){display:flex}.tile.is-1{flex:none;width:8.3333333333%}.tile.is-2{flex:none;width:16.6666666667%}.tile.is-3{flex:none;width:25%}.tile.is-4{flex:none;width:33.3333333333%}.tile.is-5{flex:none;width:41.6666666667%}.tile.is-6{flex:none;width:50%}.tile.is-7{flex:none;width:58.3333333333%}.tile.is-8{flex:none;width:66.6666666667%}.tile.is-9{flex:none;width:75%}.tile.is-10{flex:none;width:83.3333333333%}.tile.is-11{flex:none;width:91.6666666667%}.tile.is-12{flex:none;width:100%}}.hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}.hero .navbar{background:none}.hero .tabs ul{border-bottom:none}.hero.is-white{background-color:#fff;color:#0a0a0a}.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-white strong{color:inherit}.hero.is-white .title{color:#0a0a0a}.hero.is-white .subtitle{color:rgba(10,10,10,0.9)}.hero.is-white .subtitle a:not(.button),.hero.is-white .subtitle strong{color:#0a0a0a}@media screen and (max-width: 1055px){.hero.is-white .navbar-menu{background-color:#fff}}.hero.is-white .navbar-item,.hero.is-white .navbar-link{color:rgba(10,10,10,0.7)}.hero.is-white a.navbar-item:hover,.hero.is-white a.navbar-item.is-active,.hero.is-white .navbar-link:hover,.hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#0a0a0a}.hero.is-white .tabs a{color:#0a0a0a;opacity:0.9}.hero.is-white .tabs a:hover{opacity:1}.hero.is-white .tabs li.is-active a{opacity:1}.hero.is-white .tabs.is-boxed a,.hero.is-white .tabs.is-toggle a{color:#0a0a0a}.hero.is-white .tabs.is-boxed a:hover,.hero.is-white .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-white .tabs.is-boxed li.is-active a,.hero.is-white .tabs.is-boxed li.is-active a:hover,.hero.is-white .tabs.is-toggle li.is-active a,.hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#0a0a0a;border-color:#0a0a0a;color:#fff}.hero.is-white.is-bold{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 768px){.hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e8e3e4 0%, #fff 71%, #fff 100%)}}.hero.is-black{background-color:#0a0a0a;color:#fff}.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-black strong{color:inherit}.hero.is-black .title{color:#fff}.hero.is-black .subtitle{color:rgba(255,255,255,0.9)}.hero.is-black .subtitle a:not(.button),.hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-black .navbar-menu{background-color:#0a0a0a}}.hero.is-black .navbar-item,.hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-black a.navbar-item:hover,.hero.is-black a.navbar-item.is-active,.hero.is-black .navbar-link:hover,.hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}.hero.is-black .tabs a{color:#fff;opacity:0.9}.hero.is-black .tabs a:hover{opacity:1}.hero.is-black .tabs li.is-active a{opacity:1}.hero.is-black .tabs.is-boxed a,.hero.is-black .tabs.is-toggle a{color:#fff}.hero.is-black .tabs.is-boxed a:hover,.hero.is-black .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-black .tabs.is-boxed li.is-active a,.hero.is-black .tabs.is-boxed li.is-active a:hover,.hero.is-black .tabs.is-toggle li.is-active a,.hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0a0a0a}.hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}@media screen and (max-width: 768px){.hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #0a0a0a 71%, #181616 100%)}}.hero.is-light{background-color:#f5f5f5;color:#363636}.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-light strong{color:inherit}.hero.is-light .title{color:#363636}.hero.is-light .subtitle{color:rgba(54,54,54,0.9)}.hero.is-light .subtitle a:not(.button),.hero.is-light .subtitle strong{color:#363636}@media screen and (max-width: 1055px){.hero.is-light .navbar-menu{background-color:#f5f5f5}}.hero.is-light .navbar-item,.hero.is-light .navbar-link{color:rgba(54,54,54,0.7)}.hero.is-light a.navbar-item:hover,.hero.is-light a.navbar-item.is-active,.hero.is-light .navbar-link:hover,.hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:#363636}.hero.is-light .tabs a{color:#363636;opacity:0.9}.hero.is-light .tabs a:hover{opacity:1}.hero.is-light .tabs li.is-active a{opacity:1}.hero.is-light .tabs.is-boxed a,.hero.is-light .tabs.is-toggle a{color:#363636}.hero.is-light .tabs.is-boxed a:hover,.hero.is-light .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-light .tabs.is-boxed li.is-active a,.hero.is-light .tabs.is-boxed li.is-active a:hover,.hero.is-light .tabs.is-toggle li.is-active a,.hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:#363636;border-color:#363636;color:#f5f5f5}.hero.is-light.is-bold{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}@media screen and (max-width: 768px){.hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}}.hero.is-dark,.content kbd.hero{background-color:#363636;color:#f5f5f5}.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-dark strong,.content kbd.hero strong{color:inherit}.hero.is-dark .title,.content kbd.hero .title{color:#f5f5f5}.hero.is-dark .subtitle,.content kbd.hero .subtitle{color:rgba(245,245,245,0.9)}.hero.is-dark .subtitle a:not(.button),.content kbd.hero .subtitle a:not(.button),.hero.is-dark .subtitle strong,.content kbd.hero .subtitle strong{color:#f5f5f5}@media screen and (max-width: 1055px){.hero.is-dark .navbar-menu,.content kbd.hero .navbar-menu{background-color:#363636}}.hero.is-dark .navbar-item,.content kbd.hero .navbar-item,.hero.is-dark .navbar-link,.content kbd.hero .navbar-link{color:rgba(245,245,245,0.7)}.hero.is-dark a.navbar-item:hover,.content kbd.hero a.navbar-item:hover,.hero.is-dark a.navbar-item.is-active,.content kbd.hero a.navbar-item.is-active,.hero.is-dark .navbar-link:hover,.content kbd.hero .navbar-link:hover,.hero.is-dark .navbar-link.is-active,.content kbd.hero .navbar-link.is-active{background-color:#292929;color:#f5f5f5}.hero.is-dark .tabs a,.content kbd.hero .tabs a{color:#f5f5f5;opacity:0.9}.hero.is-dark .tabs a:hover,.content kbd.hero .tabs a:hover{opacity:1}.hero.is-dark .tabs li.is-active a,.content kbd.hero .tabs li.is-active a{opacity:1}.hero.is-dark .tabs.is-boxed a,.content kbd.hero .tabs.is-boxed a,.hero.is-dark .tabs.is-toggle a,.content kbd.hero .tabs.is-toggle a{color:#f5f5f5}.hero.is-dark .tabs.is-boxed a:hover,.content kbd.hero .tabs.is-boxed a:hover,.hero.is-dark .tabs.is-toggle a:hover,.content kbd.hero .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-dark .tabs.is-boxed li.is-active a,.content kbd.hero .tabs.is-boxed li.is-active a,.hero.is-dark .tabs.is-boxed li.is-active a:hover,.hero.is-dark .tabs.is-toggle li.is-active a,.content kbd.hero .tabs.is-toggle li.is-active a,.hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#f5f5f5;border-color:#f5f5f5;color:#363636}.hero.is-dark.is-bold,.content kbd.hero.is-bold{background-image:linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%)}@media screen and (max-width: 768px){.hero.is-dark.is-bold .navbar-menu,.content kbd.hero.is-bold .navbar-menu{background-image:linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%)}}.hero.is-primary,.docstring>section>a.hero.docs-sourcelink{background-color:#4eb5de;color:#fff}.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.docstring>section>a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-primary strong,.docstring>section>a.hero.docs-sourcelink strong{color:inherit}.hero.is-primary .title,.docstring>section>a.hero.docs-sourcelink .title{color:#fff}.hero.is-primary .subtitle,.docstring>section>a.hero.docs-sourcelink .subtitle{color:rgba(255,255,255,0.9)}.hero.is-primary .subtitle a:not(.button),.docstring>section>a.hero.docs-sourcelink .subtitle a:not(.button),.hero.is-primary .subtitle strong,.docstring>section>a.hero.docs-sourcelink .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-primary .navbar-menu,.docstring>section>a.hero.docs-sourcelink .navbar-menu{background-color:#4eb5de}}.hero.is-primary .navbar-item,.docstring>section>a.hero.docs-sourcelink .navbar-item,.hero.is-primary .navbar-link,.docstring>section>a.hero.docs-sourcelink .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-primary a.navbar-item:hover,.docstring>section>a.hero.docs-sourcelink a.navbar-item:hover,.hero.is-primary a.navbar-item.is-active,.docstring>section>a.hero.docs-sourcelink a.navbar-item.is-active,.hero.is-primary .navbar-link:hover,.docstring>section>a.hero.docs-sourcelink .navbar-link:hover,.hero.is-primary .navbar-link.is-active,.docstring>section>a.hero.docs-sourcelink .navbar-link.is-active{background-color:#39acda;color:#fff}.hero.is-primary .tabs a,.docstring>section>a.hero.docs-sourcelink .tabs a{color:#fff;opacity:0.9}.hero.is-primary .tabs a:hover,.docstring>section>a.hero.docs-sourcelink .tabs a:hover{opacity:1}.hero.is-primary .tabs li.is-active a,.docstring>section>a.hero.docs-sourcelink .tabs li.is-active a{opacity:1}.hero.is-primary .tabs.is-boxed a,.docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a,.hero.is-primary .tabs.is-toggle a,.docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a{color:#fff}.hero.is-primary .tabs.is-boxed a:hover,.docstring>section>a.hero.docs-sourcelink .tabs.is-boxed a:hover,.hero.is-primary .tabs.is-toggle a:hover,.docstring>section>a.hero.docs-sourcelink .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-primary .tabs.is-boxed li.is-active a,.docstring>section>a.hero.docs-sourcelink .tabs.is-boxed li.is-active a,.hero.is-primary .tabs.is-boxed li.is-active a:hover,.hero.is-primary .tabs.is-toggle li.is-active a,.docstring>section>a.hero.docs-sourcelink .tabs.is-toggle li.is-active a,.hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#4eb5de}.hero.is-primary.is-bold,.docstring>section>a.hero.is-bold.docs-sourcelink{background-image:linear-gradient(141deg, #1bc7de 0%, #4eb5de 71%, #5fa9e7 100%)}@media screen and (max-width: 768px){.hero.is-primary.is-bold .navbar-menu,.docstring>section>a.hero.is-bold.docs-sourcelink .navbar-menu{background-image:linear-gradient(141deg, #1bc7de 0%, #4eb5de 71%, #5fa9e7 100%)}}.hero.is-link{background-color:#2e63b8;color:#fff}.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-link strong{color:inherit}.hero.is-link .title{color:#fff}.hero.is-link .subtitle{color:rgba(255,255,255,0.9)}.hero.is-link .subtitle a:not(.button),.hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-link .navbar-menu{background-color:#2e63b8}}.hero.is-link .navbar-item,.hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-link a.navbar-item:hover,.hero.is-link a.navbar-item.is-active,.hero.is-link .navbar-link:hover,.hero.is-link .navbar-link.is-active{background-color:#2958a4;color:#fff}.hero.is-link .tabs a{color:#fff;opacity:0.9}.hero.is-link .tabs a:hover{opacity:1}.hero.is-link .tabs li.is-active a{opacity:1}.hero.is-link .tabs.is-boxed a,.hero.is-link .tabs.is-toggle a{color:#fff}.hero.is-link .tabs.is-boxed a:hover,.hero.is-link .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-link .tabs.is-boxed li.is-active a,.hero.is-link .tabs.is-boxed li.is-active a:hover,.hero.is-link .tabs.is-toggle li.is-active a,.hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#2e63b8}.hero.is-link.is-bold{background-image:linear-gradient(141deg, #1b6098 0%, #2e63b8 71%, #2d51d2 100%)}@media screen and (max-width: 768px){.hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #1b6098 0%, #2e63b8 71%, #2d51d2 100%)}}.hero.is-info{background-color:#209cee;color:#fff}.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-info strong{color:inherit}.hero.is-info .title{color:#fff}.hero.is-info .subtitle{color:rgba(255,255,255,0.9)}.hero.is-info .subtitle a:not(.button),.hero.is-info .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-info .navbar-menu{background-color:#209cee}}.hero.is-info .navbar-item,.hero.is-info .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-info a.navbar-item:hover,.hero.is-info a.navbar-item.is-active,.hero.is-info .navbar-link:hover,.hero.is-info .navbar-link.is-active{background-color:#1190e3;color:#fff}.hero.is-info .tabs a{color:#fff;opacity:0.9}.hero.is-info .tabs a:hover{opacity:1}.hero.is-info .tabs li.is-active a{opacity:1}.hero.is-info .tabs.is-boxed a,.hero.is-info .tabs.is-toggle a{color:#fff}.hero.is-info .tabs.is-boxed a:hover,.hero.is-info .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-info .tabs.is-boxed li.is-active a,.hero.is-info .tabs.is-boxed li.is-active a:hover,.hero.is-info .tabs.is-toggle li.is-active a,.hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#209cee}.hero.is-info.is-bold{background-image:linear-gradient(141deg, #05a6d6 0%, #209cee 71%, #3287f5 100%)}@media screen and (max-width: 768px){.hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #05a6d6 0%, #209cee 71%, #3287f5 100%)}}.hero.is-success{background-color:#22c35b;color:#fff}.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-success strong{color:inherit}.hero.is-success .title{color:#fff}.hero.is-success .subtitle{color:rgba(255,255,255,0.9)}.hero.is-success .subtitle a:not(.button),.hero.is-success .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-success .navbar-menu{background-color:#22c35b}}.hero.is-success .navbar-item,.hero.is-success .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-success a.navbar-item:hover,.hero.is-success a.navbar-item.is-active,.hero.is-success .navbar-link:hover,.hero.is-success .navbar-link.is-active{background-color:#1ead51;color:#fff}.hero.is-success .tabs a{color:#fff;opacity:0.9}.hero.is-success .tabs a:hover{opacity:1}.hero.is-success .tabs li.is-active a{opacity:1}.hero.is-success .tabs.is-boxed a,.hero.is-success .tabs.is-toggle a{color:#fff}.hero.is-success .tabs.is-boxed a:hover,.hero.is-success .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-success .tabs.is-boxed li.is-active a,.hero.is-success .tabs.is-boxed li.is-active a:hover,.hero.is-success .tabs.is-toggle li.is-active a,.hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#22c35b}.hero.is-success.is-bold{background-image:linear-gradient(141deg, #12a02c 0%, #22c35b 71%, #1fdf83 100%)}@media screen and (max-width: 768px){.hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #12a02c 0%, #22c35b 71%, #1fdf83 100%)}}.hero.is-warning{background-color:#ffdd57;color:rgba(0,0,0,0.7)}.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-warning strong{color:inherit}.hero.is-warning .title{color:rgba(0,0,0,0.7)}.hero.is-warning .subtitle{color:rgba(0,0,0,0.9)}.hero.is-warning .subtitle a:not(.button),.hero.is-warning .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1055px){.hero.is-warning .navbar-menu{background-color:#ffdd57}}.hero.is-warning .navbar-item,.hero.is-warning .navbar-link{color:rgba(0,0,0,0.7)}.hero.is-warning a.navbar-item:hover,.hero.is-warning a.navbar-item.is-active,.hero.is-warning .navbar-link:hover,.hero.is-warning .navbar-link.is-active{background-color:#ffd83e;color:rgba(0,0,0,0.7)}.hero.is-warning .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}.hero.is-warning .tabs a:hover{opacity:1}.hero.is-warning .tabs li.is-active a{opacity:1}.hero.is-warning .tabs.is-boxed a,.hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,0.7)}.hero.is-warning .tabs.is-boxed a:hover,.hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-warning .tabs.is-boxed li.is-active a,.hero.is-warning .tabs.is-boxed li.is-active a:hover,.hero.is-warning .tabs.is-toggle li.is-active a,.hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#ffdd57}.hero.is-warning.is-bold{background-image:linear-gradient(141deg, #ffae24 0%, #ffdd57 71%, #fffa71 100%)}@media screen and (max-width: 768px){.hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #ffae24 0%, #ffdd57 71%, #fffa71 100%)}}.hero.is-danger{background-color:#da0b00;color:#fff}.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-danger strong{color:inherit}.hero.is-danger .title{color:#fff}.hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}.hero.is-danger .subtitle a:not(.button),.hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1055px){.hero.is-danger .navbar-menu{background-color:#da0b00}}.hero.is-danger .navbar-item,.hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-danger a.navbar-item:hover,.hero.is-danger a.navbar-item.is-active,.hero.is-danger .navbar-link:hover,.hero.is-danger .navbar-link.is-active{background-color:#c10a00;color:#fff}.hero.is-danger .tabs a{color:#fff;opacity:0.9}.hero.is-danger .tabs a:hover{opacity:1}.hero.is-danger .tabs li.is-active a{opacity:1}.hero.is-danger .tabs.is-boxed a,.hero.is-danger .tabs.is-toggle a{color:#fff}.hero.is-danger .tabs.is-boxed a:hover,.hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(10,10,10,0.1)}.hero.is-danger .tabs.is-boxed li.is-active a,.hero.is-danger .tabs.is-boxed li.is-active a:hover,.hero.is-danger .tabs.is-toggle li.is-active a,.hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#da0b00}.hero.is-danger.is-bold{background-image:linear-gradient(141deg, #a70013 0%, #da0b00 71%, #f43500 100%)}@media screen and (max-width: 768px){.hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #a70013 0%, #da0b00 71%, #f43500 100%)}}.hero.is-small .hero-body,#documenter .docs-sidebar form.docs-search>input.hero .hero-body{padding-bottom:1.5rem;padding-top:1.5rem}@media screen and (min-width: 769px),print{.hero.is-medium .hero-body{padding-bottom:9rem;padding-top:9rem}}@media screen and (min-width: 769px),print{.hero.is-large .hero-body{padding-bottom:18rem;padding-top:18rem}}.hero.is-halfheight .hero-body,.hero.is-fullheight .hero-body,.hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}.hero.is-halfheight .hero-body>.container,.hero.is-fullheight .hero-body>.container,.hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}.hero.is-halfheight{min-height:50vh}.hero.is-fullheight{min-height:100vh}.hero-video{overflow:hidden}.hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}.hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 768px){.hero-video{display:none}}.hero-buttons{margin-top:1.5rem}@media screen and (max-width: 768px){.hero-buttons .button{display:flex}.hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 769px),print{.hero-buttons{display:flex;justify-content:center}.hero-buttons .button:not(:last-child){margin-right:1.5rem}}.hero-head,.hero-foot{flex-grow:0;flex-shrink:0}.hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}.section{padding:3rem 1.5rem}@media screen and (min-width: 1056px){.section.is-medium{padding:9rem 1.5rem}.section.is-large{padding:18rem 1.5rem}}.footer{background-color:#fafafa;padding:3rem 1.5rem 6rem}h1 .docs-heading-anchor,h1 .docs-heading-anchor:hover,h1 .docs-heading-anchor:visited,h2 .docs-heading-anchor,h2 .docs-heading-anchor:hover,h2 .docs-heading-anchor:visited,h3 .docs-heading-anchor,h3 .docs-heading-anchor:hover,h3 .docs-heading-anchor:visited,h4 .docs-heading-anchor,h4 .docs-heading-anchor:hover,h4 .docs-heading-anchor:visited,h5 .docs-heading-anchor,h5 .docs-heading-anchor:hover,h5 .docs-heading-anchor:visited,h6 .docs-heading-anchor,h6 .docs-heading-anchor:hover,h6 .docs-heading-anchor:visited{color:#222}h1 .docs-heading-anchor-permalink,h2 .docs-heading-anchor-permalink,h3 .docs-heading-anchor-permalink,h4 .docs-heading-anchor-permalink,h5 .docs-heading-anchor-permalink,h6 .docs-heading-anchor-permalink{visibility:hidden;vertical-align:middle;margin-left:0.5em;font-size:0.7rem}h1 .docs-heading-anchor-permalink::before,h2 .docs-heading-anchor-permalink::before,h3 .docs-heading-anchor-permalink::before,h4 .docs-heading-anchor-permalink::before,h5 .docs-heading-anchor-permalink::before,h6 .docs-heading-anchor-permalink::before{font-family:"Font Awesome 5 Free";font-weight:900;content:"\f0c1"}h1:hover .docs-heading-anchor-permalink,h2:hover .docs-heading-anchor-permalink,h3:hover .docs-heading-anchor-permalink,h4:hover .docs-heading-anchor-permalink,h5:hover .docs-heading-anchor-permalink,h6:hover .docs-heading-anchor-permalink{visibility:visible}.docs-dark-only{display:none !important}pre{position:relative;overflow:hidden}pre code,pre code.hljs{padding:0 .75rem !important;overflow:auto;display:block}pre code:first-of-type,pre code.hljs:first-of-type{padding-top:0.5rem !important}pre code:last-of-type,pre code.hljs:last-of-type{padding-bottom:0.5rem !important}pre .copy-button{opacity:0.2;transition:opacity 0.2s;position:absolute;right:0em;top:0em;padding:0.5em;width:2.5em;height:2.5em;background:transparent;border:none;font-family:"Font Awesome 5 Free";color:#222;cursor:pointer;text-align:center}pre .copy-button:focus,pre .copy-button:hover{opacity:1;background:rgba(34,34,34,0.1);color:#2e63b8}pre .copy-button.success{color:#259a12;opacity:1}pre .copy-button.error{color:#cb3c33;opacity:1}pre:hover .copy-button{opacity:1}.admonition{background-color:#b5b5b5;border-style:solid;border-width:1px;border-color:#363636;border-radius:4px;font-size:1rem}.admonition strong{color:currentColor}.admonition.is-small,#documenter .docs-sidebar form.docs-search>input.admonition{font-size:.75rem}.admonition.is-medium{font-size:1.25rem}.admonition.is-large{font-size:1.5rem}.admonition.is-default{background-color:#b5b5b5;border-color:#363636}.admonition.is-default>.admonition-header{background-color:#363636;color:#fff}.admonition.is-default>.admonition-body{color:#fff}.admonition.is-info{background-color:#def0fc;border-color:#209cee}.admonition.is-info>.admonition-header{background-color:#209cee;color:#fff}.admonition.is-info>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-success{background-color:#bdf4d1;border-color:#22c35b}.admonition.is-success>.admonition-header{background-color:#22c35b;color:#fff}.admonition.is-success>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-warning{background-color:#fff3c5;border-color:#ffdd57}.admonition.is-warning>.admonition-header{background-color:#ffdd57;color:rgba(0,0,0,0.7)}.admonition.is-warning>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-danger{background-color:#ffaba7;border-color:#da0b00}.admonition.is-danger>.admonition-header{background-color:#da0b00;color:#fff}.admonition.is-danger>.admonition-body{color:rgba(0,0,0,0.7)}.admonition.is-compat{background-color:#bdeff5;border-color:#1db5c9}.admonition.is-compat>.admonition-header{background-color:#1db5c9;color:#fff}.admonition.is-compat>.admonition-body{color:rgba(0,0,0,0.7)}.admonition-header{color:#fff;background-color:#363636;align-items:center;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.5rem .75rem;position:relative}.admonition-header:before{font-family:"Font Awesome 5 Free";font-weight:900;margin-right:.75rem;content:"\f06a"}.admonition-body{color:#222;padding:0.5rem .75rem}.admonition-body pre{background-color:#f5f5f5}.admonition-body code{background-color:rgba(0,0,0,0.05)}.docstring{margin-bottom:1em;background-color:rgba(0,0,0,0);border:1px solid #dbdbdb;box-shadow:2px 2px 3px rgba(10,10,10,0.1);max-width:100%}.docstring>header{display:flex;flex-grow:1;align-items:stretch;padding:0.5rem .75rem;background-color:#f5f5f5;box-shadow:0 1px 2px rgba(10,10,10,0.1);box-shadow:none;border-bottom:1px solid #dbdbdb}.docstring>header code{background-color:transparent}.docstring>header .docstring-binding{margin-right:0.3em}.docstring>header .docstring-category{margin-left:0.3em}.docstring>section{position:relative;padding:.75rem .75rem;border-bottom:1px solid #dbdbdb}.docstring>section:last-child{border-bottom:none}.docstring>section>a.docs-sourcelink{transition:opacity 0.3s;opacity:0;position:absolute;right:.375rem;bottom:.375rem}.docstring>section>a.docs-sourcelink:focus{opacity:1 !important}.docstring:hover>section>a.docs-sourcelink{opacity:0.2}.docstring:focus-within>section>a.docs-sourcelink{opacity:0.2}.docstring>section:hover a.docs-sourcelink{opacity:1}.documenter-example-output{background-color:#fff}.outdated-warning-overlay{position:fixed;top:0;left:0;right:0;box-shadow:0 0 10px rgba(0,0,0,0.3);z-index:999;background-color:#ffaba7;color:rgba(0,0,0,0.7);border-bottom:3px solid #da0b00;padding:10px 35px;text-align:center;font-size:15px}.outdated-warning-overlay .outdated-warning-closer{position:absolute;top:calc(50% - 10px);right:18px;cursor:pointer;width:12px}.outdated-warning-overlay a{color:#2e63b8}.outdated-warning-overlay a:hover{color:#363636}.content pre{border:1px solid #dbdbdb}.content code{font-weight:inherit}.content a code{color:#2e63b8}.content h1 code,.content h2 code,.content h3 code,.content h4 code,.content h5 code,.content h6 code{color:#222}.content table{display:block;width:initial;max-width:100%;overflow-x:auto}.content blockquote>ul:first-child,.content blockquote>ol:first-child,.content .admonition-body>ul:first-child,.content .admonition-body>ol:first-child{margin-top:0}pre,code{font-variant-ligatures:no-contextual}.breadcrumb a.is-disabled{cursor:default;pointer-events:none}.breadcrumb a.is-disabled,.breadcrumb a.is-disabled:hover{color:#222}.hljs{background:initial !important}.katex .katex-mathml{top:0;right:0}.katex-display,mjx-container,.MathJax_Display{margin:0.5em 0 !important}html{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}li.no-marker{list-style:none}#documenter .docs-main>article{overflow-wrap:break-word}#documenter .docs-main>article .math-container{overflow-x:auto;overflow-y:hidden}@media screen and (min-width: 1056px){#documenter .docs-main{max-width:52rem;margin-left:20rem;padding-right:1rem}}@media screen and (max-width: 1055px){#documenter .docs-main{width:100%}#documenter .docs-main>article{max-width:52rem;margin-left:auto;margin-right:auto;margin-bottom:1rem;padding:0 1rem}#documenter .docs-main>header,#documenter .docs-main>nav{max-width:100%;width:100%;margin:0}}#documenter .docs-main header.docs-navbar{background-color:#fff;border-bottom:1px solid #dbdbdb;z-index:2;min-height:4rem;margin-bottom:1rem;display:flex}#documenter .docs-main header.docs-navbar .breadcrumb{flex-grow:1}#documenter .docs-main header.docs-navbar .docs-right{display:flex;white-space:nowrap}#documenter .docs-main header.docs-navbar .docs-right .docs-icon,#documenter .docs-main header.docs-navbar .docs-right .docs-label,#documenter .docs-main header.docs-navbar .docs-right .docs-sidebar-button{display:inline-block}#documenter .docs-main header.docs-navbar .docs-right .docs-label{padding:0;margin-left:0.3em}#documenter .docs-main header.docs-navbar .docs-right .docs-settings-button{margin:auto 0 auto 1rem}#documenter .docs-main header.docs-navbar .docs-right .docs-sidebar-button{font-size:1.5rem;margin:auto 0 auto 1rem}#documenter .docs-main header.docs-navbar>*{margin:auto 0}@media screen and (max-width: 1055px){#documenter .docs-main header.docs-navbar{position:sticky;top:0;padding:0 1rem;transition-property:top, box-shadow;-webkit-transition-property:top, box-shadow;transition-duration:0.3s;-webkit-transition-duration:0.3s}#documenter .docs-main header.docs-navbar.headroom--not-top{box-shadow:.2rem 0rem .4rem #bbb;transition-duration:0.7s;-webkit-transition-duration:0.7s}#documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom{top:-4.5rem;transition-duration:0.7s;-webkit-transition-duration:0.7s}}#documenter .docs-main section.footnotes{border-top:1px solid #dbdbdb}#documenter .docs-main section.footnotes li .tag:first-child,#documenter .docs-main section.footnotes li .docstring>section>a.docs-sourcelink:first-child,#documenter .docs-main section.footnotes li .content kbd:first-child,.content #documenter .docs-main section.footnotes li kbd:first-child{margin-right:1em;margin-bottom:0.4em}#documenter .docs-main .docs-footer{display:flex;flex-wrap:wrap;margin-left:0;margin-right:0;border-top:1px solid #dbdbdb;padding-top:1rem;padding-bottom:1rem}@media screen and (max-width: 1055px){#documenter .docs-main .docs-footer{padding-left:1rem;padding-right:1rem}}#documenter .docs-main .docs-footer .docs-footer-nextpage,#documenter .docs-main .docs-footer .docs-footer-prevpage{flex-grow:1}#documenter .docs-main .docs-footer .docs-footer-nextpage{text-align:right}#documenter .docs-main .docs-footer .flexbox-break{flex-basis:100%;height:0}#documenter .docs-main .docs-footer .footer-message{font-size:0.8em;margin:0.5em auto 0 auto;text-align:center}#documenter .docs-sidebar{display:flex;flex-direction:column;color:#0a0a0a;background-color:#f5f5f5;border-right:1px solid #dbdbdb;padding:0;flex:0 0 18rem;z-index:5;font-size:1rem;position:fixed;left:-18rem;width:18rem;height:100%;transition:left 0.3s}#documenter .docs-sidebar.visible{left:0;box-shadow:.4rem 0rem .8rem #bbb}@media screen and (min-width: 1056px){#documenter .docs-sidebar.visible{box-shadow:none}}@media screen and (min-width: 1056px){#documenter .docs-sidebar{left:0;top:0}}#documenter .docs-sidebar .docs-logo{margin-top:1rem;padding:0 1rem}#documenter .docs-sidebar .docs-logo>img{max-height:6rem;margin:auto}#documenter .docs-sidebar .docs-package-name{flex-shrink:0;font-size:1.5rem;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;padding:0.5rem 0}#documenter .docs-sidebar .docs-package-name .docs-autofit{max-width:16.2rem}#documenter .docs-sidebar .docs-package-name a,#documenter .docs-sidebar .docs-package-name a:hover{color:#0a0a0a}#documenter .docs-sidebar .docs-version-selector{border-top:1px solid #dbdbdb;display:none;padding:0.5rem}#documenter .docs-sidebar .docs-version-selector.visible{display:flex}#documenter .docs-sidebar ul.docs-menu{flex-grow:1;user-select:none;border-top:1px solid #dbdbdb;padding-bottom:1.5rem}#documenter .docs-sidebar ul.docs-menu>li>.tocitem{font-weight:bold}#documenter .docs-sidebar ul.docs-menu>li li{font-size:.95rem;margin-left:1em;border-left:1px solid #dbdbdb}#documenter .docs-sidebar ul.docs-menu input.collapse-toggle{display:none}#documenter .docs-sidebar ul.docs-menu ul.collapsed{display:none}#documenter .docs-sidebar ul.docs-menu input:checked~ul.collapsed{display:block}#documenter .docs-sidebar ul.docs-menu label.tocitem{display:flex}#documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label{flex-grow:2}#documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron{display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;font-size:.75rem;margin-left:1rem;margin-top:auto;margin-bottom:auto}#documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before{font-family:"Font Awesome 5 Free";font-weight:900;content:"\f054"}#documenter .docs-sidebar ul.docs-menu input:checked~label.tocitem .docs-chevron::before{content:"\f078"}#documenter .docs-sidebar ul.docs-menu .tocitem{display:block;padding:0.5rem 0.5rem}#documenter .docs-sidebar ul.docs-menu .tocitem,#documenter .docs-sidebar ul.docs-menu .tocitem:hover{color:#0a0a0a;background:#f5f5f5}#documenter .docs-sidebar ul.docs-menu a.tocitem:hover,#documenter .docs-sidebar ul.docs-menu label.tocitem:hover{color:#0a0a0a;background-color:#ebebeb}#documenter .docs-sidebar ul.docs-menu li.is-active{border-top:1px solid #dbdbdb;border-bottom:1px solid #dbdbdb;background-color:#fff}#documenter .docs-sidebar ul.docs-menu li.is-active .tocitem,#documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover{background-color:#fff;color:#0a0a0a}#documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover{background-color:#ebebeb;color:#0a0a0a}#documenter .docs-sidebar ul.docs-menu>li.is-active:first-child{border-top:none}#documenter .docs-sidebar ul.docs-menu ul.internal{margin:0 0.5rem 0.5rem;border-top:1px solid #dbdbdb}#documenter .docs-sidebar ul.docs-menu ul.internal li{font-size:.85rem;border-left:none;margin-left:0;margin-top:0.5rem}#documenter .docs-sidebar ul.docs-menu ul.internal .tocitem{width:100%;padding:0}#documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before{content:"⚬";margin-right:0.4em}#documenter .docs-sidebar form.docs-search{margin:auto;margin-top:0.5rem;margin-bottom:0.5rem}#documenter .docs-sidebar form.docs-search>input{width:14.4rem}@media screen and (min-width: 1056px){#documenter .docs-sidebar ul.docs-menu{overflow-y:auto;-webkit-overflow-scroll:touch}#documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar{width:.3rem;background:none}#documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#e0e0e0}#documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover{background:#ccc}}@media screen and (max-width: 1055px){#documenter .docs-sidebar{overflow-y:auto;-webkit-overflow-scroll:touch}#documenter .docs-sidebar::-webkit-scrollbar{width:.3rem;background:none}#documenter .docs-sidebar::-webkit-scrollbar-thumb{border-radius:5px 0px 0px 5px;background:#e0e0e0}#documenter .docs-sidebar::-webkit-scrollbar-thumb:hover{background:#ccc}}#documenter .docs-main #documenter-search-info{margin-bottom:1rem}#documenter .docs-main #documenter-search-results{list-style-type:circle;list-style-position:outside}#documenter .docs-main #documenter-search-results li{margin-left:2rem}#documenter .docs-main #documenter-search-results .docs-highlight{background-color:yellow}.ansi span.sgr1{font-weight:bolder}.ansi span.sgr2{font-weight:lighter}.ansi span.sgr3{font-style:italic}.ansi span.sgr4{text-decoration:underline}.ansi span.sgr7{color:#fff;background-color:#222}.ansi span.sgr8{color:transparent}.ansi span.sgr8 span{color:transparent}.ansi span.sgr9{text-decoration:line-through}.ansi span.sgr30{color:#242424}.ansi span.sgr31{color:#a7201f}.ansi span.sgr32{color:#066f00}.ansi span.sgr33{color:#856b00}.ansi span.sgr34{color:#2149b0}.ansi span.sgr35{color:#7d4498}.ansi span.sgr36{color:#007989}.ansi span.sgr37{color:gray}.ansi span.sgr40{background-color:#242424}.ansi span.sgr41{background-color:#a7201f}.ansi span.sgr42{background-color:#066f00}.ansi span.sgr43{background-color:#856b00}.ansi span.sgr44{background-color:#2149b0}.ansi span.sgr45{background-color:#7d4498}.ansi span.sgr46{background-color:#007989}.ansi span.sgr47{background-color:gray}.ansi span.sgr90{color:#616161}.ansi span.sgr91{color:#cb3c33}.ansi span.sgr92{color:#0e8300}.ansi span.sgr93{color:#a98800}.ansi span.sgr94{color:#3c5dcd}.ansi span.sgr95{color:#9256af}.ansi span.sgr96{color:#008fa3}.ansi span.sgr97{color:#f5f5f5}.ansi span.sgr100{background-color:#616161}.ansi span.sgr101{background-color:#cb3c33}.ansi span.sgr102{background-color:#0e8300}.ansi span.sgr103{background-color:#a98800}.ansi span.sgr104{background-color:#3c5dcd}.ansi span.sgr105{background-color:#9256af}.ansi span.sgr106{background-color:#008fa3}.ansi span.sgr107{background-color:#f5f5f5}code.language-julia-repl>span.hljs-meta{color:#066f00;font-weight:bolder}/*! + Theme: Default + Description: Original highlight.js style + Author: (c) Ivan Sagalaev + Maintainer: @highlightjs/core-team + Website: https://highlightjs.org/ + License: see project LICENSE + Touched: 2021 +*/pre code.hljs{display:block;overflow-x:auto}code.hljs{padding:3px 5px}.hljs{background:#F0F0F0;color:#444}.hljs-comment{color:#888888}.hljs-tag,.hljs-punctuation{color:#444a}.hljs-tag .hljs-name,.hljs-tag .hljs-attr{color:#444}.hljs-keyword,.hljs-attribute,.hljs-selector-tag,.hljs-meta .hljs-keyword,.hljs-doctag,.hljs-name{font-weight:bold}.hljs-type,.hljs-string,.hljs-number,.hljs-selector-id,.hljs-selector-class,.hljs-quote,.hljs-template-tag,.hljs-deletion{color:#880000}.hljs-title,.hljs-section{color:#880000;font-weight:bold}.hljs-regexp,.hljs-symbol,.hljs-variable,.hljs-template-variable,.hljs-link,.hljs-selector-attr,.hljs-operator,.hljs-selector-pseudo{color:#BC6060}.hljs-literal{color:#78A960}.hljs-built_in,.hljs-bullet,.hljs-code,.hljs-addition{color:#397300}.hljs-meta{color:#1f7199}.hljs-meta .hljs-string{color:#4d99bf}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:bold} diff --git a/v0.27.5/assets/themeswap.js b/v0.27.5/assets/themeswap.js new file mode 100644 index 0000000000..c58e993e3e --- /dev/null +++ b/v0.27.5/assets/themeswap.js @@ -0,0 +1,66 @@ +// Small function to quickly swap out themes. Gets put into the tag.. +function set_theme_from_local_storage() { + // Intialize the theme to null, which means default + var theme = null; + // If the browser supports the localstorage and is not disabled then try to get the + // documenter theme + if(window.localStorage != null) { + // Get the user-picked theme from localStorage. May be `null`, which means the default + // theme. + theme = window.localStorage.getItem("documenter-theme"); + } + // Check if the browser supports user color preference + var darkPreference = false; + // Check if the users preference is for dark color scheme + if(window.matchMedia('(prefers-color-scheme: dark)').matches === true) { + darkPreference = true; + } + // Initialize a few variables for the loop: + // + // - active: will contain the index of the theme that should be active. Note that there + // is no guarantee that localStorage contains sane values. If `active` stays `null` + // we either could not find the theme or it is the default (primary) theme anyway. + // Either way, we then need to stick to the primary theme. + // + // - disabled: style sheets that should be disabled (i.e. all the theme style sheets + // that are not the currently active theme) + var active = null; var disabled = []; var darkTheme = null; + for (var i = 0; i < document.styleSheets.length; i++) { + var ss = document.styleSheets[i]; + // The tag of each style sheet is expected to have a data-theme-name attribute + // which must contain the name of the theme. The names in localStorage much match this. + var themename = ss.ownerNode.getAttribute("data-theme-name"); + // attribute not set => non-theme stylesheet => ignore + if(themename === null) continue; + // To distinguish the default (primary) theme, it needs to have the data-theme-primary + // attribute set. + var isprimary = (ss.ownerNode.getAttribute("data-theme-primary") !== null); + // Check if the theme is primary dark theme + var isDarkTheme = (ss.ownerNode.getAttribute("data-theme-primary-dark") !== null); + // If ss is for dark theme then set the value of darkTheme to the name of the theme + if(isDarkTheme) darkTheme = themename; + // If we find a matching theme (and it's not the default), we'll set active to non-null + if(themename === theme) active = i; + // Store the style sheets of inactive themes so that we could disable them + if(themename !== theme) disabled.push(ss); + } + if(active !== null) { + // If we did find an active theme, we'll (1) add the theme--$(theme) class to + document.getElementsByTagName('html')[0].className = "theme--" + theme; + // and (2) disable all the other theme stylesheets + disabled.forEach(function(ss){ + ss.disabled = true; + }); + } + else if(darkTheme !== null && darkPreference === true) { + // If we did find an active theme, we'll (1) add the theme--$(theme) class to + document.getElementsByTagName('html')[0].className = "theme--" + darkTheme; + // and (2) disable all the other theme stylesheets + disabled.forEach(function(ss){ + if (ss.ownerNode.getAttribute("data-theme-name") !== darkTheme) { + ss.disabled = true; + } + }); + } +} +set_theme_from_local_storage(); diff --git a/v0.27.5/assets/warner.js b/v0.27.5/assets/warner.js new file mode 100644 index 0000000000..5531c8851b --- /dev/null +++ b/v0.27.5/assets/warner.js @@ -0,0 +1,49 @@ +function maybeAddWarning () { + // DOCUMENTER_NEWEST is defined in versions.js, DOCUMENTER_CURRENT_VERSION and DOCUMENTER_STABLE + // in siteinfo.js. + // If either of these are undefined something went horribly wrong, so we abort. + if ( + window.DOCUMENTER_NEWEST === undefined || + window.DOCUMENTER_CURRENT_VERSION === undefined || + window.DOCUMENTER_STABLE === undefined + ) { + return + }; + + // Current version is not a version number, so we can't tell if it's the newest version. Abort. + if (!/v(\d+\.)*\d+/.test(window.DOCUMENTER_CURRENT_VERSION)) { + return + }; + + // Current version is newest version, so no need to add a warning. + if (window.DOCUMENTER_NEWEST === window.DOCUMENTER_CURRENT_VERSION) { + return + }; + + // Add a noindex meta tag (unless one exists) so that search engines don't index this version of the docs. + if (document.body.querySelector('meta[name="robots"]') === null) { + const meta = document.createElement('meta'); + meta.name = 'robots'; + meta.content = 'noindex'; + + document.getElementsByTagName('head')[0].appendChild(meta); + }; + + const div = document.createElement('div'); + div.classList.add('outdated-warning-overlay'); + const closer = document.createElement('button'); + closer.classList.add('outdated-warning-closer', 'delete'); + closer.addEventListener('click', function () { + document.body.removeChild(div); + }); + const href = window.documenterBaseURL + '/../' + window.DOCUMENTER_STABLE; + div.innerHTML = 'This documentation is not for the latest stable release, but for either the development version or an older release.
    Click here to go to the documentation for the latest stable release.'; + div.appendChild(closer); + document.body.appendChild(div); +}; + +if (document.readyState === 'loading') { + document.addEventListener('DOMContentLoaded', maybeAddWarning); +} else { + maybeAddWarning(); +}; diff --git a/v0.27.5/code_base_developer_guide/developer/index.html b/v0.27.5/code_base_developer_guide/developer/index.html new file mode 100644 index 0000000000..e29a61654b --- /dev/null +++ b/v0.27.5/code_base_developer_guide/developer/index.html @@ -0,0 +1,2 @@ + +Developer Guide · PowerSimulations.jl
    diff --git a/v0.27.5/code_base_developer_guide/extending_powersimulations/index.html b/v0.27.5/code_base_developer_guide/extending_powersimulations/index.html new file mode 100644 index 0000000000..fe6861de67 --- /dev/null +++ b/v0.27.5/code_base_developer_guide/extending_powersimulations/index.html @@ -0,0 +1,36 @@ + +Extending Source Code Functionalities · PowerSimulations.jl

    Extending Source Code Functionalities

    Enable other recorder events

    Other types of recorder events can be enabled with a possible performance impact. To do this pass in the specific recorder names to be enabled when you call build.

    sim = Simulation(...)
    +recorders = [:execution]
    +build!(sim; recorders = recorders)
    +execute!(sim)

    Now we can examine InitialConditionUpdateEvents for specific steps and stages.

    show_simulation_events(
    +    PSI.InitialConditionUpdateEvent,
    +    "./output/aggregation/1",
    +    x -> x.initial_condition_type == "DeviceStatus";
    +    step = 2,
    +    stage = 1
    +)
    +┌─────────────────────────────┬─────────────────────┬────────────────────────┬─────────────────┬─────────────┬─────┬──────────────┐
    +│                        name │     simulation_time │ initial_condition_type │     device_type │ device_name │ val │ stage_number │
    +├─────────────────────────────┼─────────────────────┼────────────────────────┼─────────────────┼─────────────┼─────┼──────────────┤
    +│ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │           DeviceStatus │ ThermalStandard │    Solitude │ 0.0 │            1 │
    +│ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │           DeviceStatus │ ThermalStandard │   Park City │ 1.0 │            1 │
    +│ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │           DeviceStatus │ ThermalStandard │        Alta │ 1.0 │            1 │
    +│ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │           DeviceStatus │ ThermalStandard │    Brighton │ 1.0 │            1 │
    +│ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │           DeviceStatus │ ThermalStandard │    Sundance │ 0.0 │            1 │
    +└─────────────────────────────┴─────────────────────┴────────────────────────┴─────────────────┴─────────────┴─────┴──────────────┘

    Show the wall time with your events

    Sometimes you might want to see how the events line up with the wall time.

    show_simulation_events(
    +    PSI.InitialConditionUpdateEvent,
    +    "./output/aggregation/1",
    +    x -> x.initial_condition_type == "DeviceStatus";
    +    step = 2,
    +    stage = 1,
    +    wall_time = true
    +)
    +┌─────────────────────────┬─────────────────────────────┬─────────────────────┬────────────────────────┬─────────────────┬─────────────┬─────┬──────────────┐
    +│               timestamp │                        name │     simulation_time │ initial_condition_type │     device_type │ device_name │ val │ stage_number │
    +├─────────────────────────┼─────────────────────────────┼─────────────────────┼────────────────────────┼─────────────────┼─────────────┼─────┼──────────────┤
    +│ 2020-04-07T15:08:32.711 │ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │           DeviceStatus │ ThermalStandard │    Solitude │ 0.0 │            1 │
    +│ 2020-04-07T15:08:32.711 │ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │           DeviceStatus │ ThermalStandard │   Park City │ 1.0 │            1 │
    +│ 2020-04-07T15:08:32.711 │ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │           DeviceStatus │ ThermalStandard │        Alta │ 1.0 │            1 │
    +│ 2020-04-07T15:08:32.711 │ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │           DeviceStatus │ ThermalStandard │    Brighton │ 1.0 │            1 │
    +│ 2020-04-07T15:08:32.711 │ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │           DeviceStatus │ ThermalStandard │    Sundance │ 0.0 │            1 │
    +└─────────────────────────┴─────────────────────────────┴─────────────────────┴────────────────────────┴─────────────────┴─────────────┴─────┴──────────────┘
    diff --git a/v0.27.5/code_base_developer_guide/troubleshooting/index.html b/v0.27.5/code_base_developer_guide/troubleshooting/index.html new file mode 100644 index 0000000000..23791bad11 --- /dev/null +++ b/v0.27.5/code_base_developer_guide/troubleshooting/index.html @@ -0,0 +1,2 @@ + +Troubleshooting · PowerSimulations.jl diff --git a/v0.27.5/formulation_library/Branch/index.html b/v0.27.5/formulation_library/Branch/index.html new file mode 100644 index 0000000000..4b9ba33ab0 --- /dev/null +++ b/v0.27.5/formulation_library/Branch/index.html @@ -0,0 +1,2 @@ + +Branch · PowerSimulations.jl

    PowerSystems.Branch Formulations

    Valid DeviceModels for subtypes of Branch include the following:

    Valid DeviceModelDevice TypeFormulation
    DeviceModel(TModelHVDCLine, LossLessLine)TModelHVDCLineLossLessLine
    DeviceModel(PhaseShiftingTransformer, PhaseAngleControl)PhaseShiftingTransformerPhaseAngleControl
    DeviceModel(TwoTerminalHVDCLine, HVDCTwoTerminalDispatch)TwoTerminalHVDCLineHVDCTwoTerminalDispatch
    DeviceModel(TwoTerminalVSCDCLine, HVDCTwoTerminalDispatch)TwoTerminalVSCDCLineHVDCTwoTerminalDispatch
    DeviceModel(TwoTerminalHVDCLine, HVDCTwoTerminalLossless)TwoTerminalHVDCLineHVDCTwoTerminalLossless
    DeviceModel(TwoTerminalVSCDCLine, HVDCTwoTerminalLossless)TwoTerminalVSCDCLineHVDCTwoTerminalLossless
    DeviceModel(TwoTerminalHVDCLine, HVDCTwoTerminalUnbounded)TwoTerminalHVDCLineHVDCTwoTerminalUnbounded
    DeviceModel(TwoTerminalVSCDCLine, HVDCTwoTerminalUnbounded)TwoTerminalVSCDCLineHVDCTwoTerminalUnbounded
    DeviceModel(Line, StaticBranch)LineStaticBranch
    DeviceModel(MonitoredLine, StaticBranch)MonitoredLineStaticBranch
    DeviceModel(PhaseShiftingTransformer, StaticBranch)PhaseShiftingTransformerStaticBranch
    DeviceModel(TapTransformer, StaticBranch)TapTransformerStaticBranch
    DeviceModel(Transformer2W, StaticBranch)Transformer2WStaticBranch
    DeviceModel(TwoTerminalHVDCLine, StaticBranch)TwoTerminalHVDCLineStaticBranch
    DeviceModel(TwoTerminalVSCDCLine, StaticBranch)TwoTerminalVSCDCLineStaticBranch
    DeviceModel(Line, StaticBranchBounds)LineStaticBranchBounds
    DeviceModel(MonitoredLine, StaticBranchBounds)MonitoredLineStaticBranchBounds
    DeviceModel(PhaseShiftingTransformer, StaticBranchBounds)PhaseShiftingTransformerStaticBranchBounds
    DeviceModel(TapTransformer, StaticBranchBounds)TapTransformerStaticBranchBounds
    DeviceModel(Transformer2W, StaticBranchBounds)Transformer2WStaticBranchBounds
    DeviceModel(TwoTerminalHVDCLine, StaticBranchBounds)TwoTerminalHVDCLineStaticBranchBounds
    DeviceModel(TwoTerminalVSCDCLine, StaticBranchBounds)TwoTerminalVSCDCLineStaticBranchBounds
    DeviceModel(Line, StaticBranchUnbounded)LineStaticBranchUnbounded
    DeviceModel(MonitoredLine, StaticBranchUnbounded)MonitoredLineStaticBranchUnbounded
    DeviceModel(PhaseShiftingTransformer, StaticBranchUnbounded)PhaseShiftingTransformerStaticBranchUnbounded
    DeviceModel(TapTransformer, StaticBranchUnbounded)TapTransformerStaticBranchUnbounded
    DeviceModel(Transformer2W, StaticBranchUnbounded)Transformer2WStaticBranchUnbounded
    DeviceModel(TwoTerminalHVDCLine, StaticBranchUnbounded)TwoTerminalHVDCLineStaticBranchUnbounded
    DeviceModel(TwoTerminalVSCDCLine, StaticBranchUnbounded)TwoTerminalVSCDCLineStaticBranchUnbounded

    StaticBranch


    StaticBranchBounds


    StaticBranchUnbounded


    HVDCTwoTerminalLossless


    HVDCTwoTerminalDispatch


    HVDCTwoTerminalUnbounded

    diff --git a/v0.27.5/formulation_library/General/index.html b/v0.27.5/formulation_library/General/index.html new file mode 100644 index 0000000000..bf4632deb0 --- /dev/null +++ b/v0.27.5/formulation_library/General/index.html @@ -0,0 +1,8 @@ + +General · PowerSimulations.jl

    Formulations

    Modeling formulations are created by dispatching on abstract subtypes of PowerSimulations.AbstractDeviceFormulation

    FixedOutput

    Variables:

    No variables are created for DeviceModel(<:DeviceType, FixedOutput)

    Static Parameters:

    • ThermalGen:
      • $Pg^\text{max}$ = PowerSystems.get_max_active_power(device)
      • $Qg^\text{max}$ = PowerSystems.get_max_reactive_power(device)
    • Storage:
      • $Pg^\text{max}$ = PowerSystems.get_max_active_power(device)
      • $Qg^\text{max}$ = PowerSystems.get_max_reactive_power(device)

    Time Series Parameters:

    Device TypeParameterDefault Time Series Name
    RenewableGenReactivePowerTimeSeriesParametermax_active_power
    RenewableGenActivePowerTimeSeriesParametermax_active_power
    HydroGenReactivePowerTimeSeriesParametermax_active_power
    HydroGenActivePowerTimeSeriesParametermax_active_power
    ElectricLoadReactivePowerTimeSeriesParametermax_active_power
    ElectricLoadActivePowerTimeSeriesParametermax_active_power

    Objective:

    No objective terms are created for DeviceModel(<:DeviceType, FixedOutput)

    Expressions:

    Adds the active and reactive parameters listed for specific device types above to the respective active and reactive power balance expressions created by the selected Network Formulations

    Constraints:

    No constraints are created for DeviceModel(<:DeviceType, FixedOutput)


    VariableCost Options

    PowerSimulations can represent variable costs using a variety of different methods depending on the data available in each device. The following describes the objective function terms that are populated for each variable cost option.

    Scalar VariableCost

    variable_cost <: Float64: creates a fixed marginal cost term in the objective function

    \[\begin{aligned} +& \text{min} \sum_{t} C * G_t +\end{aligned}\]

    Polynomial VariableCost

    variable_cost <: Tuple{Float64, Float64}: creates a polynomial cost term in the objective function where

    • $C_g$=variable_cost[1]
    • $C_g^\prime$=variable_cost[2]

    \[\begin{aligned} +& \text{min} \sum_{t} C * G_t + C^\prime * G_t^2 +\end{aligned}\]

    Piecewise Linear VariableCost

    variable_cost <: Vector{Tuple{Float64, Float64}}: creates a piecewise linear cost term in the objective function

    TODO: add formulation

    ___

    StorageManagementCost

    Adds an objective function cost term according to:

    \[\begin{aligned} +& \text{min} \sum_{t} \quad [E^{surplus}_t * C^{penalty} - E^{shortage}_t * C^{value}] +\end{aligned}\]

    Impact of different cost configurations:

    The following table describes all possible configuration of the StorageManagementCost with the target constraint in hydro or storage device models. Cases 1(a) & 2(a) will have no impact of the models operations and the target constraint will be rendered useless. In most cases that have no energy target and a non-zero value for $C^{value}$, if this cost is too high ($C^{value} >> 0$) or too low ($C^{value} <<0$) can result in either the model holding on to stored energy till the end or the model not storing any energy in the device. This is caused by the fact that when energy target is zero, we have $E_t = - E^{shortage}_t$, and $- E^{shortage}_t * C^{value}$ in the objective function is replaced by $E_t * C^{value}$, thus resulting in $C^{value}$ to be seen as the cost of stored energy.

    CaseEnergy TargetEnergy Shortage CostEnergy Value / Energy Surplus costEffect
    Case 1(a)$\hat{E}=0$$C^{penalty}=0$$C^{value}=0$no change
    Case 1(b)$\hat{E}=0$$C^{penalty}=0$$C^{value}<0$penalty for storing energy
    Case 1(c)$\hat{E}=0$$C^{penalty}>0$$C^{value}=0$no penalties or incentives applied
    Case 1(d)$\hat{E}=0$$C^{penalty}=0$$C^{value}>0$incentive for storing energy
    Case 1(e)$\hat{E}=0$$C^{penalty}>0$$C^{value}<0$penalty for storing energy
    Case 1(f)$\hat{E}=0$$C^{penalty}>0$$C^{value}>0$incentive for storing energy
    Case 2(a)$\hat{E}>0$$C^{penalty}=0$$C^{value}=0$no change
    Case 2(b)$\hat{E}>0$$C^{penalty}=0$$C^{value}<0$penalty on energy storage in excess of target
    Case 2(c)$\hat{E}>0$$C^{penalty}>0$$C^{value}=0$penalty on energy storage short of target
    Case 2(d)$\hat{E}>0$$C^{penalty}=0$$C^{value}>0$incentive on excess energy
    Case 2(e)$\hat{E}>0$$C^{penalty}>0$$C^{value}<0$penalty on both excess/shortage of energy
    Case 2(f)$\hat{E}>0$$C^{penalty}>0$$C^{value}>0$penalty for shortage, incentive for excess energy
    diff --git a/v0.27.5/formulation_library/Load/index.html b/v0.27.5/formulation_library/Load/index.html new file mode 100644 index 0000000000..37320c2c05 --- /dev/null +++ b/v0.27.5/formulation_library/Load/index.html @@ -0,0 +1,10 @@ + +Load · PowerSimulations.jl

    PowerSystems.ElectricLoad Formulations

    Valid DeviceModels for subtypes of ElectricLoad include the following:

    Valid DeviceModelDevice TypeFormulation
    DeviceModel(InterruptiblePowerLoad, PowerLoadDispatch)InterruptiblePowerLoadPowerLoadDispatch
    DeviceModel(PowerLoad, PowerLoadDispatch)PowerLoadPowerLoadDispatch
    DeviceModel(PowerSystems.ExponentialLoad, PowerLoadDispatch)PowerSystems.ExponentialLoadPowerLoadDispatch
    DeviceModel(StandardLoad, PowerLoadDispatch)StandardLoadPowerLoadDispatch
    DeviceModel(InterruptiblePowerLoad, PowerLoadInterruption)InterruptiblePowerLoadPowerLoadInterruption
    DeviceModel(PowerLoad, PowerLoadInterruption)PowerLoadPowerLoadInterruption
    DeviceModel(PowerSystems.ExponentialLoad, PowerLoadInterruption)PowerSystems.ExponentialLoadPowerLoadInterruption
    DeviceModel(StandardLoad, PowerLoadInterruption)StandardLoadPowerLoadInterruption
    DeviceModel(InterruptiblePowerLoad, StaticPowerLoad)InterruptiblePowerLoadStaticPowerLoad
    DeviceModel(FixedAdmittance, StaticPowerLoad)FixedAdmittanceStaticPowerLoad
    DeviceModel(PowerSystems.SwitchedAdmittance, StaticPowerLoad)PowerSystems.SwitchedAdmittanceStaticPowerLoad
    DeviceModel(PowerLoad, StaticPowerLoad)PowerLoadStaticPowerLoad
    DeviceModel(PowerSystems.ExponentialLoad, StaticPowerLoad)PowerSystems.ExponentialLoadStaticPowerLoad
    DeviceModel(StandardLoad, StaticPowerLoad)StandardLoadStaticPowerLoad

    StaticPowerLoad

    Variables:

    No variables are created

    Time Series Parameters:

    ParameterDefault Time Series Name
    ReactivePowerTimeSeriesParametermax_active_power
    ActivePowerTimeSeriesParametermax_active_power

    Expressions:

    Subtracts the parameters listed above from the respective active and reactive power balance expressions created by the selected Network Formulations

    Constraints:

    No constraints are created


    PowerLoadInterruption

    Variables:

    Time Series Parameters:

    ParameterDefault Time Series Name
    ReactivePowerTimeSeriesParametermax_active_power
    ActivePowerTimeSeriesParametermax_active_power

    Objective:

    Creates an objective function term based on the VariableCost Options where the quantity term is defined as $Pg$.

    Expressions:

    • Adds $Pg$ and $Qg$ terms and to the respective active and reactive power balance expressions created by the selected Network Formulations
    • Subtracts the time series parameters listed above terms from the respective active and reactive power balance expressions created by the selected Network Formulations

    Constraints:

    $Pg$ and $Qg$ represent the "unserved" active and reactive power loads

    \[\begin{aligned} +& Pg_t \le ActivePowerTimeSeriesParameter_t\\ +& Pg_t - u_t ActivePowerTimeSeriesParameter_t \le 0 \\ +& Qg_t \le ReactivePowerTimeSeriesParameter_t\\ +& Qg_t - u_t ReactivePowerTimeSeriesParameter_t\le 0 +\end{aligned}\]


    PowerLoadDispatch

    Variables:

    Time Series Parameters:

    ParameterDefault Time Series Name
    ReactivePowerTimeSeriesParametermax_active_power
    ActivePowerTimeSeriesParametermax_active_power

    Objective:

    Creates an objective function term based on the VariableCost Options where the quantity term is defined as $Pg$.

    Expressions:

    • Adds $Pg$ and $Qg$ terms and to the respective active and reactive power balance expressions created by the selected Network Formulations
    • Subtracts the time series parameters listed above terms from the respective active and reactive power balance expressions created by the selected Network Formulations

    Constraints:

    $Pg$ and $Qg$ represent the "unserved" active and reactive power loads

    \[\begin{aligned} +& Pg_t \le ActivePowerTimeSeriesParameter_t\\ +& Qg_t \le ReactivePowerTimeSeriesParameter_t\\ +\end{aligned}\]

    diff --git a/v0.27.5/formulation_library/Network/index.html b/v0.27.5/formulation_library/Network/index.html new file mode 100644 index 0000000000..9e4dc84d40 --- /dev/null +++ b/v0.27.5/formulation_library/Network/index.html @@ -0,0 +1,2 @@ + +Network · PowerSimulations.jl diff --git a/v0.27.5/formulation_library/README/index.html b/v0.27.5/formulation_library/README/index.html new file mode 100644 index 0000000000..ddea3e87d8 --- /dev/null +++ b/v0.27.5/formulation_library/README/index.html @@ -0,0 +1,2 @@ + +Formulation documentation guide · PowerSimulations.jl

    Formulation documentation guide

    Formulation documentation should roughly follow the template established by RenewableGen.md

    Auto generated items

    • Valid DeviceModel table: just change the device category in the filter function
    • Time Series Parameters: just change the device category and formulation in the get_default_time_series_names method call

    Linked items

    • Formulations in the Valid DeviceModel table must have a docstring in src/core/formulations.jl
    • The Formulation in the @docs block must have a docstring in src/core/formulations.jl
    • The Variables must have docstrings in src/core/variables.jl
    • The Time Series Parameters must have docstrings in src/core/parameters.jl
    diff --git a/v0.27.5/formulation_library/RenewableGen/index.html b/v0.27.5/formulation_library/RenewableGen/index.html new file mode 100644 index 0000000000..bd38fe5fcf --- /dev/null +++ b/v0.27.5/formulation_library/RenewableGen/index.html @@ -0,0 +1,9 @@ + +Renewable Generation · PowerSimulations.jl

    PowerSystems.RenewableGen Formulations

    Valid DeviceModels for subtypes of RenewableGen include the following:

    Valid DeviceModelDevice TypeFormulation
    DeviceModel(RenewableDispatch, FixedOutput)RenewableDispatchFixedOutput
    DeviceModel(RenewableFix, FixedOutput)RenewableFixFixedOutput
    DeviceModel(RenewableDispatch, RenewableConstantPowerFactor)RenewableDispatchRenewableConstantPowerFactor
    DeviceModel(RenewableFix, RenewableConstantPowerFactor)RenewableFixRenewableConstantPowerFactor
    DeviceModel(RenewableDispatch, RenewableFullDispatch)RenewableDispatchRenewableFullDispatch
    DeviceModel(RenewableFix, RenewableFullDispatch)RenewableFixRenewableFullDispatch

    RenewableFullDispatch

    Variables:

    Static Parameters:

    • $Pg^\text{min}$ = PowerSystems.get_active_power_limits(device).min
    • $Qg^\text{min}$ = PowerSystems.get_reactive_power_limits(device).min
    • $Qg^\text{max}$ = PowerSystems.get_reactive_power_limits(device).max

    Time Series Parameters:

    ParameterDefault Time Series Name
    ReactivePowerTimeSeriesParametermax_active_power
    ActivePowerTimeSeriesParametermax_active_power

    Objective:

    Creates an objective function term based on the VariableCost Options where the quantity term is defined as $- Pg_t$ to incentivize generation from RenewableGen devices.

    Expressions:

    Adds $Pg$ and $Qg$ terms to the respective active and reactive power balance expressions created by the selected Network Formulations

    Constraints:

    \[\begin{aligned} +& Pg^\text{min} \le Pg_t \le ActivePowerTimeSeriesParameter_t \\ +& Qg^\text{min} \le Qg_t \le Qg^\text{max} +\end{aligned}\]


    RenewableConstantPowerFactor

    Variables:

    Static Parameters:

    • $Pg^\text{min}$ = PowerSystems.get_active_power_limits(device).min
    • $Qg^\text{min}$ = PowerSystems.get_reactive_power_limits(device).min
    • $Qg^\text{max}$ = PowerSystems.get_reactive_power_limits(device).max
    • $pf$ = PowerSystems.get_power_factor(device)

    Time Series Parameters:

    ParameterDefault Time Series Name
    ReactivePowerTimeSeriesParametermax_active_power
    ActivePowerTimeSeriesParametermax_active_power

    Objective:

    Creates an objective function term based on the VariableCost Options where the quantity term is defined as $- Pg_t$ to incentivize generation from RenewableGen devices.

    Expressions:

    Adds $Pg$ and $Qg$ terms to the respective active and reactive power balance expressions created by the selected Network Formulations

    Constraints:

    \[\begin{aligned} +& Pg^\text{min} \le Pg_t \le ActivePowerTimeSeriesParameter_t \\ +& Qg^\text{min} \le Qg_t \le Qg^\text{max} \\ +& Qg_t = pf * Pg_t +\end{aligned}\]

    diff --git a/v0.27.5/formulation_library/Service/index.html b/v0.27.5/formulation_library/Service/index.html new file mode 100644 index 0000000000..addb3c06ae --- /dev/null +++ b/v0.27.5/formulation_library/Service/index.html @@ -0,0 +1,2 @@ + +PowerSystems.Service Formulations · PowerSimulations.jl diff --git a/v0.27.5/formulation_library/ThermalGen/index.html b/v0.27.5/formulation_library/ThermalGen/index.html new file mode 100644 index 0000000000..978015a3bc --- /dev/null +++ b/v0.27.5/formulation_library/ThermalGen/index.html @@ -0,0 +1,2 @@ + +Thermal Generation · PowerSimulations.jl

    ThermalGen Formulations

    Valid DeviceModels for subtypes of ThermalGen include the following:

    Valid DeviceModelDevice TypeFormulation
    DeviceModel(ThermalMultiStart, FixedOutput)ThermalMultiStartFixedOutput
    DeviceModel(ThermalStandard, FixedOutput)ThermalStandardFixedOutput
    DeviceModel(ThermalMultiStart, ThermalBasicDispatch)ThermalMultiStartThermalBasicDispatch
    DeviceModel(ThermalStandard, ThermalBasicDispatch)ThermalStandardThermalBasicDispatch
    DeviceModel(ThermalMultiStart, ThermalCompactDispatch)ThermalMultiStartThermalCompactDispatch
    DeviceModel(ThermalStandard, ThermalCompactDispatch)ThermalStandardThermalCompactDispatch
    DeviceModel(ThermalMultiStart, ThermalDispatchNoMin)ThermalMultiStartThermalDispatchNoMin
    DeviceModel(ThermalStandard, ThermalDispatchNoMin)ThermalStandardThermalDispatchNoMin
    DeviceModel(ThermalMultiStart, ThermalStandardDispatch)ThermalMultiStartThermalStandardDispatch
    DeviceModel(ThermalStandard, ThermalStandardDispatch)ThermalStandardThermalStandardDispatch
    DeviceModel(ThermalMultiStart, ThermalBasicCompactUnitCommitment)ThermalMultiStartThermalBasicCompactUnitCommitment
    DeviceModel(ThermalStandard, ThermalBasicCompactUnitCommitment)ThermalStandardThermalBasicCompactUnitCommitment
    DeviceModel(ThermalMultiStart, ThermalCompactUnitCommitment)ThermalMultiStartThermalCompactUnitCommitment
    DeviceModel(ThermalStandard, ThermalCompactUnitCommitment)ThermalStandardThermalCompactUnitCommitment
    DeviceModel(ThermalMultiStart, ThermalMultiStartUnitCommitment)ThermalMultiStartThermalMultiStartUnitCommitment
    DeviceModel(ThermalMultiStart, ThermalBasicUnitCommitment)ThermalMultiStartThermalBasicUnitCommitment
    DeviceModel(ThermalStandard, ThermalBasicUnitCommitment)ThermalStandardThermalBasicUnitCommitment
    DeviceModel(ThermalMultiStart, ThermalStandardUnitCommitment)ThermalMultiStartThermalStandardUnitCommitment
    DeviceModel(ThermalStandard, ThermalStandardUnitCommitment)ThermalStandardThermalStandardUnitCommitment

    ThermalBasicDispatch

    TODO


    ThermalCompactDispatch

    TODO


    ThermalDispatchNoMin

    TODO


    ThermalStandardDispatch

    TODO


    ThermalBasicCompactUnitCommitment

    TODO


    ThermalCompactUnitCommitment

    TODO


    ThermalMultiStartUnitCommitment

    TODO


    ThermalBasicUnitCommitment

    TODO


    ThermalStandardUnitCommitment

    TODO


    diff --git a/v0.27.5/get_test_data.jl b/v0.27.5/get_test_data.jl new file mode 100644 index 0000000000..a664aa53dc --- /dev/null +++ b/v0.27.5/get_test_data.jl @@ -0,0 +1,40 @@ +using Cbc +using PowerSimulations +using PowerSystems +using DataStructures +using InfrastructureSystems +const IS = InfrastructureSystems +const PSI = PowerSimulations +const PSY = PowerSystems + +include("../../../test/test_utils/get_test_data.jl") + +abstract type TestOpProblem <: PSI.DefaultDecisionProblem end + +system = build_c_sys5_re(; add_reserves = true) +solver = optimizer_with_attributes(Cbc.Optimizer) + +devices = Dict{Symbol, DeviceModel}( + :Generators => DeviceModel(ThermalStandard, ThermalBasicDispatch), + :Loads => DeviceModel(PowerLoad, StaticPowerLoad), +) +branches = Dict{Symbol, DeviceModel}( + :L => DeviceModel(Line, StaticLine), + :T => DeviceModel(Transformer2W, StaticBranch), + :TT => DeviceModel(TapTransformer, StaticBranch), +); +services = Dict{Symbol, ServiceModel}(); + +template = PSI.ProblemTemplate(CopperPlatePowerModel, devices, branches, services); + +operation_problem = PSI.DecisionModel(TestOpProblem, template, system; optimizer = solver); + +set_services_template!( + operation_problem, + Dict( + :Reserve => ServiceModel(VariableReserve{ReserveUp}, RangeReserve), + :Down_Reserve => ServiceModel(VariableReserve{ReserveDown}, RangeReserve), + ), +) + +op_results = solve!(operation_problem) diff --git a/v0.27.5/index.html b/v0.27.5/index.html new file mode 100644 index 0000000000..086c4ceb29 --- /dev/null +++ b/v0.27.5/index.html @@ -0,0 +1,2 @@ + +Welcome Page · PowerSimulations.jl

    PowerSimulations.jl

    Overview

    PowerSimulations.jl is a power system operations simulation tool developed as a flexible and open source software for quasi-static power systems simulations including Production Cost Models. PowerSimulations.jl tackles the issues of developing a simulation model in a modular way providing tools for the formulation of decision models and emulation models that can be solved independently or in an interconnected fashion.

    PowerSimulations.jl supports the workflows to develop simulations by separating the development of operations models and simulation models.

    • Operation Models: Optimization model used to find the solution of an operation problem.
    • Simulations Models: Defined the requirements to find solutions to a sequence of operation problems in a way that resembles the procedures followed by operators.

    The most common Simulation Model is the solution of a Unit Commitment and Economic Dispatch sequence of problems. This model is used in commercial Production Cost Modeling tools, but it has a limited scope of analysis.

    How the documentation is structured

    PowerSimulations.jl documentation and code are organized according to the needs of different users depending on their skillset and requirements. In broad terms there are three categories:

    • Modeler: Users that want to solve an operations problem or run a simulation using the existing models in PowerSimulations.jl. For instance, answer questions about the change in operation costs in future fuel mixes. Check the formulations library page to choose a modeling strategy that fits your needs.

    • Model Developer: Users that want to develop custom models and workflows for the simulation of a power system operation. For instance, study the impacts of an stochastic optimization problem over a deterministic.

    • Code Base Developers: Users that want to add new core functionalities or fix bugs in the core capabilities of PowerSimulations.jl.

    PowerSimulations.jl is an active project under development, and we welcome your feedback, suggestions, and bug reports.

    Note: PowerSimulations.jl uses the data model implemented in PowerSystems.jl to construct optimization models. In most cases, you need to add PowerSystems.jl to your scripts.

    Installation

    The latest stable release of PowerSimulations can be installed using the Julia package manager with

    ] add PowerSimulations

    For the current development version, "checkout" this package with

    ] add PowerSimulations#main

    An appropriate optimization solver is required for running PowerSimulations models. Refer to JuMP.jl solver's page to select the most appropriate for the application of interest.


    PowerSystems has been developed as part of the Scalable Integrated Infrastructure Planning (SIIP) initiative at the U.S. Department of Energy's National Renewable Energy Laboratory (NREL).

    diff --git a/v0.27.5/model_developer_guide/structure_of_operation_problem/index.html b/v0.27.5/model_developer_guide/structure_of_operation_problem/index.html new file mode 100644 index 0000000000..363781bd50 --- /dev/null +++ b/v0.27.5/model_developer_guide/structure_of_operation_problem/index.html @@ -0,0 +1,26 @@ + +Operation Problem Structure · PowerSimulations.jl

    Structure of an operations problem model

    In most cases operation problem models are optimization models. Although in PowerSimulations.jl it is possible to define arbitrary problems that can reflect heuristic decision rules, this is not the common case. This page focuses on explaining the structure of operations problems that employ an optimization problem and solver.

    The first aspect to consider when thinking about developing a model compatible with PowerSimulations.jl is that although we support all of JuMP.jl objects, you need to employ anonymous constraints and variables in JuMP and register the constraints, variables and other optimization objects into PowerSimulations.jl's optimization container. Otherwise the features to use your problem in the simulation like the coordination with other problems and post processing won't work.

    Info

    The requirements for the simulation of Power Systems operations are more strict than solving an optimization problem once with just JuMP.jl. The requirements imposed by PowerSimulations.jl to integrate your models in a simulation are designed to help with other complex operations that go beyond JuMP.jl scope.

    Warning

    All the code in this page is considered "pseudo-code". Copy-paste will likely not work out of the box. You need to develop the internals of the functions correctly for the examples below to work.

    Registering a variable in the model

    To register a variable in the model, the developer must first allocate the container into the optimization container and then populate it. For example, it require start the build function as follows:

    Info

    We recommend calling import PowerSimulations and defining the constant CONST PSI = PowerSimulations to make it easier to read the code and determine which package is responsible for defining the functions.

        function PSI.build_model!(model::PSI.DecisionModel{MyCustomModel})
    +        container = PSI.get_optimization_container(model)
    +        PSI.set_time_steps!(container, 1:24)
    +
    +        # Create the container for the variable
    +        variable = PSI.add_variable_container!(
    +            container,
    +            PSI.ActivePowerVariable(), # <- This variable is defined in PowerSimulations but the user can define their own
    +            PSY.ThermalGeneration, # <- Device type for the variable. Can be from PSY or custom defined
    +            devices_names, # <- First container dimension
    +            time_steps, # <- Second container dimension
    +        )
    +
    +        # Iterate over the devices and time to store the JuMP variables into the container.
    +        for t in time_steps, d in devices
    +            name = PSY.get_name(d)
    +            variable[name, t] = JuMP.@variable(get_jump_model(container))
    +            # It is possible to use PSY getter functions to retrieve data from the generators
    +            # Any other variable property can be specified inside this loop.
    +            JuMP.set_upper_bound(variable[name, t], UB_DATA) # <- Optional
    +            JuMP.set_lower_bound(variable[name, t], LB_DATA) # <- Optional
    +        end
    +
    +    return
    +    end
    diff --git a/v0.27.5/model_developer_guide/troubleshooting/index.html b/v0.27.5/model_developer_guide/troubleshooting/index.html new file mode 100644 index 0000000000..9197cf3bcf --- /dev/null +++ b/v0.27.5/model_developer_guide/troubleshooting/index.html @@ -0,0 +1,2 @@ + +Troubleshooting · PowerSimulations.jl diff --git a/v0.27.5/modeler_guide/debugging_infeasible_models/index.html b/v0.27.5/modeler_guide/debugging_infeasible_models/index.html new file mode 100644 index 0000000000..b47315daa7 --- /dev/null +++ b/v0.27.5/modeler_guide/debugging_infeasible_models/index.html @@ -0,0 +1,2 @@ + +Debugging infeasible models · PowerSimulations.jl diff --git a/v0.27.5/modeler_guide/definitions/index.html b/v0.27.5/modeler_guide/definitions/index.html new file mode 100644 index 0000000000..a3e8d64e5e --- /dev/null +++ b/v0.27.5/modeler_guide/definitions/index.html @@ -0,0 +1,2 @@ + +Definitions · PowerSimulations.jl

    Definitions

    D

    • Decision Problem: A decision problem calculates the desired system operation based on forecasts of uncertain inputs and information about the state of the system. The output of a decision problem represents the policies used to drive the set-points of the system's devices, like generators or switches, and depends on the purpose of the problem. See the Decision Model Tutorial to learn more about solving individual problems.

    • Device Formulation: The model of a device that is incorporated into a large system optimization models. For instance, the storage device model used inside of a Unit Commitment (UC) problem. A device model needs to follow some requirements to be integrated into operation problems.

    E

    • Emulation Problem: An emulation problem is used to mimic the system's behavior subject to an incoming decision and the realization of a forecasted inputs. The solution of the emulator produces outputs representative of the system performance when operating subject the policies resulting from the decision models.

    H

    I

    • Interval: The amount of time between updates to the decision problem. For instance, Day-Ahead problems usually have a 24-hour intervals and Real-Time problems have 5-minute intervals. Check the time Time Series Data Section in PowerSystems.jl

    R

    • Resolution: The amount of time between timesteps in a simulation. For instance 1-hour or 5-minutes. In Julia these are defined using the syntax Hour(1) and Minute(5). Check the time Time Series Data Section in PowerSystems.jl
    diff --git a/v0.27.5/modeler_guide/logging/index.html b/v0.27.5/modeler_guide/logging/index.html new file mode 100644 index 0000000000..96ab60da49 --- /dev/null +++ b/v0.27.5/modeler_guide/logging/index.html @@ -0,0 +1,11 @@ + +Logging · PowerSimulations.jl

    Logging

    PowerSimulations.jl will output many log messages when building systems and running simulations. You may want to customize what gets logged to the console and, optionally, a file.

    By default all log messages of level Logging.Info or higher will get displayed to the console. When you run a simulation a simulation-specific logger will take over and log its messages to a file in the logs directory in the simulation output directory. When finished it will relinquish control back to the global logger.

    Configuring the global logger

    To configure the global logger in a Jupyter Notebook or REPL you may configure your own logger with the Julia Logging standard library or use the convenience function provided by PowerSimulations. This example will log messages of level Logging.Error to console and Logging.Info and higher to the file power-simulations.log in the current directory.

    import Logging
    +using PowerSimulations
    +logger = configure_logging(
    +    console_level = Logging.Error,
    +    file_level = Logging.Info,
    +    filename = "power-simulations.log"
    +)

    Configuring the simulation logger

    You can configure the logging level used by the simulation logger when you call build!(simulation). Here is an example that increases logging verbosity:

    import Logging
    +using PowerSimulations
    +simulation = Simulation(...)
    +build!(simulation, console_level = Logging.Info, file_level = Logging.Debug)

    The log file will be located at <your-output-path>/<simulation-name>/<run-output-dir>/logs/simulation.log.

    Solver logs

    You can configure logging for the solver you use. Refer to the solver documentation. PowerSimulations does not redirect or intercept prints to stdout or stderr from other libraries.

    Recorder events

    PowerSimulations uses the InfrastructureSystems.Recorder to store simulation events in a log file. Refer to this link for more information.

    diff --git a/v0.27.5/modeler_guide/modeling_faq/index.html b/v0.27.5/modeler_guide/modeling_faq/index.html new file mode 100644 index 0000000000..f413511b4c --- /dev/null +++ b/v0.27.5/modeler_guide/modeling_faq/index.html @@ -0,0 +1,2 @@ + +Modeling FAQ · PowerSimulations.jl

    Modeling FAQ

    How do I reduce the amount of print on my REPL?

    The print to the REPL is controlled with the logging. Check the Logging documentation page to see how to reduce the print out

    How do I print the optimizer logs to see the solution process?

    When specifying the DecisionModel or EmulationModel pass the keyword print_optimizer_log = true

    diff --git a/v0.27.5/modeler_guide/parallel_simulations/index.html b/v0.27.5/modeler_guide/parallel_simulations/index.html new file mode 100644 index 0000000000..2ecbfa88b9 --- /dev/null +++ b/v0.27.5/modeler_guide/parallel_simulations/index.html @@ -0,0 +1,105 @@ + +Parallel Simulations · PowerSimulations.jl

    Parallel Simulations

    This section contains instructions to:

    Run a Simulation in Parallel on a local computer

    This page describes how to split a simulation into partitions, run each partition in parallel, and then join the results.

    Setup

    Create a Julia script to build and run simulations. It must meet the requirements below. A full example is in the PowerSimulations repository in test/run_partitioned_simulation.jl.

    • Call using PowerSimulations.

    • Implement a build function that matches the signature below. It must construct a Simulation, call build!, and then return the Simulation instance. It must throw an exception if the build fails.

    function build_simulation(
    +    output_dir::AbstractString,
    +    simulation_name::AbstractString,
    +    partitions::SimulationPartitions,
    +    index::Union{Nothing, Integer}=nothing,
    +)

    Here is example code to construct the Simulation with these parameters:

        sim = Simulation(
    +        name=simulation_name,
    +        steps=partitions.num_steps,
    +        models=models,
    +        sequence=sequence,
    +        simulation_folder=output_dir,
    +    )
    +    status = build!(sim; partitions=partitions, index=index, serialize=isnothing(index))
    +    if status != PSI.BuildStatus.BUILT
    +        error("Failed to build simulation: status=$status")
    +    end
    • Implement an execute function that matches the signature below. It must throw an exception if the execute fails.
    function execute_simulation(sim, args...; kwargs...)
    +    status = execute!(sim)
    +    if status != PSI.RunStatus.SUCCESSFUL
    +        error("Simulation failed to execute: status=$status")
    +    end
    +end

    Execution

    After loading your script, call the function run_parallel_simulation as shown below.

    This example splits a year-long simulation into weekly partitions for a total of 53 individual jobs and then runs them four at a time.

    julia> include("my_simulation.jl")
    +julia> run_parallel_simulation(
    +        build_simulation,
    +        execute_simulation,
    +        script="my_simulation.jl",
    +        output_dir="my_simulation_output",
    +        name="my_simulation",
    +        num_steps=365,
    +        period=7,
    +        num_overlap_steps=1,
    +        num_parallel_processes=4,
    +        exeflags="--project=<path-to-your-julia-environment>",
    +    )

    The final results will be in ./my_simulation_otuput/my_simulation

    Note the log files and results for each partition are located in ./my_simulation_otuput/my_simulation/simulation_partitions

    Run a Simulation in Parallel on an HPC

    This page describes how to split a simulation into partitions, run each partition in parallel on HPC compute nodes, and then join the results.

    These steps can be used on a local computer or any HPC supported by the submission software. Some steps may be specific to NREL's HPC Eagle cluster.

    Note: Some instructions are preliminary and will change if functionality is moved to a new Julia package.

    Setup

    1. Create a conda environment and install the Python package NREL-jade: https://nrel.github.io/jade/installation.html. The rest of this page assumes that the environment is called jade.
    2. Activate the environment with conda activate jade.
    3. Locate the path to that conda environment. It will likely be ~/.conda-envs/jade or ~/.conda/envs/jade.
    4. Load the Julia environment that you use to run simulations. Add the packages Conda and PyCall.
    5. Setup Conda to use the existing jade environment by running these commands:
    julia> run(`conda create -n conda_jl python conda`)
    +julia> ENV["CONDA_JL_HOME"] = joinpath(ENV["HOME"], ".conda-envs", "jade")  # change this to your path
    +pkg> build Conda
    1. Copy the code below into a Julia file called configure_parallel_simulation.jl. This is an interface to Jade through PyCall. It will be used to create a Jade configuration. (It may eventually be moved to a separate package.)
    function configure_parallel_simulation(
    +    script::AbstractString,
    +    num_steps::Integer,
    +    num_period_steps::Integer;
    +    num_overlap_steps::Integer=0,
    +    project_path=nothing,
    +    simulation_name="simulation",
    +    config_file="config.json",
    +    force=false,
    +)
    +    partitions = SimulationPartitions(num_steps, num_period_steps, num_overlap_steps)
    +    jgc = pyimport("jade.extensions.generic_command")
    +    julia_cmd = isnothing(project_path) ? "julia" : "julia --project=$project_path"
    +    setup_command = "$julia_cmd $script setup --simulation-name=$simulation_name " *
    +    "--num-steps=$num_steps --num-period-steps=$num_period_steps " *
    +    "--num-overlap-steps=$num_overlap_steps"
    +    teardown_command = "$julia_cmd $script join --simulation-name=$simulation_name"
    +    config = jgc.GenericCommandConfiguration(
    +        setup_command=setup_command,
    +        teardown_command=teardown_command,
    +    )
    +
    +    for i in 1:get_num_partitions(partitions)
    +        cmd = "$julia_cmd $script execute --simulation-name=$simulation_name --index=$i"
    +        job = jgc.GenericCommandParameters(command=cmd, name="execute-$i")
    +        config.add_job(job)
    +    end
    +
    +    config.dump(config_file, indent=2)
    +    println("Created Jade configuration in $config_file. " *
    +            "Run 'jade submit-jobs [options] $config_file' to execute them.")
    +end
    1. Create a Julia script to build and run simulations. It must meet the requirements below. A full example is in the PowerSimulations repository in test/run_partitioned_simulation.jl.
    • Call using PowerSimulations.

    • Implement a build function that matches the signature below. It must construct a Simulation, call build!, and then return the Simulation instance. It must throw an exception if the build fails.

    function build_simulation(
    +    output_dir::AbstractString,
    +    simulation_name::AbstractString,
    +    partitions::SimulationPartitions,
    +    index::Union{Nothing, Integer}=nothing,
    +)

    Here is example code to construct the Simulation with these parameters:

        sim = Simulation(
    +        name=simulation_name,
    +        steps=partitions.num_steps,
    +        models=models,
    +        sequence=sequence,
    +        simulation_folder=output_dir,
    +    )
    +    status = build!(sim; partitions=partitions, index=index, serialize=isnothing(index))
    +    if status != PSI.BuildStatus.BUILT
    +        error("Failed to build simulation: status=$status")
    +    end
    • Implement an execute function that matches the signature below. It must throw an exception if the execute fails.
    function execute_simulation(sim, args...; kwargs...)
    +    status = execute!(sim)
    +    if status != PSI.RunStatus.SUCCESSFUL
    +        error("Simulation failed to execute: status=$status")
    +    end
    +end
    • Make the script runnable as a CLI command by including the following code at the bottom of the

    file.

    function main()
    +    process_simulation_partition_cli_args(build_simulation, execute_simulation, ARGS...)
    +end
    +
    +if abspath(PROGRAM_FILE) == @__FILE__
    +    main()
    +end

    Execution

    1. Create a Jade configuration that defines the partitioned simulation jobs. Load your Julia environment.

      This example splits a year-long simulation into weekly partitions for a total of 53 individual jobs.

    julia> include("configure_parallel_simulation.jl")
    +julia> num_steps = 365
    +julia> period = 7
    +julia> num_overlap_steps = 1
    +julia> configure_parallel_simulation(
    +    "my_simulation.jl",  # this is your build/execute script
    +    num_steps,
    +    period,
    +    num_overlap_steps=1,
    +    project_path=".",  # This optionally specifies the Julia project environment to load.
    +)
    +Created Jade configuration in config.json. Run 'jade submit-jobs [options] config.json' to execute them.

    Exit Julia.

    1. View the configuration for accuracy.
    $ jade config show config.json
    1. Start an interactive session on a debug node. Do not submit the jobs on a login node! The submission step will run a full build of the simulation and that may consume too many CPU and memory resources for the login node.
    $ salloc -t 01:00:00 -N1 --account=<your-account> --partition=debug
    1. Follow the instructions at https://nrel.github.io/jade/tutorial.html to submit the jobs. The example below will configure Jade to run each partition on its own compute node. Depending on the compute and memory constraints of your simulation, you may be able to pack more jobs on each node.

      Adjust the walltime as necessary.

    $ jade config hpc -c hpc_config.toml -t slurm  --walltime=04:00:00 -a <your-account>
    +$ jade submit-jobs config.json --per-node-batch-size=1 -o output

    If you are unsure about how much memory and CPU resources your simulation consumes, add these options:

    $ jade submit-jobs config.json --per-node-batch-size=1 -o output --resource-monitor-type periodic --resource-monitor-interval 3

    Jade will create HTML plots of the resource utilization in output/stats. You may be able to customize --per-node-batch-size and --num-processes to finish the simulations more quickly.

    1. Jade will run a final command to join the simulation partitions into one unified file. You can load the results as you normally would.
    julia> results = SimulationResults("<output-dir>/job-outputs/<simulation-name>")

    Note the log files and results for each partition are located in <output-dir>/job-outputs/<simulation-name>/simulation_partitions

    diff --git a/v0.27.5/modeler_guide/problem_templates/index.html b/v0.27.5/modeler_guide/problem_templates/index.html new file mode 100644 index 0000000000..db9d1dc0dd --- /dev/null +++ b/v0.27.5/modeler_guide/problem_templates/index.html @@ -0,0 +1,352 @@ + +Operations ProblemTemplates · PowerSimulations.jl

    Operations ProblemTemplates

    Templates are used to specify the modeling properties of the devices and network that are going to he used to specify a problem. A ProblemTemplate is just a collection of DeviceModels that allows the user to specify the formulations of each set of devices (by device type) independently so that the modeler can adjust the level of detail according to the question of interest and the available data. For more information about valid DeviceModels and their mathematical representations, check out the Formulation Library.

    Building a ProblemTemplate

    You can build a ProblemTemplate by adding a NetworkModel, DeviceModels, and ServiceModels.

    template = ProblemTemplate()
    +set_network_model!(template, NetworkModel(CopperPlatePowerModel))
    +set_device_model!(template, PowerLoad, StaticPowerLoad)
    +set_device_model!(template, ThermalStandard, ThermalBasicUnitCommitment)
    +set_service_model!(template, VariableReserve{ReserveUp}, RangeReserve)

    Default Templates

    PowerSimulations.jl provides default templates for common operation problems. You can retrieve a default template and modify it according to your requirements. Currently supported default templates are:

    PowerSimulations.template_economic_dispatchFunction
    template_economic_dispatch(; kwargs...) -> ProblemTemplate
    +
    template_economic_dispatch(; kwargs...)

    Creates a ProblemTemplate with default DeviceModels for an Economic Dispatch problem.

    Example

    template = templateeconomicdispatch()

    
    +# Accepted Key Words
    +- `network::Type{<:PM.AbstractPowerModel}` : override default network model settings
    +- `devices::Vector{DeviceModel}` : override default `DeviceModel` settings
    +- `services::Vector{ServiceModel}` : override default `ServiceModel` settings
    source
    template_economic_dispatch()
    + + + + + + + + + + + + + + + + + + + +
    Network Model
    Network ModelCopperPlatePowerModel
    Slacksfalse
    PTDFfalse
    DualsNone
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Device Models
    Device TypeFormulationSlacks
    ThermalStandardThermalBasicDispatchfalse
    PowerLoadStaticPowerLoadfalse
    InterruptiblePowerLoadPowerLoadInterruptionfalse
    RenewableFixFixedOutputfalse
    RenewableDispatchRenewableFullDispatchfalse
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Branch Models
    Branch TypeFormulationSlacks
    LineStaticBranchfalse
    TapTransformerStaticBranchfalse
    Transformer2WStaticBranchfalse
    TwoTerminalHVDCLineHVDCTwoTerminalDispatchfalse
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Service Models
    Service TypeFormulationSlacksAggregated Model
    VariableReserve{ReserveUp}RangeReservefalsetrue
    VariableReserve{ReserveDown}RangeReservefalsetrue
    +
    PowerSimulations.template_unit_commitmentFunction
    template_unit_commitment(; kwargs...) -> ProblemTemplate
    +
    template_unit_commitment(; kwargs...)

    Creates a ProblemTemplate with default DeviceModels for a Unit Commitment problem.

    Example

    template = templateunitcommitment()

    
    +# Accepted Key Words
    +- `network::Type{<:PM.AbstractPowerModel}` : override default network model settings
    +- `devices::Vector{DeviceModel}` : override default `DeviceModel` settings
    +- `services::Vector{ServiceModel}` : override default `ServiceModel` settings
    source
    template_unit_commitment()
    + + + + + + + + + + + + + + + + + + + +
    Network Model
    Network ModelCopperPlatePowerModel
    Slacksfalse
    PTDFfalse
    DualsNone
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Device Models
    Device TypeFormulationSlacks
    ThermalStandardThermalBasicUnitCommitmentfalse
    PowerLoadStaticPowerLoadfalse
    InterruptiblePowerLoadPowerLoadInterruptionfalse
    RenewableFixFixedOutputfalse
    RenewableDispatchRenewableFullDispatchfalse
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Branch Models
    Branch TypeFormulationSlacks
    LineStaticBranchfalse
    TapTransformerStaticBranchfalse
    Transformer2WStaticBranchfalse
    TwoTerminalHVDCLineHVDCTwoTerminalDispatchfalse
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Service Models
    Service TypeFormulationSlacksAggregated Model
    VariableReserve{ReserveUp}RangeReservefalsetrue
    VariableReserve{ReserveDown}RangeReservefalsetrue
    +
    PowerSimulations.template_agc_reserve_deploymentFunction
    template_agc_reserve_deployment(; kwargs...)
    +
    template_agc_reserve_deployment(; kwargs...)

    Creates a ProblemTemplate with default DeviceModels for an AGC Reserve Deployment Problem. This model doesn't support customization

    Example

    template = agcreservedeployment()

    source
    template_agc_reserve_deployment()
    + + + + + + + + + + + + + + + + + + + +
    Network Model
    Network ModelAreaBalancePowerModel
    Slacksfalse
    PTDFfalse
    DualsNone
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Device Models
    Device TypeFormulationSlacks
    RegulationDevice{HydroDispatch}ReserveLimitedRegulationfalse
    ThermalStandardFixedOutputfalse
    PowerLoadStaticPowerLoadfalse
    HydroDispatchFixedOutputfalse
    RenewableFixFixedOutputfalse
    RenewableDispatchFixedOutputfalse
    RegulationDevice{HydroEnergyReservoir}ReserveLimitedRegulationfalse
    RegulationDevice{ThermalStandard}DeviceLimitedRegulationfalse
    HydroEnergyReservoirFixedOutputfalse
    + + + + + + + + + + + + + + + + + + + +
    Service Models
    Service TypeFormulationSlacksAggregated Model
    AGCPIDSmoothACEfalsetrue
    +
    diff --git a/v0.27.5/modeler_guide/psi_structure/index.html b/v0.27.5/modeler_guide/psi_structure/index.html new file mode 100644 index 0000000000..a4bedd097c --- /dev/null +++ b/v0.27.5/modeler_guide/psi_structure/index.html @@ -0,0 +1,2 @@ + +PowerSimulations.jl Modeling Structure · PowerSimulations.jl

    PowerSimulations.jl Modeling Structure

    PowerSimulations enables the simulation of a sequence of power systems optimization problems and provides user control over each aspect of the simulation configuration. Specifically:

    What is the difference between a Model and a Problem?

    A "Problem" is an abstract mathematical description of how to represent power system behavior, whereas a "Model" is a concrete representation of a "Problem" applied to a dataset. I.e. once a Problem is populated with data describing all the loads, generators, lines, etc., it becomes a Model.

    diff --git a/v0.27.5/modeler_guide/running_a_simulation/index.html b/v0.27.5/modeler_guide/running_a_simulation/index.html new file mode 100644 index 0000000000..6d58270749 --- /dev/null +++ b/v0.27.5/modeler_guide/running_a_simulation/index.html @@ -0,0 +1,2 @@ + +Simulation · PowerSimulations.jl

    Simulation

    Always try to solve the operations problem first before putting together the simulation

    It is not uncommon that when trying to solve a complex simulation the resulting models are infeasible. This situation can be the result of many factors like the input data, the incorrect specification of the initial conditions for models with time dependencies or a poorly specified model. Therefore, it's highly recommended to run and analyze an Operations Problems that reflect the problems that will be included in a simulation prior to executing a simulation.

    Check out the Operations Problem Tutorial

    Feedforward

    TODO

    Sequencing

    In a typical simulation pipeline, we want to connect daily (24-hours) day-ahead unit commitment problems, with multiple economic dispatch problems. Usually, our day-ahead unit commitment problem will have an hourly (1-hour) resolution, while the economic dispatch will have a 5-minute resolution.

    Depending on your problem, it is common to use a 2-day look-ahead for unit commitment problems, so in this case, the Day-Ahead problem will have: resolution = Hour(1) with interval = Hour(24) and horizon = 48. In the case of the economic dispatch problem, it is common to use a look-ahead of two hours. Thus, the Real-Time problem will have: resolution = Minute(5), with interval = Minute(5) (we only store the first operating point) and horizon = 24 (24 time steps of 5 minutes are 120 minutes, that is 2 hours).

    diff --git a/v0.27.5/modeler_guide/simulation_recorder/index.html b/v0.27.5/modeler_guide/simulation_recorder/index.html new file mode 100644 index 0000000000..7a83cf8504 --- /dev/null +++ b/v0.27.5/modeler_guide/simulation_recorder/index.html @@ -0,0 +1,43 @@ + +Simulation Recorder · PowerSimulations.jl

    Simulation Recorder

    PowerSimulations.jl provides the ability to record structured data as events during a simulation. These events can be post-processed to help debug problems.

    By default only SimulationStepEvent and ProblemExecutionEvent are recorded. Here is an example.

    Suppose a simulation is run in the directory ./output.

    Assume that setup commands have been run:

    using PowerSimulations
    +const PSI = PowerSimulations

    Note that for all functions below you can optionally specify a function to filter events. The function must accept the event type and return true or false.

    Show all events of type PSI.SimulationStepEvent

    julia> show_simulation_events(PSI.SimulationStepEvent, "./output/aggregation/1")
    +┌─────────────────────┬─────────────────────┬──────┬────────┐
    +│                name │     simulation_time │ step │ status │
    +├─────────────────────┼─────────────────────┼──────┼────────┤
    +│ SimulationStepEvent │ 2024-01-01T00:00:00 │    1 │  start │
    +│ SimulationStepEvent │ 2024-01-01T23:00:00 │    1 │   done │
    +│ SimulationStepEvent │ 2024-01-01T23:00:00 │    2 │  start │
    +│ SimulationStepEvent │ 2024-01-02T23:00:00 │    2 │   done │
    +└─────────────────────┴─────────────────────┴──────┴────────┘

    Show events of type PSI.ProblemExecutionEvent for a specific step and stage.

    show_simulation_events(
    +    PSI.ProblemExecutionEvent,
    +    "./output/aggregation/1",
    +    x -> x.step == 1 && x.stage == 2 && x.status == "start"
    +)
    +┌──────────────────────┬─────────────────────┬──────┬───────┬────────┐
    +│                 name │     simulation_time │ step │ stage │ status │
    +├──────────────────────┼─────────────────────┼──────┼───────┼────────┤
    +│ ProblemExecutionEvent │ 2024-01-01T00:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T00:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T01:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T02:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T03:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T04:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T05:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T06:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T07:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T08:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T09:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T10:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T11:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T12:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T13:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T14:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T15:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T16:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T17:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T18:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T19:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T20:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T21:00:00 │    1 │     2 │  start │
    +│ ProblemExecutionEvent │ 2024-01-01T22:00:00 │    1 │     2 │  start │
    +└──────────────────────┴─────────────────────┴──────┴───────┴────────┘
    diff --git a/v0.27.5/modeler_guide/tips_and_tricks/index.html b/v0.27.5/modeler_guide/tips_and_tricks/index.html new file mode 100644 index 0000000000..d51518ad65 --- /dev/null +++ b/v0.27.5/modeler_guide/tips_and_tricks/index.html @@ -0,0 +1,2 @@ + +Tips and tricks · PowerSimulations.jl diff --git a/v0.27.5/quick_start_guide/index.html b/v0.27.5/quick_start_guide/index.html new file mode 100644 index 0000000000..de985db383 --- /dev/null +++ b/v0.27.5/quick_start_guide/index.html @@ -0,0 +1,2 @@ + +Quick Start Guide · PowerSimulations.jl

    Quick Start Guide

    Tip

    If you need to develop a dataset for a simulation check the PowerSystems.jl Tutorials on how to parse data and attach time series

    • Tutorial: If you are eager to run your first simulation visit the Solve a Day Ahead Market Scheduling Problem using PowerSimulations.jl tutorial
    diff --git a/v0.27.5/search/index.html b/v0.27.5/search/index.html new file mode 100644 index 0000000000..ed6eeadeb9 --- /dev/null +++ b/v0.27.5/search/index.html @@ -0,0 +1,2 @@ + +Search · PowerSimulations.jl diff --git a/v0.27.5/search_index.js b/v0.27.5/search_index.js new file mode 100644 index 0000000000..4458e88095 --- /dev/null +++ b/v0.27.5/search_index.js @@ -0,0 +1,3 @@ +var documenterSearchIndex = {"docs": +[{"location":"code_base_developer_guide/extending_powersimulations/#Extending-Source-Code-Functionalities","page":"Extending Source Code Functionalities","title":"Extending Source Code Functionalities","text":"","category":"section"},{"location":"code_base_developer_guide/extending_powersimulations/#Enable-other-recorder-events","page":"Extending Source Code Functionalities","title":"Enable other recorder events","text":"","category":"section"},{"location":"code_base_developer_guide/extending_powersimulations/","page":"Extending Source Code Functionalities","title":"Extending Source Code Functionalities","text":"Other types of recorder events can be enabled with a possible performance impact. To do this pass in the specific recorder names to be enabled when you call build.","category":"page"},{"location":"code_base_developer_guide/extending_powersimulations/","page":"Extending Source Code Functionalities","title":"Extending Source Code Functionalities","text":"sim = Simulation(...)\nrecorders = [:execution]\nbuild!(sim; recorders = recorders)\nexecute!(sim)","category":"page"},{"location":"code_base_developer_guide/extending_powersimulations/","page":"Extending Source Code Functionalities","title":"Extending Source Code Functionalities","text":"Now we can examine InitialConditionUpdateEvents for specific steps and stages.","category":"page"},{"location":"code_base_developer_guide/extending_powersimulations/","page":"Extending Source Code Functionalities","title":"Extending Source Code Functionalities","text":"show_simulation_events(\n PSI.InitialConditionUpdateEvent,\n \"./output/aggregation/1\",\n x -> x.initial_condition_type == \"DeviceStatus\";\n step = 2,\n stage = 1\n)\n┌─────────────────────────────┬─────────────────────┬────────────────────────┬─────────────────┬─────────────┬─────┬──────────────┐\n│ name │ simulation_time │ initial_condition_type │ device_type │ device_name │ val │ stage_number │\n├─────────────────────────────┼─────────────────────┼────────────────────────┼─────────────────┼─────────────┼─────┼──────────────┤\n│ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │ DeviceStatus │ ThermalStandard │ Solitude │ 0.0 │ 1 │\n│ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │ DeviceStatus │ ThermalStandard │ Park City │ 1.0 │ 1 │\n│ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │ DeviceStatus │ ThermalStandard │ Alta │ 1.0 │ 1 │\n│ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │ DeviceStatus │ ThermalStandard │ Brighton │ 1.0 │ 1 │\n│ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │ DeviceStatus │ ThermalStandard │ Sundance │ 0.0 │ 1 │\n└─────────────────────────────┴─────────────────────┴────────────────────────┴─────────────────┴─────────────┴─────┴──────────────┘","category":"page"},{"location":"code_base_developer_guide/extending_powersimulations/#Show-the-wall-time-with-your-events","page":"Extending Source Code Functionalities","title":"Show the wall time with your events","text":"","category":"section"},{"location":"code_base_developer_guide/extending_powersimulations/","page":"Extending Source Code Functionalities","title":"Extending Source Code Functionalities","text":"Sometimes you might want to see how the events line up with the wall time.","category":"page"},{"location":"code_base_developer_guide/extending_powersimulations/","page":"Extending Source Code Functionalities","title":"Extending Source Code Functionalities","text":"show_simulation_events(\n PSI.InitialConditionUpdateEvent,\n \"./output/aggregation/1\",\n x -> x.initial_condition_type == \"DeviceStatus\";\n step = 2,\n stage = 1,\n wall_time = true\n)\n┌─────────────────────────┬─────────────────────────────┬─────────────────────┬────────────────────────┬─────────────────┬─────────────┬─────┬──────────────┐\n│ timestamp │ name │ simulation_time │ initial_condition_type │ device_type │ device_name │ val │ stage_number │\n├─────────────────────────┼─────────────────────────────┼─────────────────────┼────────────────────────┼─────────────────┼─────────────┼─────┼──────────────┤\n│ 2020-04-07T15:08:32.711 │ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │ DeviceStatus │ ThermalStandard │ Solitude │ 0.0 │ 1 │\n│ 2020-04-07T15:08:32.711 │ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │ DeviceStatus │ ThermalStandard │ Park City │ 1.0 │ 1 │\n│ 2020-04-07T15:08:32.711 │ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │ DeviceStatus │ ThermalStandard │ Alta │ 1.0 │ 1 │\n│ 2020-04-07T15:08:32.711 │ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │ DeviceStatus │ ThermalStandard │ Brighton │ 1.0 │ 1 │\n│ 2020-04-07T15:08:32.711 │ InitialConditionUpdateEvent │ 2024-01-02T00:00:00 │ DeviceStatus │ ThermalStandard │ Sundance │ 0.0 │ 1 │\n└─────────────────────────┴─────────────────────────────┴─────────────────────┴────────────────────────┴─────────────────┴─────────────┴─────┴──────────────┘","category":"page"},{"location":"modeler_guide/simulation_recorder/#Simulation-Recorder","page":"Simulation Recorder","title":"Simulation Recorder","text":"","category":"section"},{"location":"modeler_guide/simulation_recorder/","page":"Simulation Recorder","title":"Simulation Recorder","text":"PowerSimulations.jl provides the ability to record structured data as events during a simulation. These events can be post-processed to help debug problems.","category":"page"},{"location":"modeler_guide/simulation_recorder/","page":"Simulation Recorder","title":"Simulation Recorder","text":"By default only SimulationStepEvent and ProblemExecutionEvent are recorded. Here is an example.","category":"page"},{"location":"modeler_guide/simulation_recorder/","page":"Simulation Recorder","title":"Simulation Recorder","text":"Suppose a simulation is run in the directory ./output.","category":"page"},{"location":"modeler_guide/simulation_recorder/","page":"Simulation Recorder","title":"Simulation Recorder","text":"Assume that setup commands have been run:","category":"page"},{"location":"modeler_guide/simulation_recorder/","page":"Simulation Recorder","title":"Simulation Recorder","text":"using PowerSimulations\nconst PSI = PowerSimulations","category":"page"},{"location":"modeler_guide/simulation_recorder/","page":"Simulation Recorder","title":"Simulation Recorder","text":"Note that for all functions below you can optionally specify a function to filter events. The function must accept the event type and return true or false.","category":"page"},{"location":"modeler_guide/simulation_recorder/#Show-all-events-of-type-PSI.SimulationStepEvent","page":"Simulation Recorder","title":"Show all events of type PSI.SimulationStepEvent","text":"","category":"section"},{"location":"modeler_guide/simulation_recorder/","page":"Simulation Recorder","title":"Simulation Recorder","text":"julia> show_simulation_events(PSI.SimulationStepEvent, \"./output/aggregation/1\")\n┌─────────────────────┬─────────────────────┬──────┬────────┐\n│ name │ simulation_time │ step │ status │\n├─────────────────────┼─────────────────────┼──────┼────────┤\n│ SimulationStepEvent │ 2024-01-01T00:00:00 │ 1 │ start │\n│ SimulationStepEvent │ 2024-01-01T23:00:00 │ 1 │ done │\n│ SimulationStepEvent │ 2024-01-01T23:00:00 │ 2 │ start │\n│ SimulationStepEvent │ 2024-01-02T23:00:00 │ 2 │ done │\n└─────────────────────┴─────────────────────┴──────┴────────┘","category":"page"},{"location":"modeler_guide/simulation_recorder/#Show-events-of-type-PSI.ProblemExecutionEvent-for-a-specific-step-and-stage.","page":"Simulation Recorder","title":"Show events of type PSI.ProblemExecutionEvent for a specific step and stage.","text":"","category":"section"},{"location":"modeler_guide/simulation_recorder/","page":"Simulation Recorder","title":"Simulation Recorder","text":"show_simulation_events(\n PSI.ProblemExecutionEvent,\n \"./output/aggregation/1\",\n x -> x.step == 1 && x.stage == 2 && x.status == \"start\"\n)\n┌──────────────────────┬─────────────────────┬──────┬───────┬────────┐\n│ name │ simulation_time │ step │ stage │ status │\n├──────────────────────┼─────────────────────┼──────┼───────┼────────┤\n│ ProblemExecutionEvent │ 2024-01-01T00:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T00:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T01:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T02:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T03:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T04:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T05:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T06:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T07:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T08:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T09:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T10:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T11:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T12:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T13:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T14:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T15:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T16:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T17:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T18:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T19:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T20:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T21:00:00 │ 1 │ 2 │ start │\n│ ProblemExecutionEvent │ 2024-01-01T22:00:00 │ 1 │ 2 │ start │\n└──────────────────────┴─────────────────────┴──────┴───────┴────────┘","category":"page"},{"location":"modeler_guide/parallel_simulations/#Parallel-Simulations","page":"Parallel Simulations","title":"Parallel Simulations","text":"","category":"section"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"This section contains instructions to:","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Run a Simulation in Parallel on a local computer\nRun a Simulation in Parallel on an HPC","category":"page"},{"location":"modeler_guide/parallel_simulations/#Run-a-Simulation-in-Parallel-on-a-local-computer","page":"Parallel Simulations","title":"Run a Simulation in Parallel on a local computer","text":"","category":"section"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"This page describes how to split a simulation into partitions, run each partition in parallel, and then join the results.","category":"page"},{"location":"modeler_guide/parallel_simulations/#Setup","page":"Parallel Simulations","title":"Setup","text":"","category":"section"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Create a Julia script to build and run simulations. It must meet the requirements below. A full example is in the PowerSimulations repository in test/run_partitioned_simulation.jl.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Call using PowerSimulations.\nImplement a build function that matches the signature below. It must construct a Simulation, call build!, and then return the Simulation instance. It must throw an exception if the build fails.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"function build_simulation(\n output_dir::AbstractString,\n simulation_name::AbstractString,\n partitions::SimulationPartitions,\n index::Union{Nothing, Integer}=nothing,\n)","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Here is example code to construct the Simulation with these parameters:","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":" sim = Simulation(\n name=simulation_name,\n steps=partitions.num_steps,\n models=models,\n sequence=sequence,\n simulation_folder=output_dir,\n )\n status = build!(sim; partitions=partitions, index=index, serialize=isnothing(index))\n if status != PSI.BuildStatus.BUILT\n error(\"Failed to build simulation: status=$status\")\n end","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Implement an execute function that matches the signature below. It must throw an exception if the execute fails.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"function execute_simulation(sim, args...; kwargs...)\n status = execute!(sim)\n if status != PSI.RunStatus.SUCCESSFUL\n error(\"Simulation failed to execute: status=$status\")\n end\nend","category":"page"},{"location":"modeler_guide/parallel_simulations/#Execution","page":"Parallel Simulations","title":"Execution","text":"","category":"section"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"After loading your script, call the function run_parallel_simulation as shown below.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"This example splits a year-long simulation into weekly partitions for a total of 53 individual jobs and then runs them four at a time.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"julia> include(\"my_simulation.jl\")\njulia> run_parallel_simulation(\n build_simulation,\n execute_simulation,\n script=\"my_simulation.jl\",\n output_dir=\"my_simulation_output\",\n name=\"my_simulation\",\n num_steps=365,\n period=7,\n num_overlap_steps=1,\n num_parallel_processes=4,\n exeflags=\"--project=\",\n )","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"The final results will be in ./my_simulation_otuput/my_simulation","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Note the log files and results for each partition are located in ./my_simulation_otuput/my_simulation/simulation_partitions","category":"page"},{"location":"modeler_guide/parallel_simulations/#Run-a-Simulation-in-Parallel-on-an-HPC","page":"Parallel Simulations","title":"Run a Simulation in Parallel on an HPC","text":"","category":"section"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"This page describes how to split a simulation into partitions, run each partition in parallel on HPC compute nodes, and then join the results.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"These steps can be used on a local computer or any HPC supported by the submission software. Some steps may be specific to NREL's HPC Eagle cluster.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Note: Some instructions are preliminary and will change if functionality is moved to a new Julia package.","category":"page"},{"location":"modeler_guide/parallel_simulations/#Setup-2","page":"Parallel Simulations","title":"Setup","text":"","category":"section"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Create a conda environment and install the Python package NREL-jade: https://nrel.github.io/jade/installation.html. The rest of this page assumes that the environment is called jade.\nActivate the environment with conda activate jade.\nLocate the path to that conda environment. It will likely be ~/.conda-envs/jade or ~/.conda/envs/jade.\nLoad the Julia environment that you use to run simulations. Add the packages Conda and PyCall.\nSetup Conda to use the existing jade environment by running these commands:","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"julia> run(`conda create -n conda_jl python conda`)\njulia> ENV[\"CONDA_JL_HOME\"] = joinpath(ENV[\"HOME\"], \".conda-envs\", \"jade\") # change this to your path\npkg> build Conda","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Copy the code below into a Julia file called configure_parallel_simulation.jl. This is an interface to Jade through PyCall. It will be used to create a Jade configuration. (It may eventually be moved to a separate package.)","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"function configure_parallel_simulation(\n script::AbstractString,\n num_steps::Integer,\n num_period_steps::Integer;\n num_overlap_steps::Integer=0,\n project_path=nothing,\n simulation_name=\"simulation\",\n config_file=\"config.json\",\n force=false,\n)\n partitions = SimulationPartitions(num_steps, num_period_steps, num_overlap_steps)\n jgc = pyimport(\"jade.extensions.generic_command\")\n julia_cmd = isnothing(project_path) ? \"julia\" : \"julia --project=$project_path\"\n setup_command = \"$julia_cmd $script setup --simulation-name=$simulation_name \" *\n \"--num-steps=$num_steps --num-period-steps=$num_period_steps \" *\n \"--num-overlap-steps=$num_overlap_steps\"\n teardown_command = \"$julia_cmd $script join --simulation-name=$simulation_name\"\n config = jgc.GenericCommandConfiguration(\n setup_command=setup_command,\n teardown_command=teardown_command,\n )\n\n for i in 1:get_num_partitions(partitions)\n cmd = \"$julia_cmd $script execute --simulation-name=$simulation_name --index=$i\"\n job = jgc.GenericCommandParameters(command=cmd, name=\"execute-$i\")\n config.add_job(job)\n end\n\n config.dump(config_file, indent=2)\n println(\"Created Jade configuration in $config_file. \" *\n \"Run 'jade submit-jobs [options] $config_file' to execute them.\")\nend","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Create a Julia script to build and run simulations. It must meet the requirements below. A full example is in the PowerSimulations repository in test/run_partitioned_simulation.jl.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Call using PowerSimulations.\nImplement a build function that matches the signature below. It must construct a Simulation, call build!, and then return the Simulation instance. It must throw an exception if the build fails.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"function build_simulation(\n output_dir::AbstractString,\n simulation_name::AbstractString,\n partitions::SimulationPartitions,\n index::Union{Nothing, Integer}=nothing,\n)","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Here is example code to construct the Simulation with these parameters:","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":" sim = Simulation(\n name=simulation_name,\n steps=partitions.num_steps,\n models=models,\n sequence=sequence,\n simulation_folder=output_dir,\n )\n status = build!(sim; partitions=partitions, index=index, serialize=isnothing(index))\n if status != PSI.BuildStatus.BUILT\n error(\"Failed to build simulation: status=$status\")\n end","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Implement an execute function that matches the signature below. It must throw an exception if the execute fails.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"function execute_simulation(sim, args...; kwargs...)\n status = execute!(sim)\n if status != PSI.RunStatus.SUCCESSFUL\n error(\"Simulation failed to execute: status=$status\")\n end\nend","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Make the script runnable as a CLI command by including the following code at the bottom of the","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"file.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"function main()\n process_simulation_partition_cli_args(build_simulation, execute_simulation, ARGS...)\nend\n\nif abspath(PROGRAM_FILE) == @__FILE__\n main()\nend","category":"page"},{"location":"modeler_guide/parallel_simulations/#Execution-2","page":"Parallel Simulations","title":"Execution","text":"","category":"section"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Create a Jade configuration that defines the partitioned simulation jobs. Load your Julia environment.\nThis example splits a year-long simulation into weekly partitions for a total of 53 individual jobs.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"julia> include(\"configure_parallel_simulation.jl\")\njulia> num_steps = 365\njulia> period = 7\njulia> num_overlap_steps = 1\njulia> configure_parallel_simulation(\n \"my_simulation.jl\", # this is your build/execute script\n num_steps,\n period,\n num_overlap_steps=1,\n project_path=\".\", # This optionally specifies the Julia project environment to load.\n)\nCreated Jade configuration in config.json. Run 'jade submit-jobs [options] config.json' to execute them.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Exit Julia.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"View the configuration for accuracy.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"$ jade config show config.json","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Start an interactive session on a debug node. Do not submit the jobs on a login node! The submission step will run a full build of the simulation and that may consume too many CPU and memory resources for the login node.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"$ salloc -t 01:00:00 -N1 --account= --partition=debug","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Follow the instructions at https://nrel.github.io/jade/tutorial.html to submit the jobs. The example below will configure Jade to run each partition on its own compute node. Depending on the compute and memory constraints of your simulation, you may be able to pack more jobs on each node.\nAdjust the walltime as necessary.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"$ jade config hpc -c hpc_config.toml -t slurm --walltime=04:00:00 -a \n$ jade submit-jobs config.json --per-node-batch-size=1 -o output","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"If you are unsure about how much memory and CPU resources your simulation consumes, add these options:","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"$ jade submit-jobs config.json --per-node-batch-size=1 -o output --resource-monitor-type periodic --resource-monitor-interval 3","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Jade will create HTML plots of the resource utilization in output/stats. You may be able to customize --per-node-batch-size and --num-processes to finish the simulations more quickly.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Jade will run a final command to join the simulation partitions into one unified file. You can load the results as you normally would.","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"julia> results = SimulationResults(\"/job-outputs/\")","category":"page"},{"location":"modeler_guide/parallel_simulations/","page":"Parallel Simulations","title":"Parallel Simulations","text":"Note the log files and results for each partition are located in /job-outputs//simulation_partitions","category":"page"},{"location":"quick_start_guide/#Quick-Start-Guide","page":"Quick Start Guide","title":"Quick Start Guide","text":"","category":"section"},{"location":"quick_start_guide/","page":"Quick Start Guide","title":"Quick Start Guide","text":"Julia: If this is your first time using Julia visit our Introduction to Julia and the official Getting started with Julia.\nPackage Installation: If you want to install packages check the Package Manager instructions, or you can refer to the PowerSimulations installation instructions.\nPowerSystems: PowerSystems.jl manages the data and is a fundamental dependency of PowerSimulations.jl. Check the PowerSystems.jl Basics Tutorial and PowerSystems.jl documentation to understand how the inputs to the models are organized.\nDataset Library: If you don't have a data set to start using PowerSimulations.jl check the test systems provided in PowerSystemCaseBuilder.jl","category":"page"},{"location":"quick_start_guide/","page":"Quick Start Guide","title":"Quick Start Guide","text":"tip: Tip\nIf you need to develop a dataset for a simulation check the PowerSystems.jl Tutorials on how to parse data and attach time series","category":"page"},{"location":"quick_start_guide/","page":"Quick Start Guide","title":"Quick Start Guide","text":"Tutorial: If you are eager to run your first simulation visit the Solve a Day Ahead Market Scheduling Problem using PowerSimulations.jl tutorial","category":"page"},{"location":"code_base_developer_guide/troubleshooting/#Troubleshooting-code-development","page":"Troubleshooting","title":"Troubleshooting code development","text":"","category":"section"},{"location":"tutorials/decision_problem/#op_problem_tutorial","page":"Single-step Problem","title":"Operations problems with PowerSimulations.jl","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"Originally Contributed by: Clayton Barrows","category":"page"},{"location":"tutorials/decision_problem/#Introduction","page":"Single-step Problem","title":"Introduction","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"PowerSimulations.jl supports the construction and solution of optimal power system scheduling problems (Operations Problems). Operations problems form the fundamental building blocks for sequential simulations. This example shows how to specify and customize a the mathematics that will be applied to the data with an ProblemTemplate, build and execute an DecisionModel, and access the results.","category":"page"},{"location":"tutorials/decision_problem/#Load-Packages","page":"Single-step Problem","title":"Load Packages","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"using PowerSystems\nusing PowerSimulations\nusing HydroPowerSimulations\nusing PowerSystemCaseBuilder\nusing HiGHS # solver","category":"page"},{"location":"tutorials/decision_problem/#Data","page":"Single-step Problem","title":"Data","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"note: Note\nPowerSystemCaseBuilder.jl is a helper library that makes it easier to reproduce examples in the documentation and tutorials. Normally you would pass your local files to create the system data instead of calling the function build_system. For more details visit PowerSystemCaseBuilder Documentation","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"sys = build_system(PSISystems, \"modified_RTS_GMLC_DA_sys\")","category":"page"},{"location":"tutorials/decision_problem/#Define-a-problem-specification-with-an-ProblemTemplate","page":"Single-step Problem","title":"Define a problem specification with an ProblemTemplate","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"You can create an empty template with:","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"template_uc = ProblemTemplate()","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"Now, you can add a DeviceModel for each device type to create an assignment between PowerSystems device types and the subtypes of AbstractDeviceFormulation. PowerSimulations has a variety of different AbstractDeviceFormulation subtypes that can be applied to different PowerSystems device types, each dispatching to different methods for populating optimization problem objectives, variables, and constraints. Documentation on the formulation options for various devices can be found in the formulation library docs","category":"page"},{"location":"tutorials/decision_problem/#Branch-Formulations","page":"Single-step Problem","title":"Branch Formulations","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"Here is an example of relatively standard branch formulations. Other formulations allow for selective enforcement of transmission limits and greater control on transformer settings.","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"set_device_model!(template_uc, Line, StaticBranch)\nset_device_model!(template_uc, Transformer2W, StaticBranch)\nset_device_model!(template_uc, TapTransformer, StaticBranch)","category":"page"},{"location":"tutorials/decision_problem/#Injection-Device-Formulations","page":"Single-step Problem","title":"Injection Device Formulations","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"Here we define template entries for all devices that inject or withdraw power on the network. For each device type, we can define a distinct AbstractDeviceFormulation. In this case, we're defining a basic unit commitment model for thermal generators, curtailable renewable generators, and fixed dispatch (net-load reduction) formulations for HydroDispatch and RenewableFix devices.","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"set_device_model!(template_uc, ThermalStandard, ThermalStandardUnitCommitment)\nset_device_model!(template_uc, RenewableDispatch, RenewableFullDispatch)\nset_device_model!(template_uc, PowerLoad, StaticPowerLoad)\nset_device_model!(template_uc, HydroDispatch, HydroDispatchRunOfRiver)\nset_device_model!(template_uc, RenewableFix, FixedOutput)","category":"page"},{"location":"tutorials/decision_problem/#Service-Formulations","page":"Single-step Problem","title":"Service Formulations","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"We have two VariableReserve types, parameterized by their direction. So, similar to creating DeviceModels, we can create ServiceModels. The primary difference being that DeviceModel objects define how constraints get created, while ServiceModel objects define how constraints get modified.","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"set_service_model!(template_uc, VariableReserve{ReserveUp}, RangeReserve)\nset_service_model!(template_uc, VariableReserve{ReserveDown}, RangeReserve)","category":"page"},{"location":"tutorials/decision_problem/#Network-Formulations","page":"Single-step Problem","title":"Network Formulations","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"Finally, we can define the transmission network specification that we'd like to model. For simplicity, we'll choose a copper plate formulation. But there are dozens of specifications available through an integration with PowerModels.jl. Note that many formulations will require appropriate data and may be computationally intractable","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"set_network_model!(template_uc, NetworkModel(CopperPlatePowerModel))","category":"page"},{"location":"tutorials/decision_problem/#DecisionModel","page":"Single-step Problem","title":"DecisionModel","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"Now that we have a System and an ProblemTemplate, we can put the two together to create an DecisionModel that we solve.","category":"page"},{"location":"tutorials/decision_problem/#Optimizer","page":"Single-step Problem","title":"Optimizer","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"It's most convenient to define an optimizer instance upfront and pass it into the DecisionModel constructor. For this example, we can use the free HiGHS solver with a relatively relaxed MIP gap (ratioGap) setting to improve speed.","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"solver = optimizer_with_attributes(HiGHS.Optimizer, \"mip_rel_gap\" => 0.5)","category":"page"},{"location":"tutorials/decision_problem/#Build-an-DecisionModel","page":"Single-step Problem","title":"Build an DecisionModel","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"The construction of an DecisionModel essentially applies an ProblemTemplate to System data to create a JuMP model.","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"problem = DecisionModel(template_uc, sys; optimizer = solver, horizon = 24)\nbuild!(problem, output_dir = mktempdir())","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"tip: Tip\nThe principal component of the DecisionModel is the JuMP model. But you can serialize to a file using the following command: serialize_optimization_model(problem, save_path)Keep in mind that if the setting \"storevariablenames\" is set to False then the file won't show the model's names.","category":"page"},{"location":"tutorials/decision_problem/#Solve-an-DecisionModel","page":"Single-step Problem","title":"Solve an DecisionModel","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"solve!(problem)","category":"page"},{"location":"tutorials/decision_problem/#Results-Inspection","page":"Single-step Problem","title":"Results Inspection","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"PowerSimulations collects the DecisionModel results into a ProblemResults struct:","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"res = ProblemResults(problem)","category":"page"},{"location":"tutorials/decision_problem/#Optimizer-Stats","page":"Single-step Problem","title":"Optimizer Stats","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"The optimizer summary is included","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"get_optimizer_stats(res)","category":"page"},{"location":"tutorials/decision_problem/#Objective-Function-Value","page":"Single-step Problem","title":"Objective Function Value","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"get_objective_value(res)","category":"page"},{"location":"tutorials/decision_problem/#Variable,-Parameter,-Auxillary-Variable,-Dual,-and-Expression-Values","page":"Single-step Problem","title":"Variable, Parameter, Auxillary Variable, Dual, and Expression Values","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"The solution value data frames for variables, parameters, auxillary variables, duals and expressions can be accessed using the read_ methods:","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"read_variables(res)","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"Or, you can read a single parameter values for parameters that exist in the results.","category":"page"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"list_parameter_names(res)\nread_parameter(res, \"ActivePowerTimeSeriesParameter__RenewableDispatch\")","category":"page"},{"location":"tutorials/decision_problem/#Plotting","page":"Single-step Problem","title":"Plotting","text":"","category":"section"},{"location":"tutorials/decision_problem/","page":"Single-step Problem","title":"Single-step Problem","text":"Take a look at the plotting capabilities in PowerGraphics.jl","category":"page"},{"location":"modeler_guide/tips_and_tricks/#Tips-and-tricks","page":"Tips and tricks","title":"Tips and tricks","text":"","category":"section"},{"location":"formulation_library/ThermalGen/#ThermalGen-Formulations","page":"Thermal Generation","title":"ThermalGen Formulations","text":"","category":"section"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"Valid DeviceModels for subtypes of ThermalGen include the following:","category":"page"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"using PowerSimulations\nusing PowerSystems\nusing DataFrames\nusing Latexify\ncombos = PowerSimulations.generate_device_formulation_combinations()\nfilter!(x -> x[\"device_type\"] <: ThermalGen, combos)\ncombo_table = DataFrame(\n \"Valid DeviceModel\" => [\"`DeviceModel($(c[\"device_type\"]), $(c[\"formulation\"]))`\" for c in combos],\n \"Device Type\" => [\"[$(c[\"device_type\"])](https://nrel-Sienna.github.io/PowerSystems.jl/stable/model_library/generated_$(c[\"device_type\"])/)\" for c in combos],\n \"Formulation\" => [\"[$(c[\"formulation\"])](@ref)\" for c in combos],\n )\nmdtable(combo_table, latex = false)","category":"page"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"","category":"page"},{"location":"formulation_library/ThermalGen/#ThermalBasicDispatch","page":"Thermal Generation","title":"ThermalBasicDispatch","text":"","category":"section"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"ThermalBasicDispatch","category":"page"},{"location":"formulation_library/ThermalGen/#PowerSimulations.ThermalBasicDispatch","page":"Thermal Generation","title":"PowerSimulations.ThermalBasicDispatch","text":"Formulation type to enable basic dispatch without any intertemporal (ramp) constraints\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"TODO","category":"page"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"","category":"page"},{"location":"formulation_library/ThermalGen/#ThermalCompactDispatch","page":"Thermal Generation","title":"ThermalCompactDispatch","text":"","category":"section"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"ThermalCompactDispatch","category":"page"},{"location":"formulation_library/ThermalGen/#PowerSimulations.ThermalCompactDispatch","page":"Thermal Generation","title":"PowerSimulations.ThermalCompactDispatch","text":"Formulation type to enable thermal compact dispatch\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"TODO","category":"page"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"","category":"page"},{"location":"formulation_library/ThermalGen/#ThermalDispatchNoMin","page":"Thermal Generation","title":"ThermalDispatchNoMin","text":"","category":"section"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"ThermalDispatchNoMin","category":"page"},{"location":"formulation_library/ThermalGen/#PowerSimulations.ThermalDispatchNoMin","page":"Thermal Generation","title":"PowerSimulations.ThermalDispatchNoMin","text":"Formulation type to enable basic dispatch without any intertemporal constraints and relaxed minimum generation. may not work with PWL cost definitions\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"TODO","category":"page"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"","category":"page"},{"location":"formulation_library/ThermalGen/#ThermalStandardDispatch","page":"Thermal Generation","title":"ThermalStandardDispatch","text":"","category":"section"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"ThermalStandardDispatch","category":"page"},{"location":"formulation_library/ThermalGen/#PowerSimulations.ThermalStandardDispatch","page":"Thermal Generation","title":"PowerSimulations.ThermalStandardDispatch","text":"Formulation type to enable standard dispatch with a range and enforce intertemporal ramp constraints\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"TODO","category":"page"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"","category":"page"},{"location":"formulation_library/ThermalGen/#ThermalBasicCompactUnitCommitment","page":"Thermal Generation","title":"ThermalBasicCompactUnitCommitment","text":"","category":"section"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"ThermalBasicCompactUnitCommitment","category":"page"},{"location":"formulation_library/ThermalGen/#PowerSimulations.ThermalBasicCompactUnitCommitment","page":"Thermal Generation","title":"PowerSimulations.ThermalBasicCompactUnitCommitment","text":"Formulation type to enable thermal compact commitment without intertemporal (ramp, min on/off time) constraints\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"TODO","category":"page"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"","category":"page"},{"location":"formulation_library/ThermalGen/#ThermalCompactUnitCommitment","page":"Thermal Generation","title":"ThermalCompactUnitCommitment","text":"","category":"section"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"ThermalCompactUnitCommitment","category":"page"},{"location":"formulation_library/ThermalGen/#PowerSimulations.ThermalCompactUnitCommitment","page":"Thermal Generation","title":"PowerSimulations.ThermalCompactUnitCommitment","text":"Formulation type to enable thermal compact commitment\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"TODO","category":"page"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"","category":"page"},{"location":"formulation_library/ThermalGen/#ThermalMultiStartUnitCommitment","page":"Thermal Generation","title":"ThermalMultiStartUnitCommitment","text":"","category":"section"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"ThermalMultiStartUnitCommitment","category":"page"},{"location":"formulation_library/ThermalGen/#PowerSimulations.ThermalMultiStartUnitCommitment","page":"Thermal Generation","title":"PowerSimulations.ThermalMultiStartUnitCommitment","text":"Formulation type to enable pg-lib commitment formulation with startup/shutdown profiles\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"TODO","category":"page"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"","category":"page"},{"location":"formulation_library/ThermalGen/#ThermalBasicUnitCommitment","page":"Thermal Generation","title":"ThermalBasicUnitCommitment","text":"","category":"section"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"ThermalBasicUnitCommitment","category":"page"},{"location":"formulation_library/ThermalGen/#PowerSimulations.ThermalBasicUnitCommitment","page":"Thermal Generation","title":"PowerSimulations.ThermalBasicUnitCommitment","text":"Formulation type to enable basic unit commitment representation without any intertemporal (ramp, min on/off time) constraints\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"TODO","category":"page"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"","category":"page"},{"location":"formulation_library/ThermalGen/#ThermalStandardUnitCommitment","page":"Thermal Generation","title":"ThermalStandardUnitCommitment","text":"","category":"section"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"ThermalStandardUnitCommitment","category":"page"},{"location":"formulation_library/ThermalGen/#PowerSimulations.ThermalStandardUnitCommitment","page":"Thermal Generation","title":"PowerSimulations.ThermalStandardUnitCommitment","text":"Formulation type to enable standard unit commitment with intertemporal constraints and simplified startup profiles\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"TODO","category":"page"},{"location":"formulation_library/ThermalGen/","page":"Thermal Generation","title":"Thermal Generation","text":"","category":"page"},{"location":"tutorials/adding_new_problem_model/#Adding-an-Operations-Problem-Model","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"","category":"section"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"This tutorial will show how to create a custom decision problem model. These cases are the ones where the user want to solve a fully specified problem. Some examples of custom decision models include:","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"Solving a custom Security Constrained Unit Commitment Problem\nSolving a market agent utility maximization Problem. See examples of this functionality in HybridSystemsSimulations.jl","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"The tutorial follows the usual steps for operational model building. First, build the decision model in isolation and second, integrate it into a simulation. In most cases there will be more than one way of achieving the same objective when it comes to implementing the model. This guide shows a general set of steps and requirements but it is by no means an exhaustive and detailed guide on developing custom decision models.","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"warning: Warning\nAll the code in this tutorial is considered \"pseudo-code\". Copy-paste will likely not work out of the box. You need to develop the internals of the functions correctly for the examples below to work.","category":"page"},{"location":"tutorials/adding_new_problem_model/#General-Rules","page":"Adding an Operations Problem Model","title":"General Rules","text":"","category":"section"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"As a general rule you need to understand Julia's terminology such as multiple dispatch, parametric structs and method overloading, among others. Developing custom models for an operational simulation is a highly technical task and requires skilled development. This tutorial also requires good understanding of PowerSystems.jl data structures and features which are covered in the tutorials section of PowerSystems.jl documentation.","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"Finally, developing a custom model decision model that will employ an optimization model under the hood requires understanding JuMP.jl.","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"Need to employ anonymous constraints and variables in JuMP","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"and register the constraints, variables and other optimization objects into PowerSimulations.jl's optimization container. Otherwise the features to use your problem in the simulation like the coordination with other problems and post processing won't work. More on this in the section How to develop your build_model! function below.","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"Implement the required methods for your custom decision models. In some cases it will be possible to re-use some of the other methods that exist in PowerSimulations to make life easier for variable addition and constraint creation but this is not required.","category":"page"},{"location":"tutorials/adding_new_problem_model/#Decision-Problem","page":"Adding an Operations Problem Model","title":"Decision Problem","text":"","category":"section"},{"location":"tutorials/adding_new_problem_model/#Step-1:-Define-a-Custom-Decision-Problem","page":"Adding an Operations Problem Model","title":"Step 1: Define a Custom Decision Problem","text":"","category":"section"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"Define a decision problem struct as a subtype of PowerSimulations.DecisionProblem. This requirement will enable a lot of the underlying functionality that relies on multiple dispatch. DecisionProblems are used to parameterize the behavior of DecisionModel objects which are just containers for the parameters, references and the optimization problem.","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"It is possible to define a Custom Decision Problem that gives the user full control over the build, solve and execution process since it imposes less requirements on the developer. However, with less requirements there are also less checks and validations performed inside of PowerSimulations which might lead to unexpected errors","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"struct MyCustomDecisionProblem <: PSI.DecisionProblem end","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"Alternatively, it is possible to define a Custom Decision Problem subtyping from DefaultDecisionProblem which imposes more requirements and structure onto the developer but employs more checks and validations in the process. Be aware that this route will decrease the flexibility of what can be done inside the custom model.","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"struct MyCustomDecisionProblem <: PSI.DefaultDecisionProblem end","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"Once the problem type is defined, initialize the decision model container with your custom decision problem passing the solver and some of the settings you need for the solution of the problem. For custom problems some of the settings need manual implementation by the developer. Settings availability is also dependent on wether you choose to subtype from PSI.DecisionProblem or PSI.DefaultDecisionProblem","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"my_model = DecisionModel{MyCustomDecisionProblem}(\n sys;\n name = \"MyModel\",\n optimizer = optimizer_with_attributes(HiGHS.Optimizer),\n optimizer_solve_log_print = true,\n)","category":"page"},{"location":"tutorials/adding_new_problem_model/#Mandatory-Method-Implementations","page":"Adding an Operations Problem Model","title":"Mandatory Method Implementations","text":"","category":"section"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"build_model!: This method build the JuMP optimization model.","category":"page"},{"location":"tutorials/adding_new_problem_model/#Optional-Method-Overloads","page":"Adding an Operations Problem Model","title":"Optional Method Overloads","text":"","category":"section"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"These methods can be defined optionally for your problem. By default for problems subtyped from DecisionProblem these checks are not executed. If the problems are subtyped from DefaultDecisionProblem these checks are always conducted with PowerSimulations defaults and require compliance with those defaults to pass. In any case, these can be overloaded when necessary depending on the problem requirements.","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"validate_template\nvalidate_time_series\nreset!\nsolve_impl!","category":"page"},{"location":"tutorials/adding_new_problem_model/#How-to-develop-your-build_model!-function","page":"Adding an Operations Problem Model","title":"How to develop your build_model! function","text":"","category":"section"},{"location":"tutorials/adding_new_problem_model/#Registering-a-variable-in-the-model","page":"Adding an Operations Problem Model","title":"Registering a variable in the model","text":"","category":"section"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"To register a variable in the model, the developer must first allocate the container into the optimization container and then populate it. For example, it require start the build function as follows:","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"info: Info\nWe recommend calling import PowerSimulations and defining the constant CONST PSI = PowerSimulations to make it easier to read the code and determine which package is responsible for defining the functions.","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":" function PSI.build_model!(model::PSI.DecisionModel{MyCustomDecisionProblem})\n container = PSI.get_optimization_container(model)\n time_steps = 1:24\n PSI.set_time_steps!(container, time_steps)\n system = PSI.get_system(model)\n\n thermal_gens = PSY.get_components(PSY.ThermalStandard, system)\n thermal_gens_names = PSY.get_name.(thermal_gens)\n\n # Create the container for the variable\n variable = PSI.add_variable_container!(\n container,\n PSI.ActivePowerVariable(), # <- This variable is defined in PowerSimulations but the user can define their own\n PSY.ThermalGeneration, # <- Device type for the variable. Can be from PSY or custom defined\n thermal_gens_names, # <- First container dimension\n time_steps, # <- Second container dimension\n )\n\n # Iterate over the devices and time to store the JuMP variables into the container.\n for t in time_steps, d in thermal_gens_names\n name = PSY.get_name(d)\n variable[name, t] = JuMP.@variable(get_jump_model(container))\n # It is possible to use PSY getter functions to retrieve data from the generators\n JuMP.set_upper_bound(variable[name, t], UB_DATA) # <- Optional\n JuMP.set_lower_bound(variable[name, t], LB_DATA) # <- Optional\n end\n\n # Add More Variables.....\n\n return\n end","category":"page"},{"location":"tutorials/adding_new_problem_model/#Registering-a-constraint-in-the-model","page":"Adding an Operations Problem Model","title":"Registering a constraint in the model","text":"","category":"section"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":"A similar pattern is used to add constraints to the model, in this example the field meta is used to avoid creating unnecessary duplicate constraint types. For instance to reflect upperbound and lowerbound or upwards and downwards constraints. Meta can take any string value except for the _ character.","category":"page"},{"location":"tutorials/adding_new_problem_model/","page":"Adding an Operations Problem Model","title":"Adding an Operations Problem Model","text":" function PSI.build_model!(model::PSI.DecisionModel{MyCustomDecisionProblem})\n container = PSI.get_optimization_container(model)\n time_steps = 1:24\n PSI.set_time_steps!(container, time_steps)\n system = PSI.get_system(model)\n\n # VARIABLE ADDITION CODE\n\n # Constraint additions\n con_ub = PSI.add_constraints_container!(\n container,\n PSI.RangeLimitConstraint(), # <- Constraint Type defined by PSI or your own\n PSY.ThermalGeneration, # <- Device type for variable. Can be PSY or custom\n thermal_gens_names, # <- First container dimension\n time_steps; # <- Second container dimension\n meta = \"ub\" # <- meta allows to reuse a constraint definition for similar constraints. It only requires to be a string\n )\n\n con_lb = PSI.add_constraints_container!(\n container,\n PSI.RangeLimitConstraint(),\n PSY.ThermalGeneration,\n thermal_gens_names, # <- First container dimension\n time_steps; # <- Second container dimension\n meta = \"lb\" # <- meta allows to reuse a constraint definition for similar constraints. It only requires to be a string\n )\n\n # Retrieve a relevant variable from the container if not defined in\n variable = PSI.get_variable(container, PSI.ActivePowerVariable(), PSY.ThermalGeneration)\n for device in devices, t in time_steps\n ci_name = PSY.get_name(device)\n limits = get_min_max_limits(device) # depends on constraint type and formulation type\n con_ub[ci_name, t] =\n JuMP.@constraint(get_jump_model(container), variable[ci_name, t] >= limits.min)\n con_lb[ci_name, t] =\n JuMP.@constraint(get_jump_model(container), variable[ci_name, t] >= limits.min)\n end\n\n return\n end","category":"page"},{"location":"formulation_library/Branch/#PowerSystems.Branch-Formulations","page":"Branch","title":"PowerSystems.Branch Formulations","text":"","category":"section"},{"location":"formulation_library/Branch/","page":"Branch","title":"Branch","text":"Valid DeviceModels for subtypes of Branch include the following:","category":"page"},{"location":"formulation_library/Branch/","page":"Branch","title":"Branch","text":"using PowerSimulations\nusing PowerSystems\nusing DataFrames\nusing Latexify\ncombos = PowerSimulations.generate_device_formulation_combinations()\nfilter!(x -> x[\"device_type\"] <: Branch, combos)\ncombo_table = DataFrame(\n \"Valid DeviceModel\" => [\"`DeviceModel($(c[\"device_type\"]), $(c[\"formulation\"]))`\" for c in combos],\n \"Device Type\" => [\"[$(c[\"device_type\"])](https://nrel-Sienna.github.io/PowerSystems.jl/stable/model_library/generated_$(c[\"device_type\"])/)\" for c in combos],\n \"Formulation\" => [\"[$(c[\"formulation\"])](@ref)\" for c in combos],\n )\nmdtable(combo_table, latex = false)","category":"page"},{"location":"formulation_library/Branch/","page":"Branch","title":"Branch","text":"","category":"page"},{"location":"formulation_library/Branch/#StaticBranch","page":"Branch","title":"StaticBranch","text":"","category":"section"},{"location":"formulation_library/Branch/","page":"Branch","title":"Branch","text":"StaticBranch","category":"page"},{"location":"formulation_library/Branch/#PowerSimulations.StaticBranch","page":"Branch","title":"PowerSimulations.StaticBranch","text":"Branch type to add unbounded flow variables and use flow constraints\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/Branch/","page":"Branch","title":"Branch","text":"","category":"page"},{"location":"formulation_library/Branch/#StaticBranchBounds","page":"Branch","title":"StaticBranchBounds","text":"","category":"section"},{"location":"formulation_library/Branch/","page":"Branch","title":"Branch","text":"StaticBranchBounds","category":"page"},{"location":"formulation_library/Branch/#PowerSimulations.StaticBranchBounds","page":"Branch","title":"PowerSimulations.StaticBranchBounds","text":"Branch type to add bounded flow variables and use flow constraints\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/Branch/","page":"Branch","title":"Branch","text":"","category":"page"},{"location":"formulation_library/Branch/#StaticBranchUnbounded","page":"Branch","title":"StaticBranchUnbounded","text":"","category":"section"},{"location":"formulation_library/Branch/","page":"Branch","title":"Branch","text":"StaticBranchUnbounded","category":"page"},{"location":"formulation_library/Branch/#PowerSimulations.StaticBranchUnbounded","page":"Branch","title":"PowerSimulations.StaticBranchUnbounded","text":"Branch type to avoid flow constraints\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/Branch/","page":"Branch","title":"Branch","text":"","category":"page"},{"location":"formulation_library/Branch/#HVDCTwoTerminalLossless","page":"Branch","title":"HVDCTwoTerminalLossless","text":"","category":"section"},{"location":"formulation_library/Branch/","page":"Branch","title":"Branch","text":"HVDCTwoTerminalLossless","category":"page"},{"location":"formulation_library/Branch/#PowerSimulations.HVDCTwoTerminalLossless","page":"Branch","title":"PowerSimulations.HVDCTwoTerminalLossless","text":"Branch type to represent lossless power flow on DC lines\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/Branch/","page":"Branch","title":"Branch","text":"","category":"page"},{"location":"formulation_library/Branch/#HVDCTwoTerminalDispatch","page":"Branch","title":"HVDCTwoTerminalDispatch","text":"","category":"section"},{"location":"formulation_library/Branch/","page":"Branch","title":"Branch","text":"HVDCTwoTerminalDispatch","category":"page"},{"location":"formulation_library/Branch/#PowerSimulations.HVDCTwoTerminalDispatch","page":"Branch","title":"PowerSimulations.HVDCTwoTerminalDispatch","text":"Branch type to represent lossy power flow on DC lines\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/Branch/","page":"Branch","title":"Branch","text":"","category":"page"},{"location":"formulation_library/Branch/#HVDCTwoTerminalUnbounded","page":"Branch","title":"HVDCTwoTerminalUnbounded","text":"","category":"section"},{"location":"formulation_library/Branch/","page":"Branch","title":"Branch","text":"HVDCTwoTerminalUnbounded","category":"page"},{"location":"formulation_library/Branch/#PowerSimulations.HVDCTwoTerminalUnbounded","page":"Branch","title":"PowerSimulations.HVDCTwoTerminalUnbounded","text":"Branch type to avoid flow constraints\n\n\n\n\n\n","category":"type"},{"location":"modeler_guide/problem_templates/#op_problem_template","page":"Operations ProblemTemplates","title":"Operations ProblemTemplates","text":"","category":"section"},{"location":"modeler_guide/problem_templates/","page":"Operations ProblemTemplates","title":"Operations ProblemTemplates","text":"Templates are used to specify the modeling properties of the devices and network that are going to he used to specify a problem. A ProblemTemplate is just a collection of DeviceModels that allows the user to specify the formulations of each set of devices (by device type) independently so that the modeler can adjust the level of detail according to the question of interest and the available data. For more information about valid DeviceModels and their mathematical representations, check out the Formulation Library.","category":"page"},{"location":"modeler_guide/problem_templates/#Building-a-ProblemTemplate","page":"Operations ProblemTemplates","title":"Building a ProblemTemplate","text":"","category":"section"},{"location":"modeler_guide/problem_templates/","page":"Operations ProblemTemplates","title":"Operations ProblemTemplates","text":"You can build a ProblemTemplate by adding a NetworkModel, DeviceModels, and ServiceModels.","category":"page"},{"location":"modeler_guide/problem_templates/","page":"Operations ProblemTemplates","title":"Operations ProblemTemplates","text":"template = ProblemTemplate()\nset_network_model!(template, NetworkModel(CopperPlatePowerModel))\nset_device_model!(template, PowerLoad, StaticPowerLoad)\nset_device_model!(template, ThermalStandard, ThermalBasicUnitCommitment)\nset_service_model!(template, VariableReserve{ReserveUp}, RangeReserve)","category":"page"},{"location":"modeler_guide/problem_templates/#Default-Templates","page":"Operations ProblemTemplates","title":"Default Templates","text":"","category":"section"},{"location":"modeler_guide/problem_templates/","page":"Operations ProblemTemplates","title":"Operations ProblemTemplates","text":"PowerSimulations.jl provides default templates for common operation problems. You can retrieve a default template and modify it according to your requirements. Currently supported default templates are:","category":"page"},{"location":"modeler_guide/problem_templates/","page":"Operations ProblemTemplates","title":"Operations ProblemTemplates","text":"template_economic_dispatch","category":"page"},{"location":"modeler_guide/problem_templates/#PowerSimulations.template_economic_dispatch","page":"Operations ProblemTemplates","title":"PowerSimulations.template_economic_dispatch","text":"template_economic_dispatch(; kwargs...) -> ProblemTemplate\n\n\ntemplate_economic_dispatch(; kwargs...)\n\nCreates a ProblemTemplate with default DeviceModels for an Economic Dispatch problem.\n\nExample\n\ntemplate = templateeconomicdispatch()\n\n\n# Accepted Key Words\n- `network::Type{<:PM.AbstractPowerModel}` : override default network model settings\n- `devices::Vector{DeviceModel}` : override default `DeviceModel` settings\n- `services::Vector{ServiceModel}` : override default `ServiceModel` settings\n\n\n\n\n\n","category":"function"},{"location":"modeler_guide/problem_templates/","page":"Operations ProblemTemplates","title":"Operations ProblemTemplates","text":"using PowerSimulations #hide\ntemplate_economic_dispatch()","category":"page"},{"location":"modeler_guide/problem_templates/","page":"Operations ProblemTemplates","title":"Operations ProblemTemplates","text":"template_unit_commitment","category":"page"},{"location":"modeler_guide/problem_templates/#PowerSimulations.template_unit_commitment","page":"Operations ProblemTemplates","title":"PowerSimulations.template_unit_commitment","text":"template_unit_commitment(; kwargs...) -> ProblemTemplate\n\n\ntemplate_unit_commitment(; kwargs...)\n\nCreates a ProblemTemplate with default DeviceModels for a Unit Commitment problem.\n\nExample\n\ntemplate = templateunitcommitment()\n\n\n# Accepted Key Words\n- `network::Type{<:PM.AbstractPowerModel}` : override default network model settings\n- `devices::Vector{DeviceModel}` : override default `DeviceModel` settings\n- `services::Vector{ServiceModel}` : override default `ServiceModel` settings\n\n\n\n\n\n","category":"function"},{"location":"modeler_guide/problem_templates/","page":"Operations ProblemTemplates","title":"Operations ProblemTemplates","text":"using PowerSimulations #hide\ntemplate_unit_commitment()","category":"page"},{"location":"modeler_guide/problem_templates/","page":"Operations ProblemTemplates","title":"Operations ProblemTemplates","text":"template_agc_reserve_deployment","category":"page"},{"location":"modeler_guide/problem_templates/#PowerSimulations.template_agc_reserve_deployment","page":"Operations ProblemTemplates","title":"PowerSimulations.template_agc_reserve_deployment","text":"template_agc_reserve_deployment(; kwargs...)\n\n\ntemplate_agc_reserve_deployment(; kwargs...)\n\nCreates a ProblemTemplate with default DeviceModels for an AGC Reserve Deployment Problem. This model doesn't support customization\n\nExample\n\ntemplate = agcreservedeployment()\n\n\n\n\n\n","category":"function"},{"location":"modeler_guide/problem_templates/","page":"Operations ProblemTemplates","title":"Operations ProblemTemplates","text":"using PowerSimulations #hide\nusing HydroPowerSimulations #hide\ntemplate_agc_reserve_deployment()","category":"page"},{"location":"code_base_developer_guide/developer/#Guidelines-for-Developers","page":"Developer Guide","title":"Guidelines for Developers","text":"","category":"section"},{"location":"code_base_developer_guide/developer/","page":"Developer Guide","title":"Developer Guide","text":"In order to contribute to PowerSystems.jl repository please read the following sections of InfrastructureSystems.jl documentation in detail:","category":"page"},{"location":"code_base_developer_guide/developer/","page":"Developer Guide","title":"Developer Guide","text":"Style Guide\nContributing Guidelines","category":"page"},{"location":"code_base_developer_guide/developer/","page":"Developer Guide","title":"Developer Guide","text":"Pull requests are always welcome to fix bugs or add additional modeling capabilities.","category":"page"},{"location":"code_base_developer_guide/developer/","page":"Developer Guide","title":"Developer Guide","text":"All the code contributions need to include tests with a minimum coverage of 70%","category":"page"},{"location":"modeler_guide/modeling_faq/#Modeling-FAQ","page":"Modeling FAQ","title":"Modeling FAQ","text":"","category":"section"},{"location":"modeler_guide/modeling_faq/","page":"Modeling FAQ","title":"Modeling FAQ","text":"question: How do I reduce the amount of print on my REPL?\nThe print to the REPL is controlled with the logging. Check the Logging documentation page to see how to reduce the print out","category":"page"},{"location":"modeler_guide/modeling_faq/","page":"Modeling FAQ","title":"Modeling FAQ","text":"question: How do I print the optimizer logs to see the solution process?\nWhen specifying the DecisionModel or EmulationModel pass the keyword print_optimizer_log = true","category":"page"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"CurrentModule = PowerSimulations\nDocTestSetup = quote\n using PowerSimulations\nend","category":"page"},{"location":"api/PowerSimulations/#API-Reference","page":"API Reference","title":"API Reference","text":"","category":"section"},{"location":"api/PowerSimulations/#Table-of-Contents","page":"API Reference","title":"Table of Contents","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"Device Models\nDecision Models\nEmulation Models\nService Models\nSimulation Models\nVariables\nConstraints\nParameters","category":"page"},{"location":"api/PowerSimulations/#Device-Models","page":"API Reference","title":"Device Models","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"List of structures and methods for Device models","category":"page"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"DeviceModel","category":"page"},{"location":"api/PowerSimulations/#PowerSimulations.DeviceModel","page":"API Reference","title":"PowerSimulations.DeviceModel","text":"DeviceModel(\n ::Type{D},\n ::Type{B},\n feedforwards::Vector{<:AbstractAffectFeedforward}\n use_slacks::Bool,\n duals::Vector{DataType},\n services::Vector{ServiceModel}\n attributes::Dict{String, Any}\n)\n\nEstablishes the model for a particular device specified by type. Uses the keyword argument feedforward to enable passing values between operation model at simulation time\n\nArguments\n\n::Type{D} where D<:PSY.Device: Power System Device Type\n::Type{B} where B<:AbstractDeviceFormulation: Abstract Device Formulation\nfeedforward::Array{<:AbstractAffectFeedforward} = Vector{AbstractAffectFeedforward}() : use to pass parameters between models\nuse_slacks::Bool = false : Add slacks to the device model. Implementation is model dependent and not all models feature slacks\nduals::Vector{DataType} = Vector{DataType}(): use to pass constraint type to calculate the duals. The DataType needs to be a valid ConstraintType\ntime_series_names::Dict{Type{<:TimeSeriesParameter}, String} = get_default_time_series_names(D, B) : use to specify time series names associated to the device`\nattributes::Dict{String, Any} = get_default_attributes(D, B) : use to specify attributes to the device\n\nExample\n\nthermal_gens = DeviceModel(ThermalStandard, ThermalBasicUnitCommitment)\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#Formulations","page":"API Reference","title":"Formulations","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"Refer to the Formulations Page for each Abstract Device Formulation.","category":"page"},{"location":"api/PowerSimulations/#Problem-Templates","page":"API Reference","title":"Problem Templates","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"Refer to the Problem Templates Page for available ProblemTemplates.","category":"page"},{"location":"api/PowerSimulations/#Problem-Templates-2","page":"API Reference","title":"Problem Templates","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"Refer to the Problem Templates Page for available ProblemTemplates.","category":"page"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":" \n ","category":"page"},{"location":"api/PowerSimulations/#Service-Models","page":"API Reference","title":"Service Models","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"List of structures and methods for Service models","category":"page"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"ServiceModel","category":"page"},{"location":"api/PowerSimulations/#PowerSimulations.ServiceModel","page":"API Reference","title":"PowerSimulations.ServiceModel","text":"Establishes the model for a particular services specified by type. Uses the keyword argument use_service_name to assign the model to a service with the same name as the name in the template. Uses the keyword argument feedforward to enable passing values between operation model at simulation time\n\nArguments\n\n-::Type{D}: Power System Service Type -::Type{B}: Abstract Service Formulation\n\nAccepted Key Words\n\nfeedforward::Array{<:AbstractAffectFeedforward} : use to pass parameters between models\nuse_service_name::Bool : use the name as the name for the service\n\nExample\n\nreserves = ServiceModel(PSY.VariableReserve{PSY.ReserveUp}, RangeReserve)\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#Decision-Models","page":"API Reference","title":"Decision Models","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"DecisionModel\nDecisionModel(::Type{M} where {M <: DecisionProblem}, ::ProblemTemplate, ::PSY.System, ::Union{Nothing, JuMP.Model})\nDecisionModel(::AbstractString, ::MOI.OptimizerWithAttributes)\nbuild!(::DecisionModel)\nsolve!(::DecisionModel)","category":"page"},{"location":"api/PowerSimulations/#PowerSimulations.DecisionModel","page":"API Reference","title":"PowerSimulations.DecisionModel","text":"DecisionModel{M}(\n template::ProblemTemplate,\n sys::PSY.System,\n jump_model::Union{Nothing, JuMP.Model}=nothing;\n kwargs...) where {M<:DecisionProblem}\n\nBuild the optimization problem of type M with the specific system and template.\n\nArguments\n\n::Type{M} where M<:DecisionProblem: The abstract operation model type\ntemplate::ProblemTemplate: The model reference made up of transmission, devices, branches, and services.\nsys::PSY.System: the system created using Power Systems\njump_model::Union{Nothing, JuMP.Model}: Enables passing a custom JuMP model. Use with care\nname = nothing: name of model, string or symbol; defaults to the type of template converted to a symbol.\noptimizer::Union{Nothing,MOI.OptimizerWithAttributes} = nothing : The optimizer does not get serialized. Callers should pass whatever they passed to the original problem.\nhorizon::Int = UNSET_HORIZON: Manually specify the length of the forecast Horizon\nwarm_start::Bool = true: True will use the current operation point in the system to initialize variable values. False initializes all variables to zero. Default is true\nsystem_to_file::Bool = true:: True to create a copy of the system used in the model.\ninitialize_model::Bool = true: Option to decide to initialize the model or not.\ninitialization_file::String = \"\": This allows to pass pre-existing initialization values to avoid the solution of an optimization problem to find feasible initial conditions.\ndeserialize_initial_conditions::Bool = false: Option to deserialize conditions\nexport_pwl_vars::Bool = false: True to export all the pwl intermediate variables. It can slow down significantly the build and solve time.\nallow_fails::Bool = false: True to allow the simulation to continue even if the optimization step fails. Use with care.\noptimizer_solve_log_print::Bool = false: Uses JuMP.unset_silent() to print the optimizer's log. By default all solvers are set to MOI.Silent()\ndetailed_optimizer_stats::Bool = false: True to save detailed optimizer stats log.\ncalculate_conflict::Bool = false: True to use solver to calculate conflicts for infeasible problems. Only specific solvers are able to calculate conflicts.\ndirect_mode_optimizer::Bool = false: True to use the solver in direct mode. Creates a JuMP.direct_model.\nstore_variable_names::Bool = false: to store variable names in optimization model. Decreases the build times.\nrebuild_model::Bool = false: It will force the rebuild of the underlying JuMP model with each call to update the model. It increases solution times, use only if the model can't be updated in memory.\ninitial_time::Dates.DateTime = UNSET_INI_TIME: Initial Time for the model solve.\ntime_series_cache_size::Int = IS.TIME_SERIES_CACHE_SIZE_BYTES: Size in bytes to cache for each time array. Default is 1 MiB. Set to 0 to disable.\n\nExample\n\ntemplate = ProblemTemplate(CopperPlatePowerModel, devices, branches, services)\nOpModel = DecisionModel(MockOperationProblem, template, system)\n\n\n\n\n\nDecisionModel(\n ::Type{M<:PowerSimulations.DecisionProblem},\n template::ProblemTemplate,\n sys::System;\n ...\n) -> DecisionModel\nDecisionModel(\n ::Type{M<:PowerSimulations.DecisionProblem},\n template::ProblemTemplate,\n sys::System,\n jump_model::Union{Nothing, JuMP.Model};\n kwargs...\n) -> DecisionModel\n\n\nBuild the optimization problem of type M with the specific system and template\n\nArguments\n\n::Type{M} where M<:DecisionProblem: The abstract operation model type\ntemplate::ProblemTemplate: The model reference made up of transmission, devices, branches, and services.\nsys::PSY.System: the system created using Power Systems\njump_model::Union{Nothing, JuMP.Model} = nothing: Enables passing a custom JuMP model. Use with care.\n\nExample\n\ntemplate = ProblemTemplate(CopperPlatePowerModel, devices, branches, services)\nproblem = DecisionModel(MyOpProblemType, template, system, optimizer)\n\n\n\n\n\nBuilds an empty decision model. This constructor is used for the implementation of custom decision models that do not require a template.\n\nArguments\n\n::Type{M} where M<:DecisionProblem: The abstract operation model type\nsys::PSY.System: the system created using Power Systems\njump_model::Union{Nothing, JuMP.Model} = nothing: Enables passing a custom JuMP model. Use with care.\n\nExample\n\nproblem = DecisionModel(system, optimizer)\n\n\n\n\n\nDecisionModel(\n directory::AbstractString,\n optimizer::MathOptInterface.OptimizerWithAttributes;\n jump_model,\n system\n) -> Any\n\n\nConstruct an DecisionProblem from a serialized file.\n\nArguments\n\ndirectory::AbstractString: Directory containing a serialized model\njump_model::Union{Nothing, JuMP.Model} = nothing: The JuMP model does not get serialized. Callers should pass whatever they passed to the original problem.\noptimizer::Union{Nothing,MOI.OptimizerWithAttributes} = nothing: The optimizer does not get serialized. Callers should pass whatever they passed to the original problem.\nsystem::Union{Nothing, PSY.System}: Optionally, the system used for the model. If nothing and systofile was set to true when the model was created, the system will be deserialized from a file.\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.DecisionModel-Tuple{Type{M} where M<:PowerSimulations.DecisionProblem, ProblemTemplate, System, Union{Nothing, JuMP.Model}}","page":"API Reference","title":"PowerSimulations.DecisionModel","text":"DecisionModel(\n ::Type{M<:PowerSimulations.DecisionProblem},\n template::ProblemTemplate,\n sys::System;\n ...\n) -> DecisionModel\nDecisionModel(\n ::Type{M<:PowerSimulations.DecisionProblem},\n template::ProblemTemplate,\n sys::System,\n jump_model::Union{Nothing, JuMP.Model};\n kwargs...\n) -> DecisionModel\n\n\nBuild the optimization problem of type M with the specific system and template\n\nArguments\n\n::Type{M} where M<:DecisionProblem: The abstract operation model type\ntemplate::ProblemTemplate: The model reference made up of transmission, devices, branches, and services.\nsys::PSY.System: the system created using Power Systems\njump_model::Union{Nothing, JuMP.Model} = nothing: Enables passing a custom JuMP model. Use with care.\n\nExample\n\ntemplate = ProblemTemplate(CopperPlatePowerModel, devices, branches, services)\nproblem = DecisionModel(MyOpProblemType, template, system, optimizer)\n\n\n\n\n\n","category":"method"},{"location":"api/PowerSimulations/#PowerSimulations.DecisionModel-Tuple{AbstractString, MathOptInterface.OptimizerWithAttributes}","page":"API Reference","title":"PowerSimulations.DecisionModel","text":"DecisionModel(\n directory::AbstractString,\n optimizer::MathOptInterface.OptimizerWithAttributes;\n jump_model,\n system\n) -> Any\n\n\nConstruct an DecisionProblem from a serialized file.\n\nArguments\n\ndirectory::AbstractString: Directory containing a serialized model\njump_model::Union{Nothing, JuMP.Model} = nothing: The JuMP model does not get serialized. Callers should pass whatever they passed to the original problem.\noptimizer::Union{Nothing,MOI.OptimizerWithAttributes} = nothing: The optimizer does not get serialized. Callers should pass whatever they passed to the original problem.\nsystem::Union{Nothing, PSY.System}: Optionally, the system used for the model. If nothing and systofile was set to true when the model was created, the system will be deserialized from a file.\n\n\n\n\n\n","category":"method"},{"location":"api/PowerSimulations/#PowerSimulations.build!-Tuple{DecisionModel}","page":"API Reference","title":"PowerSimulations.build!","text":"build!(\n model::DecisionModel;\n output_dir,\n recorders,\n console_level,\n file_level,\n disable_timer_outputs\n)\n\n\nBuild the Decision Model based on the specified DecisionProblem.\n\nArguments\n\nmodel::DecisionModel{<:DecisionProblem}: DecisionModel object\noutput_dir::String: Output directory for results\nrecorders::Vector{Symbol} = []: recorder names to register\nconsole_level = Logging.Error:\nfile_level = Logging.Info:\ndisable_timer_outputs = false : Enable/Disable timing outputs\n\n\n\n\n\n","category":"method"},{"location":"api/PowerSimulations/#PowerSimulations.solve!-Tuple{DecisionModel}","page":"API Reference","title":"PowerSimulations.solve!","text":"solve!(\n model::DecisionModel;\n export_problem_results,\n console_level,\n file_level,\n disable_timer_outputs,\n serialize,\n kwargs...\n) -> RunStatus\n\n\nDefault solve method for models that conform to the requirements of DecisionModel{<: DecisionProblem}.\n\nThis will call build! on the model if it is not already built. It will forward all keyword arguments to that function.\n\nArguments\n\nmodel::OperationModel = model: operation model\nexport_problem_results::Bool = false: If true, export ProblemResults DataFrames to CSV files. Reduces solution times during simulation.\nconsole_level = Logging.Error:\nfile_level = Logging.Info:\ndisable_timer_outputs = false : Enable/Disable timing outputs\nserialize::Bool = true: If true, serialize the model to a file to allow re-execution later.\n\nExamples\n\nresults = solve!(OpModel)\nresults = solve!(OpModel, export_problem_results = true)\n\n\n\n\n\n","category":"method"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":" \n ","category":"page"},{"location":"api/PowerSimulations/#Emulation-Models","page":"API Reference","title":"Emulation Models","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"EmulationModel\nEmulationModel(::Type{M} where {M <: EmulationProblem}, ::ProblemTemplate, ::PSY.System, ::Union{Nothing, JuMP.Model})\nEmulationModel(::AbstractString, ::MOI.OptimizerWithAttributes)\nbuild!(::EmulationModel)\nrun!(::EmulationModel)","category":"page"},{"location":"api/PowerSimulations/#PowerSimulations.EmulationModel","page":"API Reference","title":"PowerSimulations.EmulationModel","text":"EmulationModel{M}(\n template::ProblemTemplate,\n sys::PSY.System,\n jump_model::Union{Nothing, JuMP.Model}=nothing;\n kwargs...) where {M<:EmulationProblem}\n\nBuild the optimization problem of type M with the specific system and template.\n\nArguments\n\n::Type{M} where M<:EmulationProblem: The abstract Emulation model type\ntemplate::ProblemTemplate: The model reference made up of transmission, devices, branches, and services.\nsys::PSY.System: the system created using Power Systems\njump_model::Union{Nothing, JuMP.Model}: Enables passing a custom JuMP model. Use with care\nname = nothing: name of model, string or symbol; defaults to the type of template converted to a symbol.\noptimizer::Union{Nothing,MOI.OptimizerWithAttributes} = nothing : The optimizer does not get serialized. Callers should pass whatever they passed to the original problem.\nwarm_start::Bool = true: True will use the current operation point in the system to initialize variable values. False initializes all variables to zero. Default is true\nsystem_to_file::Bool = true:: True to create a copy of the system used in the model.\ninitialize_model::Bool = true: Option to decide to initialize the model or not.\ninitialization_file::String = \"\": This allows to pass pre-existing initialization values to avoid the solution of an optimization problem to find feasible initial conditions.\ndeserialize_initial_conditions::Bool = false: Option to deserialize conditions\nexport_pwl_vars::Bool = false: True to export all the pwl intermediate variables. It can slow down significantly the build and solve time.\nallow_fails::Bool = false: True to allow the simulation to continue even if the optimization step fails. Use with care.\ncalculate_conflict::Bool = false: True to use solver to calculate conflicts for infeasible problems. Only specific solvers are able to calculate conflicts.\noptimizer_solve_log_print::Bool = false: Uses JuMP.unset_silent() to print the optimizer's log. By default all solvers are set to MOI.Silent()\ndetailed_optimizer_stats::Bool = false: True to save detailed optimizer stats log.\ndirect_mode_optimizer::Bool = false: True to use the solver in direct mode. Creates a JuMP.direct_model.\nstore_variable_names::Bool = false: True to store variable names in optimization model.\nrebuild_model::Bool = false: It will force the rebuild of the underlying JuMP model with each call to update the model. It increases solution times, use only if the model can't be updated in memory.\ninitial_time::Dates.DateTime = UNSET_INI_TIME: Initial Time for the model solve.\ntime_series_cache_size::Int = IS.TIME_SERIES_CACHE_SIZE_BYTES: Size in bytes to cache for each time array. Default is 1 MiB. Set to 0 to disable.\n\nExample\n\ntemplate = ProblemTemplate(CopperPlatePowerModel, devices, branches, services)\nOpModel = EmulationModel(MockEmulationProblem, template, system)\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.EmulationModel-Tuple{Type{M} where M<:PowerSimulations.EmulationProblem, ProblemTemplate, System, Union{Nothing, JuMP.Model}}","page":"API Reference","title":"PowerSimulations.EmulationModel","text":"EmulationModel(\n ::Type{M<:PowerSimulations.EmulationProblem},\n template::ProblemTemplate,\n sys::System;\n ...\n) -> EmulationModel\nEmulationModel(\n ::Type{M<:PowerSimulations.EmulationProblem},\n template::ProblemTemplate,\n sys::System,\n jump_model::Union{Nothing, JuMP.Model};\n kwargs...\n) -> EmulationModel\n\n\nBuild the optimization problem of type M with the specific system and template\n\nArguments\n\n::Type{M} where M<:EmulationProblem: The abstract Emulation model type\ntemplate::ProblemTemplate: The model reference made up of transmission, devices, branches, and services.\nsys::PSY.System: the system created using Power Systems\njump_model::Union{Nothing, JuMP.Model}: Enables passing a custom JuMP model. Use with care\n\nExample\n\ntemplate = ProblemTemplate(CopperPlatePowerModel, devices, branches, services)\nproblem = EmulationModel(MyEmProblemType, template, system, optimizer)\n\n\n\n\n\n","category":"method"},{"location":"api/PowerSimulations/#PowerSimulations.EmulationModel-Tuple{AbstractString, MathOptInterface.OptimizerWithAttributes}","page":"API Reference","title":"PowerSimulations.EmulationModel","text":"EmulationModel(\n directory::AbstractString,\n optimizer::MathOptInterface.OptimizerWithAttributes;\n jump_model,\n system,\n kwargs...\n) -> Any\n\n\nConstruct an EmulationProblem from a serialized file.\n\nArguments\n\ndirectory::AbstractString: Directory containing a serialized model.\noptimizer::MOI.OptimizerWithAttributes: The optimizer does not get serialized. Callers should pass whatever they passed to the original problem.\njump_model::Union{Nothing, JuMP.Model} = nothing: The JuMP model does not get serialized. Callers should pass whatever they passed to the original problem.\nsystem::Union{Nothing, PSY.System}: Optionally, the system used for the model. If nothing and systofile was set to true when the model was created, the system will be deserialized from a file.\n\n\n\n\n\n","category":"method"},{"location":"api/PowerSimulations/#PowerSimulations.build!-Tuple{EmulationModel}","page":"API Reference","title":"PowerSimulations.build!","text":"build!(\n model::EmulationModel;\n executions,\n output_dir,\n recorders,\n console_level,\n file_level,\n disable_timer_outputs\n)\n\n\nImplementation of build for any EmulationProblem\n\n\n\n\n\n","category":"method"},{"location":"api/PowerSimulations/#PowerSimulations.run!-Tuple{EmulationModel}","page":"API Reference","title":"PowerSimulations.run!","text":"run!(\n model::EmulationModel;\n export_problem_results,\n console_level,\n file_level,\n disable_timer_outputs,\n serialize,\n kwargs...\n) -> RunStatus\n\n\nDefault run method for problems that conform to the requirements of EmulationModel{<: EmulationProblem}\n\nThis will call build! on the model if it is not already built. It will forward all keyword arguments to that function.\n\nArguments\n\nmodel::EmulationModel = model: Emulation model\noptimizer::MOI.OptimizerWithAttributes: The optimizer that is used to solve the model\nexecutions::Int: Number of executions for the emulator run\nexport_problem_results::Bool: If true, export ProblemResults DataFrames to CSV files.\noutput_dir::String: Required if the model is not already built, otherwise ignored\nenable_progress_bar::Bool: Enables/Disable progress bar printing\nserialize::Bool: If true, serialize the model to a file to allow re-execution later.\n\nExamples\n\nstatus = run!(model; optimizer = GLPK.Optimizer, executions = 10)\nstatus = run!(model; output_dir = ./model_output, optimizer = GLPK.Optimizer, executions = 10)\n\n\n\n\n\n","category":"method"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":" \n ","category":"page"},{"location":"api/PowerSimulations/#Simulation-Models","page":"API Reference","title":"Simulation Models","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"Refer to the Simulations Page to explanations on how to setup a Simulation, with Sequencing and Feedforwards.","category":"page"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"SimulationModels\nSimulationSequence\nSimulation\nSimulation(::AbstractString, ::Dict)\nbuild!(::Simulation)\nexecute!(::Simulation)","category":"page"},{"location":"api/PowerSimulations/#PowerSimulations.SimulationModels","page":"API Reference","title":"PowerSimulations.SimulationModels","text":"SimulationModels(\n decision_models::Vector{<:DecisionModel},\n emulation_models::Union{Nothing, EmulationModel}\n)\n\nStores the OperationProblem definitions to be used in the simulation. When creating the SimulationModels, the order in which the models are created determines the order on which the simulation is executed.\n\nArguments\n\ndecision_models::Vector{<:DecisionModel}: Vector of decision models.\nemulation_models::Union{Nothing, EmulationModel}: Optional argument to include\n\nan EmulationModel in the Simulation\n\nExample\n\ntemplate_uc = template_unit_commitment()\ntemplate_ed = template_economic_dispatch()\nmy_decision_model_uc = DecisionModel(template_1, sys_uc, optimizer, name = \"UC\")\nmy_decision_model_ed = DecisionModel(template_ed, sys_ed, optimizer, name = \"ED\")\nmodels = SimulationModels(\n decision_models = [\n my_decision_model_uc,\n my_decision_model_ed\n ]\n)\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.SimulationSequence","page":"API Reference","title":"PowerSimulations.SimulationSequence","text":"SimulationSequence(\n models::SimulationModels,\n feedforward::Dict{String, Vector{<:AbstractAffectFeedforward}}\n ini_cond_chronology::InitialConditionChronology\n)\n\nConstruct the simulation sequence between decision and emulation models.\n\nArguments\n\nmodels::SimulationModels: Vector of decisions and emulation models.\nfeedforward = Dict{String, Vector{<:AbstractAffectFeedforward}}(): Optional dictionary to specify how information\n\nand variables are exchanged between decision and emulation models.\n\nini_cond_chronology::nitialConditionChronology = InterProblemChronology(): TODO\n\nExample\n\ntemplate_uc = template_unit_commitment()\ntemplate_ed = template_economic_dispatch()\nmy_decision_model_uc = DecisionModel(template_1, sys_uc, optimizer, name = \"UC\")\nmy_decision_model_ed = DecisionModel(template_ed, sys_ed, optimizer, name = \"ED\")\nmodels = SimulationModels(\n decision_models = [\n my_decision_model_uc,\n my_decision_model_ed\n ]\n)\n# The following sequence set the commitment variables (`OnVariable`) for `ThermalStandard` units from UC to ED.\nsequence = SimulationSequence(;\n models = models,\n feedforwards = Dict(\n \"ED\" => [\n SemiContinuousFeedforward(;\n component_type = ThermalStandard,\n source = OnVariable,\n affected_values = [ActivePowerVariable],\n ),\n ],\n ),\n)\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.Simulation","page":"API Reference","title":"PowerSimulations.Simulation","text":"Simulation(\n sequence::SimulationSequence,\n name::String,\n steps::Int\n models::SimulationModels,\n simulation_folder::String,\n initial_time::Union{Nothing, Dates.DateTime}\n)\n\nConstruct the Simulation structure to run the sequence of decision and emulation models specified.\n\nArguments\n\n-sequence::SimulationSequence: Simulation sequence that specify how the decision and emulation models will be executed. -name::String: Name of the Simulation -steps::Int: Number of steps on which the sequence of models will be executed -models::SimulationModels: List of Decision and Emulation Models -simulation_folder::String: Folder on which results will be stored -initial_time::Union{Nothing, Dates.DateTime} = nothing: Initial time of which the simulation starts. If nothing it will default to the first timestamp of time series of the system.\n\nExample\n\ntemplate_uc = template_unit_commitment()\ntemplate_ed = template_economic_dispatch()\nmy_decision_model_uc = DecisionModel(template_1, sys_uc, optimizer, name = \"UC\")\nmy_decision_model_ed = DecisionModel(template_ed, sys_ed, optimizer, name = \"ED\")\nmodels = SimulationModels(\n decision_models = [\n my_decision_model_uc,\n my_decision_model_ed\n ]\n)\n# The following sequence set the commitment variables (`OnVariable`) for `ThermalStandard` units from UC to ED.\nsequence = SimulationSequence(;\n models = models,\n feedforwards = Dict(\n \"ED\" => [\n SemiContinuousFeedforward(;\n component_type = ThermalStandard,\n source = OnVariable,\n affected_values = [ActivePowerVariable],\n ),\n ],\n ),\n)\n\nsim = Simulation(\n sequence = sequence,\n name = \"Sim\",\n steps = 5,\n models = models,\n simulation_folder = mktempdir(cleanup=true),\n)\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.Simulation-Tuple{AbstractString, Dict}","page":"API Reference","title":"PowerSimulations.Simulation","text":"Simulation(directory::AbstractString, model_info::Dict)\n\n\nConstructs Simulation from a serialized directory. Callers should pass any kwargs here that they passed to the original Simulation.\n\nArguments\n\ndirectory::AbstractString: the directory returned from the call to serialize\nmodel_info::Dict: Two-level dictionary containing model parameters that cannot be serialized. The outer dict should be keyed by the problem name. The inner dict must contain 'optimizer' and may contain 'jump_model'. These should be the same values used for the original simulation.\n\n\n\n\n\n","category":"method"},{"location":"api/PowerSimulations/#PowerSimulations.build!-Tuple{Simulation}","page":"API Reference","title":"PowerSimulations.build!","text":"build!(\n sim::Simulation;\n recorders,\n console_level,\n file_level,\n serialize,\n partitions,\n index\n) -> BuildStatus\n\n\nBuild the Simulation, problems and the related folder structure.\n\nArguments\n\nsim::Simulation: simulation object\nrecorders::Vector{Symbol} = []: recorder names to register\nserialize::Bool = true: serializes the simulation objects in the simulation\nconsole_level = Logging.Error:\nfile_level = Logging.Info:\n\n\n\n\n\n","category":"method"},{"location":"api/PowerSimulations/#PowerSimulations.execute!-Tuple{Simulation}","page":"API Reference","title":"PowerSimulations.execute!","text":"execute!(sim::Simulation; kwargs...) -> RunStatus\n\n\nSolves the simulation model for sequential Simulations.\n\nArguments\n\nsim::Simulation=sim: simulation object created by Simulation()\n\nThe optional keyword argument exports controls exporting of results to CSV files as the simulation runs. Refer to export_results for a description of this argument.\n\nExample\n\nsim = Simulation(\"Test\", 7, problems, \"/Users/folder\")\nexecute!(sim::Simulation; kwargs...)\n\n\n\n\n\n","category":"method"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":" \n ","category":"page"},{"location":"api/PowerSimulations/#Variables","page":"API Reference","title":"Variables","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"For a list of variables for each device refer to its Formulations page.","category":"page"},{"location":"api/PowerSimulations/#Common-Variables","page":"API Reference","title":"Common Variables","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"ActivePowerVariable\nReactivePowerVariable\nPieceWiseLinearCostVariable","category":"page"},{"location":"api/PowerSimulations/#PowerSimulations.ActivePowerVariable","page":"API Reference","title":"PowerSimulations.ActivePowerVariable","text":"Struct to dispatch the creation of Active Power Variables\n\nDocs abbreviation: Pg\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.ReactivePowerVariable","page":"API Reference","title":"PowerSimulations.ReactivePowerVariable","text":"Struct to dispatch the creation of Reactive Power Variables\n\nDocs abbreviation: Qg\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.PieceWiseLinearCostVariable","page":"API Reference","title":"PowerSimulations.PieceWiseLinearCostVariable","text":"Struct to dispatch the creation of piecewise linear cost variables for objective function\n\nDocs abbreviation: TODO\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#Thermal-Unit-Variables","page":"API Reference","title":"Thermal Unit Variables","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"OnVariable\nStartVariable\nStopVariable\nTimeDurationOn\nTimeDurationOff\nHotStartVariable\nWarmStartVariable\nColdStartVariable\nPowerAboveMinimumVariable","category":"page"},{"location":"api/PowerSimulations/#PowerSimulations.OnVariable","page":"API Reference","title":"PowerSimulations.OnVariable","text":"Struct to dispatch the creation of a binary commitment status variable\n\nDocs abbreviation: u\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.StartVariable","page":"API Reference","title":"PowerSimulations.StartVariable","text":"Struct to dispatch the creation of Binary Start Variables\n\nDocs abbreviation: TODO\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.StopVariable","page":"API Reference","title":"PowerSimulations.StopVariable","text":"Struct to dispatch the creation of Binary Stop Variables\n\nDocs abbreviation: TODO\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.TimeDurationOn","page":"API Reference","title":"PowerSimulations.TimeDurationOn","text":"Auxiliary Variable for Thermal Generation Models to keep track of time elapsed on\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.TimeDurationOff","page":"API Reference","title":"PowerSimulations.TimeDurationOff","text":"Auxiliary Variable for Thermal Generation Models to keep track of time elapsed off\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.HotStartVariable","page":"API Reference","title":"PowerSimulations.HotStartVariable","text":"Struct to dispatch the creation of Hot Start Variable for Thermal units with temperature considerations\n\nDocs abbreviation: TODO\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.WarmStartVariable","page":"API Reference","title":"PowerSimulations.WarmStartVariable","text":"Struct to dispatch the creation of Warm Start Variable for Thermal units with temperature considerations\n\nDocs abbreviation: TODO\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.ColdStartVariable","page":"API Reference","title":"PowerSimulations.ColdStartVariable","text":"Struct to dispatch the creation of Cold Start Variable for Thermal units with temperature considerations\n\nDocs abbreviation: TODO\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.PowerAboveMinimumVariable","page":"API Reference","title":"PowerSimulations.PowerAboveMinimumVariable","text":"Struct to dispatch the creation of Active Power Variables above minimum power for Thermal Compact formulations\n\nDocs abbreviation: hatPg\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#Storage-Unit-Variables","page":"API Reference","title":"Storage Unit Variables","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"ReservationVariable","category":"page"},{"location":"api/PowerSimulations/#PowerSimulations.ReservationVariable","page":"API Reference","title":"PowerSimulations.ReservationVariable","text":"Struct to dispatch the creation of binary storage charge reservation variable\n\nDocs abbreviation: r\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#Branches-and-Network-Variables","page":"API Reference","title":"Branches and Network Variables","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"FlowActivePowerVariable\nFlowActivePowerFromToVariable\nFlowActivePowerToFromVariable\nFlowReactivePowerFromToVariable\nFlowReactivePowerToFromVariable\nPhaseShifterAngle\nHVDCLosses\nHVDCFlowDirectionVariable\nVoltageMagnitude\nVoltageAngle","category":"page"},{"location":"api/PowerSimulations/#PowerSimulations.FlowActivePowerVariable","page":"API Reference","title":"PowerSimulations.FlowActivePowerVariable","text":"Struct to dispatch the creation of bidirectional Active Power Flow Variables\n\nDocs abbreviation: P\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.FlowActivePowerFromToVariable","page":"API Reference","title":"PowerSimulations.FlowActivePowerFromToVariable","text":"Struct to dispatch the creation of unidirectional Active Power Flow Variables\n\nDocs abbreviation: overrightarrowP\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.FlowActivePowerToFromVariable","page":"API Reference","title":"PowerSimulations.FlowActivePowerToFromVariable","text":"Struct to dispatch the creation of unidirectional Active Power Flow Variables\n\nDocs abbreviation: overleftarrowP\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.FlowReactivePowerFromToVariable","page":"API Reference","title":"PowerSimulations.FlowReactivePowerFromToVariable","text":"Struct to dispatch the creation of unidirectional Reactive Power Flow Variables\n\nDocs abbreviation: overrightarrowQ\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.FlowReactivePowerToFromVariable","page":"API Reference","title":"PowerSimulations.FlowReactivePowerToFromVariable","text":"Struct to dispatch the creation of unidirectional Reactive Power Flow Variables\n\nDocs abbreviation: overleftarrowQ\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.PhaseShifterAngle","page":"API Reference","title":"PowerSimulations.PhaseShifterAngle","text":"Struct to dispatch the creation of Phase Shifters Variables\n\nDocs abbreviation: TODO\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.HVDCLosses","page":"API Reference","title":"PowerSimulations.HVDCLosses","text":"Struct to dispatch the creation of HVDC Losses Auxiliary Variables\n\nDocs abbreviation: TODO\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.HVDCFlowDirectionVariable","page":"API Reference","title":"PowerSimulations.HVDCFlowDirectionVariable","text":"Struct to dispatch the creation of HVDC Flow Direction Auxiliary Variables\n\nDocs abbreviation: TODO\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.VoltageMagnitude","page":"API Reference","title":"PowerSimulations.VoltageMagnitude","text":"Struct to dispatch the creation of Voltage Magnitude Variables for AC formulations\n\nDocs abbreviation: TODO\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.VoltageAngle","page":"API Reference","title":"PowerSimulations.VoltageAngle","text":"Struct to dispatch the creation of Voltage Angle Variables for AC/DC formulations\n\nDocs abbreviation: TODO\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#Regulation-and-Services-Variables","page":"API Reference","title":"Regulation and Services Variables","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"ActivePowerReserveVariable\nServiceRequirementVariable\nDeltaActivePowerUpVariable\nDeltaActivePowerDownVariable\nAdditionalDeltaActivePowerUpVariable\nAdditionalDeltaActivePowerDownVariable\nAreaMismatchVariable\nSteadyStateFrequencyDeviation\nSmoothACE\nSystemBalanceSlackUp\nSystemBalanceSlackDown\nReserveRequirementSlack","category":"page"},{"location":"api/PowerSimulations/#PowerSimulations.ActivePowerReserveVariable","page":"API Reference","title":"PowerSimulations.ActivePowerReserveVariable","text":"Struct to dispatch the creation of Active Power Reserve Variables\n\nDocs abbreviation: Pr\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":" \n ","category":"page"},{"location":"api/PowerSimulations/#Constraints","page":"API Reference","title":"Constraints","text":"","category":"section"},{"location":"api/PowerSimulations/#Common-Constraints","page":"API Reference","title":"Common Constraints","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"PieceWiseLinearCostConstraint\n","category":"page"},{"location":"api/PowerSimulations/#Network-Constraints","page":"API Reference","title":"Network Constraints","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"AreaDispatchBalanceConstraint\nAreaParticipationAssignmentConstraint\nBalanceAuxConstraint\nCopperPlateBalanceConstraint\nFrequencyResponseConstraint\nNodalBalanceActiveConstraint\nNodalBalanceReactiveConstraint","category":"page"},{"location":"api/PowerSimulations/#Power-Variable-Limit-Constraints","page":"API Reference","title":"Power Variable Limit Constraints","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"ActivePowerVariableLimitsConstraint\nReactivePowerVariableLimitsConstraint\nActivePowerVariableTimeSeriesLimitsConstraint\nInputActivePowerVariableLimitsConstraint\nOutputActivePowerVariableLimitsConstraint","category":"page"},{"location":"api/PowerSimulations/#Regulation-and-Services-Constraints","page":"API Reference","title":"Regulation and Services Constraints","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"ParticipationAssignmentConstraint\nRegulationLimitsConstraint\nRequirementConstraint\nReserveEnergyCoverageConstraint\nReservePowerConstraint","category":"page"},{"location":"api/PowerSimulations/#Thermal-Unit-Constraints","page":"API Reference","title":"Thermal Unit Constraints","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"ActiveRangeICConstraint\nCommitmentConstraint\nDurationConstraint\nRampConstraint\nRampLimitConstraint\nStartupInitialConditionConstraint\nStartupTimeLimitTemperatureConstraint","category":"page"},{"location":"api/PowerSimulations/#Renewable-Unit-Constraints","page":"API Reference","title":"Renewable Unit Constraints","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"EqualityConstraint\n","category":"page"},{"location":"api/PowerSimulations/#Branches-Constraints","page":"API Reference","title":"Branches Constraints","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"AbsoluteValueConstraint\nFlowLimitFromToConstraint\nFlowLimitToFromConstraint\nFlowRateConstraint\nFlowRateConstraintFromTo\nFlowRateConstraintToFrom\nHVDCDirection\nHVDCLossesAbsoluteValue\nHVDCPowerBalance\nNetworkFlowConstraint\nRateLimitConstraint\nRateLimitConstraintFromTo\nRateLimitConstraintToFrom\nPhaseAngleControlLimit","category":"page"},{"location":"api/PowerSimulations/#Feedforward-Constraints","page":"API Reference","title":"Feedforward Constraints","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"FeedforwardSemiContinousConstraint\nFeedforwardIntegralLimitConstraint\nFeedforwardUpperBoundConstraint\nFeedforwardLowerBoundConstraint\nFeedforwardEnergyTargetConstraint","category":"page"},{"location":"api/PowerSimulations/#Parameters","page":"API Reference","title":"Parameters","text":"","category":"section"},{"location":"api/PowerSimulations/#Time-Series-Parameters","page":"API Reference","title":"Time Series Parameters","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"ActivePowerTimeSeriesParameter\nReactivePowerTimeSeriesParameter\nRequirementTimeSeriesParameter","category":"page"},{"location":"api/PowerSimulations/#PowerSimulations.ActivePowerTimeSeriesParameter","page":"API Reference","title":"PowerSimulations.ActivePowerTimeSeriesParameter","text":"Parameter to define active power time series\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.ReactivePowerTimeSeriesParameter","page":"API Reference","title":"PowerSimulations.ReactivePowerTimeSeriesParameter","text":"Parameter to define reactive power time series\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.RequirementTimeSeriesParameter","page":"API Reference","title":"PowerSimulations.RequirementTimeSeriesParameter","text":"Paramter to define requirement time series\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#Variable-Value-Parameters","page":"API Reference","title":"Variable Value Parameters","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"UpperBoundValueParameter\nLowerBoundValueParameter\nOnStatusParameter\nEnergyLimitParameter\nFixValueParameter\nEnergyTargetParameter","category":"page"},{"location":"api/PowerSimulations/#PowerSimulations.UpperBoundValueParameter","page":"API Reference","title":"PowerSimulations.UpperBoundValueParameter","text":"Parameter to define variable upper bound\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.LowerBoundValueParameter","page":"API Reference","title":"PowerSimulations.LowerBoundValueParameter","text":"Parameter to define variable lower bound\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.OnStatusParameter","page":"API Reference","title":"PowerSimulations.OnStatusParameter","text":"Parameter to define unit commitment status\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#PowerSimulations.FixValueParameter","page":"API Reference","title":"PowerSimulations.FixValueParameter","text":"Parameter to FixValueParameter\n\n\n\n\n\n","category":"type"},{"location":"api/PowerSimulations/#Objective-Function-Parameters","page":"API Reference","title":"Objective Function Parameters","text":"","category":"section"},{"location":"api/PowerSimulations/","page":"API Reference","title":"API Reference","text":"CostFunctionParameter","category":"page"},{"location":"api/PowerSimulations/#PowerSimulations.CostFunctionParameter","page":"API Reference","title":"PowerSimulations.CostFunctionParameter","text":"Parameter to define cost function coefficient\n\n\n\n\n\n","category":"type"},{"location":"tutorials/basics_of_developing_models/#Basics-of-Developing-Operation-Models","page":"Basics of Developing Operation Models","title":"Basics of Developing Operation Models","text":"","category":"section"},{"location":"tutorials/basics_of_developing_models/","page":"Basics of Developing Operation Models","title":"Basics of Developing Operation Models","text":"Check the page PowerSimulations Structure for more background on PowerSimulations.jl","category":"page"},{"location":"modeler_guide/definitions/#Definitions","page":"Definitions","title":"Definitions","text":"","category":"section"},{"location":"modeler_guide/definitions/#D","page":"Definitions","title":"D","text":"","category":"section"},{"location":"modeler_guide/definitions/","page":"Definitions","title":"Definitions","text":"Decision Problem: A decision problem calculates the desired system operation based on forecasts of uncertain inputs and information about the state of the system. The output of a decision problem represents the policies used to drive the set-points of the system's devices, like generators or switches, and depends on the purpose of the problem. See the Decision Model Tutorial to learn more about solving individual problems.\nDevice Formulation: The model of a device that is incorporated into a large system optimization models. For instance, the storage device model used inside of a Unit Commitment (UC) problem. A device model needs to follow some requirements to be integrated into operation problems.","category":"page"},{"location":"modeler_guide/definitions/#E","page":"Definitions","title":"E","text":"","category":"section"},{"location":"modeler_guide/definitions/","page":"Definitions","title":"Definitions","text":"Emulation Problem: An emulation problem is used to mimic the system's behavior subject to an incoming decision and the realization of a forecasted inputs. The solution of the emulator produces outputs representative of the system performance when operating subject the policies resulting from the decision models.","category":"page"},{"location":"modeler_guide/definitions/#H","page":"Definitions","title":"H","text":"","category":"section"},{"location":"modeler_guide/definitions/","page":"Definitions","title":"Definitions","text":"Horizon: The number of steps in the look-ahead of a decision problem. For instance, a Day-Ahead problem usually has a 48 step horizon. Check the time Time Series Data Section in PowerSystems.jl","category":"page"},{"location":"modeler_guide/definitions/#I","page":"Definitions","title":"I","text":"","category":"section"},{"location":"modeler_guide/definitions/","page":"Definitions","title":"Definitions","text":"Interval: The amount of time between updates to the decision problem. For instance, Day-Ahead problems usually have a 24-hour intervals and Real-Time problems have 5-minute intervals. Check the time Time Series Data Section in PowerSystems.jl","category":"page"},{"location":"modeler_guide/definitions/#R","page":"Definitions","title":"R","text":"","category":"section"},{"location":"modeler_guide/definitions/","page":"Definitions","title":"Definitions","text":"Resolution: The amount of time between timesteps in a simulation. For instance 1-hour or 5-minutes. In Julia these are defined using the syntax Hour(1) and Minute(5). Check the time Time Series Data Section in PowerSystems.jl","category":"page"},{"location":"modeler_guide/debugging_infeasible_models/#Debugging-infeasible-models","page":"Debugging infeasible models","title":"Debugging infeasible models","text":"","category":"section"},{"location":"modeler_guide/debugging_infeasible_models/","page":"Debugging infeasible models","title":"Debugging infeasible models","text":"Getting infeasible solutions to models is a common occurrence in operations simulations, there are multiple reasons why this can happen. PowerSimulations.jl has several tools to help debug this situation.","category":"page"},{"location":"modeler_guide/debugging_infeasible_models/#Adding-slacks-to-the-model","page":"Debugging infeasible models","title":"Adding slacks to the model","text":"","category":"section"},{"location":"modeler_guide/debugging_infeasible_models/#Getting-the-infeasibility-conflict","page":"Debugging infeasible models","title":"Getting the infeasibility conflict","text":"","category":"section"},{"location":"modeler_guide/psi_structure/#psi_structure","page":"PowerSimulations.jl Modeling Structure","title":"PowerSimulations.jl Modeling Structure","text":"","category":"section"},{"location":"modeler_guide/psi_structure/","page":"PowerSimulations.jl Modeling Structure","title":"PowerSimulations.jl Modeling Structure","text":"PowerSimulations enables the simulation of a sequence of power systems optimization problems and provides user control over each aspect of the simulation configuration. Specifically:","category":"page"},{"location":"modeler_guide/psi_structure/","page":"PowerSimulations.jl Modeling Structure","title":"PowerSimulations.jl Modeling Structure","text":"mathematical formulations can be selected for each component with DeviceModel and ServiceModel\na problem can be defined by creating model entries in a Operations ProblemTemplates\nmodels (DecisionModel or EmulationModel) can be built by applying a ProblemTemplate to a System and can be executed/solved in isolation or as part of a Simulation\nSimulations can be defined and executed by sequencing one or more models and defining how and when data flows between models.","category":"page"},{"location":"modeler_guide/psi_structure/","page":"PowerSimulations.jl Modeling Structure","title":"PowerSimulations.jl Modeling Structure","text":"question: What is the difference between a Model and a Problem?\nA \"Problem\" is an abstract mathematical description of how to represent power system behavior, whereas a \"Model\" is a concrete representation of a \"Problem\" applied to a dataset. I.e. once a Problem is populated with data describing all the loads, generators, lines, etc., it becomes a Model.","category":"page"},{"location":"formulation_library/General/#formulation_library","page":"General","title":"Formulations","text":"","category":"section"},{"location":"formulation_library/General/","page":"General","title":"General","text":"Modeling formulations are created by dispatching on abstract subtypes of PowerSimulations.AbstractDeviceFormulation","category":"page"},{"location":"formulation_library/General/#FixedOutput","page":"General","title":"FixedOutput","text":"","category":"section"},{"location":"formulation_library/General/","page":"General","title":"General","text":"FixedOutput","category":"page"},{"location":"formulation_library/General/#PowerSimulations.FixedOutput","page":"General","title":"PowerSimulations.FixedOutput","text":"Formulation type to augment the power balance constraint expression with a time series parameter\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/General/","page":"General","title":"General","text":"Variables:","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"No variables are created for DeviceModel(<:DeviceType, FixedOutput)","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"Static Parameters:","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"ThermalGen:\nPg^textmax = PowerSystems.get_max_active_power(device)\nQg^textmax = PowerSystems.get_max_reactive_power(device)\nStorage:\nPg^textmax = PowerSystems.get_max_active_power(device)\nQg^textmax = PowerSystems.get_max_reactive_power(device)","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"Time Series Parameters:","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"using PowerSimulations\nusing HydroPowerSimulations\nusing PowerSystems\nusing DataFrames\nusing Latexify\ncombo_tables = []\nfor t in [RenewableGen, ThermalGen, HydroGen, ElectricLoad]\n combos = PowerSimulations.get_default_time_series_names(t, FixedOutput)\n combo_table = DataFrame(\n \"Parameter\" => map(x -> \"[`$x`](@ref)\", collect(keys(combos))),\n \"Default Time Series Name\" => map(x -> \"`$x`\", collect(values(combos))),\n )\n insertcols!(combo_table, 1, \"Device Type\" => fill(string(t), length(combos)))\n push!(combo_tables, combo_table)\nend\nmdtable(vcat(combo_tables...), latex = false)","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"Objective:","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"No objective terms are created for DeviceModel(<:DeviceType, FixedOutput)","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"Expressions:","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"Adds the active and reactive parameters listed for specific device types above to the respective active and reactive power balance expressions created by the selected Network Formulations","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"Constraints:","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"No constraints are created for DeviceModel(<:DeviceType, FixedOutput)","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"","category":"page"},{"location":"formulation_library/General/#VariableCost-Options","page":"General","title":"VariableCost Options","text":"","category":"section"},{"location":"formulation_library/General/","page":"General","title":"General","text":"PowerSimulations can represent variable costs using a variety of different methods depending on the data available in each device. The following describes the objective function terms that are populated for each variable cost option.","category":"page"},{"location":"formulation_library/General/#Scalar-VariableCost","page":"General","title":"Scalar VariableCost","text":"","category":"section"},{"location":"formulation_library/General/","page":"General","title":"General","text":"variable_cost <: Float64: creates a fixed marginal cost term in the objective function","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"beginaligned\n textmin sum_t C * G_t\nendaligned","category":"page"},{"location":"formulation_library/General/#Polynomial-VariableCost","page":"General","title":"Polynomial VariableCost","text":"","category":"section"},{"location":"formulation_library/General/","page":"General","title":"General","text":"variable_cost <: Tuple{Float64, Float64}: creates a polynomial cost term in the objective function where","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"C_g=variable_cost[1]\nC_g^prime=variable_cost[2]","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"beginaligned\n textmin sum_t C * G_t + C^prime * G_t^2\nendaligned","category":"page"},{"location":"formulation_library/General/#Piecewise-Linear-VariableCost","page":"General","title":"Piecewise Linear VariableCost","text":"","category":"section"},{"location":"formulation_library/General/","page":"General","title":"General","text":"variable_cost <: Vector{Tuple{Float64, Float64}}: creates a piecewise linear cost term in the objective function","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"TODO: add formulation","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"___","category":"page"},{"location":"formulation_library/General/#StorageManagementCost","page":"General","title":"StorageManagementCost","text":"","category":"section"},{"location":"formulation_library/General/","page":"General","title":"General","text":"Adds an objective function cost term according to:","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"beginaligned\n textmin sum_t quad E^surplus_t * C^penalty - E^shortage_t * C^value\nendaligned","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"Impact of different cost configurations:","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"The following table describes all possible configuration of the StorageManagementCost with the target constraint in hydro or storage device models. Cases 1(a) & 2(a) will have no impact of the models operations and the target constraint will be rendered useless. In most cases that have no energy target and a non-zero value for C^value, if this cost is too high (C^value 0) or too low (C^value 0) can result in either the model holding on to stored energy till the end or the model not storing any energy in the device. This is caused by the fact that when energy target is zero, we have E_t = - E^shortage_t, and - E^shortage_t * C^value in the objective function is replaced by E_t * C^value, thus resulting in C^value to be seen as the cost of stored energy.","category":"page"},{"location":"formulation_library/General/","page":"General","title":"General","text":"Case Energy Target Energy Shortage Cost Energy Value / Energy Surplus cost Effect\nCase 1(a) hatE=0 C^penalty=0 C^value=0 no change\nCase 1(b) hatE=0 C^penalty=0 C^value0 penalty for storing energy\nCase 1(c) hatE=0 C^penalty0 C^value=0 no penalties or incentives applied\nCase 1(d) hatE=0 C^penalty=0 C^value0 incentive for storing energy\nCase 1(e) hatE=0 C^penalty0 C^value0 penalty for storing energy\nCase 1(f) hatE=0 C^penalty0 C^value0 incentive for storing energy\nCase 2(a) hatE0 C^penalty=0 C^value=0 no change\nCase 2(b) hatE0 C^penalty=0 C^value0 penalty on energy storage in excess of target\nCase 2(c) hatE0 C^penalty0 C^value=0 penalty on energy storage short of target\nCase 2(d) hatE0 C^penalty=0 C^value0 incentive on excess energy\nCase 2(e) hatE0 C^penalty0 C^value0 penalty on both excess/shortage of energy\nCase 2(f) hatE0 C^penalty0 C^value0 penalty for shortage, incentive for excess energy","category":"page"},{"location":"modeler_guide/logging/#Logging","page":"Logging","title":"Logging","text":"","category":"section"},{"location":"modeler_guide/logging/","page":"Logging","title":"Logging","text":"PowerSimulations.jl will output many log messages when building systems and running simulations. You may want to customize what gets logged to the console and, optionally, a file.","category":"page"},{"location":"modeler_guide/logging/","page":"Logging","title":"Logging","text":"By default all log messages of level Logging.Info or higher will get displayed to the console. When you run a simulation a simulation-specific logger will take over and log its messages to a file in the logs directory in the simulation output directory. When finished it will relinquish control back to the global logger.","category":"page"},{"location":"modeler_guide/logging/#Configuring-the-global-logger","page":"Logging","title":"Configuring the global logger","text":"","category":"section"},{"location":"modeler_guide/logging/","page":"Logging","title":"Logging","text":"To configure the global logger in a Jupyter Notebook or REPL you may configure your own logger with the Julia Logging standard library or use the convenience function provided by PowerSimulations. This example will log messages of level Logging.Error to console and Logging.Info and higher to the file power-simulations.log in the current directory.","category":"page"},{"location":"modeler_guide/logging/","page":"Logging","title":"Logging","text":"import Logging\nusing PowerSimulations\nlogger = configure_logging(\n console_level = Logging.Error,\n file_level = Logging.Info,\n filename = \"power-simulations.log\"\n)","category":"page"},{"location":"modeler_guide/logging/#Configuring-the-simulation-logger","page":"Logging","title":"Configuring the simulation logger","text":"","category":"section"},{"location":"modeler_guide/logging/","page":"Logging","title":"Logging","text":"You can configure the logging level used by the simulation logger when you call build!(simulation). Here is an example that increases logging verbosity:","category":"page"},{"location":"modeler_guide/logging/","page":"Logging","title":"Logging","text":"import Logging\nusing PowerSimulations\nsimulation = Simulation(...)\nbuild!(simulation, console_level = Logging.Info, file_level = Logging.Debug)","category":"page"},{"location":"modeler_guide/logging/","page":"Logging","title":"Logging","text":"The log file will be located at ///logs/simulation.log.","category":"page"},{"location":"modeler_guide/logging/#Solver-logs","page":"Logging","title":"Solver logs","text":"","category":"section"},{"location":"modeler_guide/logging/","page":"Logging","title":"Logging","text":"You can configure logging for the solver you use. Refer to the solver documentation. PowerSimulations does not redirect or intercept prints to stdout or stderr from other libraries.","category":"page"},{"location":"modeler_guide/logging/#Recorder-events","page":"Logging","title":"Recorder events","text":"","category":"section"},{"location":"modeler_guide/logging/","page":"Logging","title":"Logging","text":"PowerSimulations uses the InfrastructureSystems.Recorder to store simulation events in a log file. Refer to this link for more information.","category":"page"},{"location":"formulation_library/RenewableGen/#PowerSystems.RenewableGen-Formulations","page":"Renewable Generation","title":"PowerSystems.RenewableGen Formulations","text":"","category":"section"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Valid DeviceModels for subtypes of RenewableGen include the following:","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"using PowerSimulations\nusing PowerSystems\nusing DataFrames\nusing Latexify\ncombos = PowerSimulations.generate_device_formulation_combinations()\nfilter!(x -> x[\"device_type\"] <: RenewableGen, combos)\ncombo_table = DataFrame(\n \"Valid DeviceModel\" => [\"`DeviceModel($(c[\"device_type\"]), $(c[\"formulation\"]))`\" for c in combos],\n \"Device Type\" => [\"[$(c[\"device_type\"])](https://nrel-Sienna.github.io/PowerSystems.jl/stable/model_library/generated_$(c[\"device_type\"])/)\" for c in combos],\n \"Formulation\" => [\"[$(c[\"formulation\"])](@ref)\" for c in combos],\n )\nmdtable(combo_table, latex = false)","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"","category":"page"},{"location":"formulation_library/RenewableGen/#RenewableFullDispatch","page":"Renewable Generation","title":"RenewableFullDispatch","text":"","category":"section"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"RenewableFullDispatch","category":"page"},{"location":"formulation_library/RenewableGen/#PowerSimulations.RenewableFullDispatch","page":"Renewable Generation","title":"PowerSimulations.RenewableFullDispatch","text":"Formulation type to add injection variables constrained by a maximum injection time series for RenewableGen\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Variables:","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"ActivePowerVariable:\nBounds: [0.0, ]\nDefault initial value: PowerSystems.get_active_power(device)\nReactivePowerVariable:\nBounds: [0.0, ]\nDefault initial value: PowerSystems.get_reactive_power(device)","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Static Parameters:","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Pg^textmin = PowerSystems.get_active_power_limits(device).min\nQg^textmin = PowerSystems.get_reactive_power_limits(device).min\nQg^textmax = PowerSystems.get_reactive_power_limits(device).max","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Time Series Parameters:","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"using PowerSimulations\nusing PowerSystems\nusing DataFrames\nusing Latexify\ncombos = PowerSimulations.get_default_time_series_names(RenewableGen, RenewableFullDispatch)\ncombo_table = DataFrame(\n \"Parameter\" => map(x -> \"[`$x`](@ref)\", collect(keys(combos))),\n \"Default Time Series Name\" => map(x -> \"`$x`\", collect(values(combos))),\n )\nmdtable(combo_table, latex = false)","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Objective:","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Creates an objective function term based on the VariableCost Options where the quantity term is defined as - Pg_t to incentivize generation from RenewableGen devices.","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Expressions:","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Adds Pg and Qg terms to the respective active and reactive power balance expressions created by the selected Network Formulations","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Constraints:","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"beginaligned\n Pg^textmin le Pg_t le ActivePowerTimeSeriesParameter_t \n Qg^textmin le Qg_t le Qg^textmax\nendaligned","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"","category":"page"},{"location":"formulation_library/RenewableGen/#RenewableConstantPowerFactor","page":"Renewable Generation","title":"RenewableConstantPowerFactor","text":"","category":"section"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"RenewableConstantPowerFactor","category":"page"},{"location":"formulation_library/RenewableGen/#PowerSimulations.RenewableConstantPowerFactor","page":"Renewable Generation","title":"PowerSimulations.RenewableConstantPowerFactor","text":"Formulation type to add real and reactive injection variables with constant power factor with maximum real power injections constrained by a time series for RenewableGen\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Variables:","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"ActivePowerVariable:\nBounds: [0.0, ]\nDefault initial value: PowerSystems.get_active_power(device)\nReactivePowerVariable:\nBounds: [0.0, ]\nDefault initial value: PowerSystems.get_reactive_power(device)","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Static Parameters:","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Pg^textmin = PowerSystems.get_active_power_limits(device).min\nQg^textmin = PowerSystems.get_reactive_power_limits(device).min\nQg^textmax = PowerSystems.get_reactive_power_limits(device).max\npf = PowerSystems.get_power_factor(device)","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Time Series Parameters:","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"using PowerSimulations\nusing PowerSystems\nusing DataFrames\nusing Latexify\ncombos = PowerSimulations.get_default_time_series_names(RenewableGen, RenewableConstantPowerFactor)\ncombo_table = DataFrame(\n \"Parameter\" => map(x -> \"[`$x`](@ref)\", collect(keys(combos))),\n \"Default Time Series Name\" => map(x -> \"`$x`\", collect(values(combos))),\n )\nmdtable(combo_table, latex = false)","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Objective:","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Creates an objective function term based on the VariableCost Options where the quantity term is defined as - Pg_t to incentivize generation from RenewableGen devices.","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Expressions:","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Adds Pg and Qg terms to the respective active and reactive power balance expressions created by the selected Network Formulations","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"Constraints:","category":"page"},{"location":"formulation_library/RenewableGen/","page":"Renewable Generation","title":"Renewable Generation","text":"beginaligned\n Pg^textmin le Pg_t le ActivePowerTimeSeriesParameter_t \n Qg^textmin le Qg_t le Qg^textmax \n Qg_t = pf * Pg_t\nendaligned","category":"page"},{"location":"formulation_library/Service/#PowerSystems.Service-Formulations","page":"PowerSystems.Service Formulations","title":"PowerSystems.Service Formulations","text":"","category":"section"},{"location":"formulation_library/Service/","page":"PowerSystems.Service Formulations","title":"PowerSystems.Service Formulations","text":"TODO","category":"page"},{"location":"model_developer_guide/structure_of_operation_problem/#Structure-of-an-operations-problem-model","page":"Operation Problem Structure","title":"Structure of an operations problem model","text":"","category":"section"},{"location":"model_developer_guide/structure_of_operation_problem/","page":"Operation Problem Structure","title":"Operation Problem Structure","text":"In most cases operation problem models are optimization models. Although in PowerSimulations.jl it is possible to define arbitrary problems that can reflect heuristic decision rules, this is not the common case. This page focuses on explaining the structure of operations problems that employ an optimization problem and solver.","category":"page"},{"location":"model_developer_guide/structure_of_operation_problem/","page":"Operation Problem Structure","title":"Operation Problem Structure","text":"The first aspect to consider when thinking about developing a model compatible with PowerSimulations.jl is that although we support all of JuMP.jl objects, you need to employ anonymous constraints and variables in JuMP and register the constraints, variables and other optimization objects into PowerSimulations.jl's optimization container. Otherwise the features to use your problem in the simulation like the coordination with other problems and post processing won't work.","category":"page"},{"location":"model_developer_guide/structure_of_operation_problem/","page":"Operation Problem Structure","title":"Operation Problem Structure","text":"info: Info\nThe requirements for the simulation of Power Systems operations are more strict than solving an optimization problem once with just JuMP.jl. The requirements imposed by PowerSimulations.jl to integrate your models in a simulation are designed to help with other complex operations that go beyond JuMP.jl scope.","category":"page"},{"location":"model_developer_guide/structure_of_operation_problem/","page":"Operation Problem Structure","title":"Operation Problem Structure","text":"warning: Warning\nAll the code in this page is considered \"pseudo-code\". Copy-paste will likely not work out of the box. You need to develop the internals of the functions correctly for the examples below to work.","category":"page"},{"location":"model_developer_guide/structure_of_operation_problem/#Registering-a-variable-in-the-model","page":"Operation Problem Structure","title":"Registering a variable in the model","text":"","category":"section"},{"location":"model_developer_guide/structure_of_operation_problem/","page":"Operation Problem Structure","title":"Operation Problem Structure","text":"To register a variable in the model, the developer must first allocate the container into the optimization container and then populate it. For example, it require start the build function as follows:","category":"page"},{"location":"model_developer_guide/structure_of_operation_problem/","page":"Operation Problem Structure","title":"Operation Problem Structure","text":"info: Info\nWe recommend calling import PowerSimulations and defining the constant CONST PSI = PowerSimulations to make it easier to read the code and determine which package is responsible for defining the functions.","category":"page"},{"location":"model_developer_guide/structure_of_operation_problem/","page":"Operation Problem Structure","title":"Operation Problem Structure","text":" function PSI.build_model!(model::PSI.DecisionModel{MyCustomModel})\n container = PSI.get_optimization_container(model)\n PSI.set_time_steps!(container, 1:24)\n\n # Create the container for the variable\n variable = PSI.add_variable_container!(\n container,\n PSI.ActivePowerVariable(), # <- This variable is defined in PowerSimulations but the user can define their own\n PSY.ThermalGeneration, # <- Device type for the variable. Can be from PSY or custom defined\n devices_names, # <- First container dimension\n time_steps, # <- Second container dimension\n )\n\n # Iterate over the devices and time to store the JuMP variables into the container.\n for t in time_steps, d in devices\n name = PSY.get_name(d)\n variable[name, t] = JuMP.@variable(get_jump_model(container))\n # It is possible to use PSY getter functions to retrieve data from the generators\n # Any other variable property can be specified inside this loop.\n JuMP.set_upper_bound(variable[name, t], UB_DATA) # <- Optional\n JuMP.set_lower_bound(variable[name, t], LB_DATA) # <- Optional\n end\n\n return\n end","category":"page"},{"location":"model_developer_guide/troubleshooting/#Troubleshooting-model-development","page":"Troubleshooting","title":"Troubleshooting model development","text":"","category":"section"},{"location":"formulation_library/README/#Formulation-documentation-guide","page":"Formulation documentation guide","title":"Formulation documentation guide","text":"","category":"section"},{"location":"formulation_library/README/","page":"Formulation documentation guide","title":"Formulation documentation guide","text":"Formulation documentation should roughly follow the template established by RenewableGen.md","category":"page"},{"location":"formulation_library/README/#Auto-generated-items","page":"Formulation documentation guide","title":"Auto generated items","text":"","category":"section"},{"location":"formulation_library/README/","page":"Formulation documentation guide","title":"Formulation documentation guide","text":"Valid DeviceModel table: just change the device category in the filter function\nTime Series Parameters: just change the device category and formulation in the get_default_time_series_names method call","category":"page"},{"location":"formulation_library/README/#Linked-items","page":"Formulation documentation guide","title":"Linked items","text":"","category":"section"},{"location":"formulation_library/README/","page":"Formulation documentation guide","title":"Formulation documentation guide","text":"Formulations in the Valid DeviceModel table must have a docstring in src/core/formulations.jl\nThe Formulation in the @docs block must have a docstring in src/core/formulations.jl\nThe Variables must have docstrings in src/core/variables.jl \nThe Time Series Parameters must have docstrings in src/core/parameters.jl","category":"page"},{"location":"tutorials/pcm_simulation/#pcm_tutorial","page":"Multi-stage Production Cost Simulation","title":"Sequential Simulations with PowerSimulations.jl","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"Originally Contributed by: Clayton Barrows","category":"page"},{"location":"tutorials/pcm_simulation/#Introduction","page":"Multi-stage Production Cost Simulation","title":"Introduction","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"PowerSimulations.jl supports simulations that consist of sequential optimization problems where results from previous problems inform subsequent problems in a variety of ways. This example demonstrates some of these capabilities to represent electricity market clearing. This example is intended to be an extension of the OperationsProblem tutorial.","category":"page"},{"location":"tutorials/pcm_simulation/#Load-Packages","page":"Multi-stage Production Cost Simulation","title":"Load Packages","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"using PowerSystems\nusing PowerSimulations\nusing HydroPowerSimulations\nconst PSI = PowerSimulations\nusing PowerSystemCaseBuilder\nusing Dates\nusing HiGHS #solver","category":"page"},{"location":"tutorials/pcm_simulation/#Optimizer","page":"Multi-stage Production Cost Simulation","title":"Optimizer","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"It's most convenient to define an optimizer instance upfront and pass it into the DecisionModel constructor. For this example, we can use the free HiGHS solver with a relatively relaxed MIP gap (ratioGap) setting to improve speed.","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"solver = optimizer_with_attributes(HiGHS.Optimizer, \"mip_rel_gap\" => 0.5)","category":"page"},{"location":"tutorials/pcm_simulation/#Hourly-day-ahead-system","page":"Multi-stage Production Cost Simulation","title":"Hourly day-ahead system","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"First, we'll create a System with hourly data to represent day-ahead forecasted wind, solar, and load profiles:","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"sys_DA = build_system(PSISystems, \"modified_RTS_GMLC_DA_sys\")","category":"page"},{"location":"tutorials/pcm_simulation/#Minute-system","page":"Multi-stage Production Cost Simulation","title":"5-Minute system","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"The RTS data also includes 5-minute resolution time series data. So, we can create another System to represent 15 minute ahead forecasted data for a \"real-time\" market:","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"sys_RT = build_system(PSISystems, \"modified_RTS_GMLC_RT_sys\")","category":"page"},{"location":"tutorials/pcm_simulation/#ProblemTemplates-define-stages","page":"Multi-stage Production Cost Simulation","title":"ProblemTemplates define stages","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"Sequential simulations in PowerSimulations are created by defining OperationsProblems that represent stages, and how information flows between executions of a stage and between different stages.","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"Let's start by defining a two stage simulation that might look like a typical day-Ahead and real-time electricity market clearing process.","category":"page"},{"location":"tutorials/pcm_simulation/#Day-ahead-unit-commitment-stage","page":"Multi-stage Production Cost Simulation","title":"Day-ahead unit commitment stage","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"First, we can define a unit commitment template for the day ahead problem. We can use the included UC template, but in this example, we'll replace the ThermalBasicUnitCommitment with the slightly more complex ThermalStandardUnitCommitment for the thermal generators.","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"template_uc = template_unit_commitment()\nset_device_model!(template_uc, ThermalStandard, ThermalStandardUnitCommitment)\nset_device_model!(template_uc, HydroDispatch, HydroDispatchRunOfRiver)","category":"page"},{"location":"tutorials/pcm_simulation/#Define-the-reference-model-for-the-real-time-economic-dispatch","page":"Multi-stage Production Cost Simulation","title":"Define the reference model for the real-time economic dispatch","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"In addition to the manual specification process demonstrated in the OperationsProblem example, PSI also provides pre-specified templates for some standard problems:","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"template_ed = template_economic_dispatch(\n network = NetworkModel(PTDFPowerModel, use_slacks = true),\n)","category":"page"},{"location":"tutorials/pcm_simulation/#Define-the-SimulationModels","page":"Multi-stage Production Cost Simulation","title":"Define the SimulationModels","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"DecisionModels define the problems that are executed in the simulation. The actual problem will change as the stage gets updated to represent different time periods, but the formulations applied to the components is constant within a stage. In this case, we want to define two stages with the ProblemTemplates and the Systems that we've already created.","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"models = SimulationModels(\n decision_models = [\n DecisionModel(template_uc, sys_DA, optimizer = solver, name = \"UC\"),\n DecisionModel(template_ed, sys_RT, optimizer = solver, name = \"ED\"),\n ],\n)","category":"page"},{"location":"tutorials/pcm_simulation/#SimulationSequence","page":"Multi-stage Production Cost Simulation","title":"SimulationSequence","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"Similar to an ProblemTemplate, the SimulationSequence provides a template of how to execute a sequential set of operations problems.","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"Let's review some of the SimulationSequence arguments.","category":"page"},{"location":"tutorials/pcm_simulation/#Chronologies","page":"Multi-stage Production Cost Simulation","title":"Chronologies","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"In PowerSimulations, chronologies define where information is flowing. There are two types of chronologies.","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"inter-stage chronologies: Define how information flows between stages. e.g. day-ahead solutions are used to inform economic dispatch problems\nintra-stage chronologies: Define how information flows between multiple executions of a single stage. e.g. the dispatch setpoints of the first period of an economic dispatch problem are constrained by the ramping limits from setpoints in the final period of the previous problem.","category":"page"},{"location":"tutorials/pcm_simulation/#FeedForward","page":"Multi-stage Production Cost Simulation","title":"FeedForward","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"The definition of exactly what information is passed using the defined chronologies is accomplished with FeedForward. Specifically, FeedForward is used to define what to do with information being passed with an inter-stage chronology. Let's define a FeedForward that affects the semi-continuous range constraints of thermal generators in the economic dispatch problems based on the value of the unit-commitment variables.","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"feedforward = Dict(\n \"ED\" => [\n SemiContinuousFeedforward(\n component_type = ThermalStandard,\n source = OnVariable,\n affected_values = [ActivePowerVariable],\n ),\n ],\n)","category":"page"},{"location":"tutorials/pcm_simulation/#Sequencing","page":"Multi-stage Production Cost Simulation","title":"Sequencing","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"The stage problem length, look-ahead, and other details surrounding the temporal Sequencing of stages are controlled using the structure of the time series data in the Systems. So, to define a typical day-ahead - real-time sequence:","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"Day ahead problems should represent 48 hours, advancing 24 hours after each execution (24-hour look-ahead)\nReal time problems should represent 1 hour (12 5-minute periods), advancing 15 min after each execution (15 min look-ahead)","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"We can adjust the time series data to reflect this structure in each System:","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"transform_single_time_series!(sys_DA, 48, Hour(1))\ntransform_single_time_series!(sys_RT, 12, Minute(15))","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"Now we can put it all together to define a SimulationSequence","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"DA_RT_sequence = SimulationSequence(\n models = models,\n ini_cond_chronology = InterProblemChronology(),\n feedforwards = feedforward,\n)","category":"page"},{"location":"tutorials/pcm_simulation/#Simulation","page":"Multi-stage Production Cost Simulation","title":"Simulation","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"Now, we can build and execute a simulation using the SimulationSequence and Stages that we've defined.","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"sim = Simulation(\n name = \"rts-test\",\n steps = 2,\n models = models,\n sequence = DA_RT_sequence,\n simulation_folder = mktempdir(\".\", cleanup = true),\n)","category":"page"},{"location":"tutorials/pcm_simulation/#Build-simulation","page":"Multi-stage Production Cost Simulation","title":"Build simulation","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"build!(sim)","category":"page"},{"location":"tutorials/pcm_simulation/#Execute-simulation","page":"Multi-stage Production Cost Simulation","title":"Execute simulation","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"the following command returns the status of the simulation (0: is proper execution) and stores the results in a set of HDF5 files on disk.","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"execute!(sim, enable_progress_bar = false)","category":"page"},{"location":"tutorials/pcm_simulation/#Results","page":"Multi-stage Production Cost Simulation","title":"Results","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"To access the results, we need to load the simulation result metadata and then make requests to the specific data of interest. This allows you to efficiently access the results of interest without overloading resources.","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"results = SimulationResults(sim);\nuc_results = get_decision_problem_results(results, \"UC\"); # UC stage result metadata\ned_results = get_decision_problem_results(results, \"ED\"); # ED stage result metadata","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"We can read all the result variables","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"read_variables(uc_results)","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"or all the parameters","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"read_parameters(uc_results)","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"We can just list the variable names contained in uc_results:","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"list_variable_names(uc_results)","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"and a number of parameters (this pattern also works for aux_variables, expressions, and duals)","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"list_parameter_names(uc_results)","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"Now we can read the specific results of interest for a specific problem, time window (optional), and set of variables, duals, or parameters (optional)","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"Dict([\n v => read_variable(uc_results, v) for v in [\n \"ActivePowerVariable__RenewableDispatch\",\n \"ActivePowerVariable__HydroDispatch\",\n \"StopVariable__ThermalStandard\",\n ]\n])","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"Or if we want the result of just one variable, parameter, or dual (must be defined in the problem definition), we can use:","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"read_parameter(\n ed_results,\n \"ActivePowerTimeSeriesParameter__RenewableFix\",\n initial_time = DateTime(\"2020-01-01T06:00:00\"),\n count = 5,\n)","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"note that this returns the results of each execution step in a separate dataframe *","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"If you want the realized results (without lookahead periods), you can call read_realized_*:","category":"page"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"read_realized_variables(\n uc_results,\n [\"ActivePowerVariable__ThermalStandard\", \"ActivePowerVariable__RenewableDispatch\"],\n)","category":"page"},{"location":"tutorials/pcm_simulation/#Plotting","page":"Multi-stage Production Cost Simulation","title":"Plotting","text":"","category":"section"},{"location":"tutorials/pcm_simulation/","page":"Multi-stage Production Cost Simulation","title":"Multi-stage Production Cost Simulation","text":"Take a look at the plotting capabilities in PowerGraphics.jl","category":"page"},{"location":"modeler_guide/running_a_simulation/#running_a_simulation","page":"Simulation","title":"Simulation","text":"","category":"section"},{"location":"modeler_guide/running_a_simulation/","page":"Simulation","title":"Simulation","text":"tip: Always try to solve the operations problem first before putting together the simulation\nIt is not uncommon that when trying to solve a complex simulation the resulting models are infeasible. This situation can be the result of many factors like the input data, the incorrect specification of the initial conditions for models with time dependencies or a poorly specified model. Therefore, it's highly recommended to run and analyze an Operations Problems that reflect the problems that will be included in a simulation prior to executing a simulation.","category":"page"},{"location":"modeler_guide/running_a_simulation/","page":"Simulation","title":"Simulation","text":"Check out the Operations Problem Tutorial","category":"page"},{"location":"modeler_guide/running_a_simulation/#Feedforward","page":"Simulation","title":"Feedforward","text":"","category":"section"},{"location":"modeler_guide/running_a_simulation/","page":"Simulation","title":"Simulation","text":"TODO","category":"page"},{"location":"modeler_guide/running_a_simulation/#Sequencing","page":"Simulation","title":"Sequencing","text":"","category":"section"},{"location":"modeler_guide/running_a_simulation/","page":"Simulation","title":"Simulation","text":"In a typical simulation pipeline, we want to connect daily (24-hours) day-ahead unit commitment problems, with multiple economic dispatch problems. Usually, our day-ahead unit commitment problem will have an hourly (1-hour) resolution, while the economic dispatch will have a 5-minute resolution.","category":"page"},{"location":"modeler_guide/running_a_simulation/","page":"Simulation","title":"Simulation","text":"Depending on your problem, it is common to use a 2-day look-ahead for unit commitment problems, so in this case, the Day-Ahead problem will have: resolution = Hour(1) with interval = Hour(24) and horizon = 48. In the case of the economic dispatch problem, it is common to use a look-ahead of two hours. Thus, the Real-Time problem will have: resolution = Minute(5), with interval = Minute(5) (we only store the first operating point) and horizon = 24 (24 time steps of 5 minutes are 120 minutes, that is 2 hours).","category":"page"},{"location":"tutorials/adding_new_device_formulation/#Adding-Device-Formulations","page":"Adding Device Formulations","title":"Adding Device Formulations","text":"","category":"section"},{"location":"formulation_library/Network/#network_formulations","page":"Network","title":"Network Formulations","text":"","category":"section"},{"location":"formulation_library/Network/","page":"Network","title":"Network","text":"TODO","category":"page"},{"location":"formulation_library/Load/#PowerSystems.ElectricLoad-Formulations","page":"Load","title":"PowerSystems.ElectricLoad Formulations","text":"","category":"section"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Valid DeviceModels for subtypes of ElectricLoad include the following:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"using PowerSimulations\nusing PowerSystems\nusing DataFrames\nusing Latexify\ncombos = PowerSimulations.generate_device_formulation_combinations()\nfilter!(x -> x[\"device_type\"] <: ElectricLoad, combos)\ncombo_table = DataFrame(\n \"Valid DeviceModel\" => [\"`DeviceModel($(c[\"device_type\"]), $(c[\"formulation\"]))`\" for c in combos],\n \"Device Type\" => [\"[$(c[\"device_type\"])](https://nrel-Sienna.github.io/PowerSystems.jl/stable/model_library/generated_$(c[\"device_type\"])/)\" for c in combos],\n \"Formulation\" => [\"[$(c[\"formulation\"])](@ref)\" for c in combos],\n )\nmdtable(combo_table, latex = false)","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"","category":"page"},{"location":"formulation_library/Load/#StaticPowerLoad","page":"Load","title":"StaticPowerLoad","text":"","category":"section"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"StaticPowerLoad","category":"page"},{"location":"formulation_library/Load/#PowerSimulations.StaticPowerLoad","page":"Load","title":"PowerSimulations.StaticPowerLoad","text":"Formulation type to add a time series parameter for non-dispatchable ElectricLoad withdrawls to power balance constraints\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Variables:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"No variables are created","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Time Series Parameters:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"using PowerSimulations\nusing PowerSystems\nusing DataFrames\nusing Latexify\ncombos = PowerSimulations.get_default_time_series_names(ElectricLoad, StaticPowerLoad)\ncombo_table = DataFrame(\n \"Parameter\" => map(x -> \"[`$x`](@ref)\", collect(keys(combos))),\n \"Default Time Series Name\" => map(x -> \"`$x`\", collect(values(combos))),\n )\nmdtable(combo_table, latex = false)","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Expressions:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Subtracts the parameters listed above from the respective active and reactive power balance expressions created by the selected Network Formulations","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Constraints:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"No constraints are created","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"","category":"page"},{"location":"formulation_library/Load/#PowerLoadInterruption","page":"Load","title":"PowerLoadInterruption","text":"","category":"section"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"PowerLoadInterruption","category":"page"},{"location":"formulation_library/Load/#PowerSimulations.PowerLoadInterruption","page":"Load","title":"PowerSimulations.PowerLoadInterruption","text":"Formulation type to enable (binary) load interruptions\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Variables:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"ActivePowerVariable:\nBounds: [0.0, ]\nDefault initial value: 0.0\nReactivePowerVariable:\nBounds: [0.0, ]\nDefault initial value: 0.0\nOnVariable:\nBounds: {0,1}\nDefault initial value: 1","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Time Series Parameters:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"using PowerSimulations\nusing PowerSystems\nusing DataFrames\nusing Latexify\ncombos = PowerSimulations.get_default_time_series_names(ElectricLoad, PowerLoadInterruption)\ncombo_table = DataFrame(\n \"Parameter\" => map(x -> \"[`$x`](@ref)\", collect(keys(combos))),\n \"Default Time Series Name\" => map(x -> \"`$x`\", collect(values(combos))),\n )\nmdtable(combo_table, latex = false)","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Objective:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Creates an objective function term based on the VariableCost Options where the quantity term is defined as Pg.","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Expressions:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Adds Pg and Qg terms and to the respective active and reactive power balance expressions created by the selected Network Formulations\nSubtracts the time series parameters listed above terms from the respective active and reactive power balance expressions created by the selected Network Formulations","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Constraints:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Pg and Qg represent the \"unserved\" active and reactive power loads","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"beginaligned\n Pg_t le ActivePowerTimeSeriesParameter_t\n Pg_t - u_t ActivePowerTimeSeriesParameter_t le 0 \n Qg_t le ReactivePowerTimeSeriesParameter_t\n Qg_t - u_t ReactivePowerTimeSeriesParameter_tle 0\nendaligned","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"","category":"page"},{"location":"formulation_library/Load/#PowerLoadDispatch","page":"Load","title":"PowerLoadDispatch","text":"","category":"section"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"PowerLoadDispatch","category":"page"},{"location":"formulation_library/Load/#PowerSimulations.PowerLoadDispatch","page":"Load","title":"PowerSimulations.PowerLoadDispatch","text":"Formulation type to enable (continuous) load interruption dispatch\n\n\n\n\n\n","category":"type"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Variables:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"ActivePowerVariable:\nBounds: [0.0, ]\nDefault initial value: PowerSystems.get_active_power(device)\nReactivePowerVariable:\nBounds: [0.0, ]\nDefault initial value: PowerSystems.get_reactive_power(device)","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Time Series Parameters:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"using PowerSimulations\nusing PowerSystems\nusing DataFrames\nusing Latexify\ncombos = PowerSimulations.get_default_time_series_names(ElectricLoad, PowerLoadDispatch)\ncombo_table = DataFrame(\n \"Parameter\" => map(x -> \"[`$x`](@ref)\", collect(keys(combos))),\n \"Default Time Series Name\" => map(x -> \"`$x`\", collect(values(combos))),\n )\nmdtable(combo_table, latex = false)","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Objective:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Creates an objective function term based on the VariableCost Options where the quantity term is defined as Pg.","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Expressions:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Adds Pg and Qg terms and to the respective active and reactive power balance expressions created by the selected Network Formulations\nSubtracts the time series parameters listed above terms from the respective active and reactive power balance expressions created by the selected Network Formulations","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Constraints:","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"Pg and Qg represent the \"unserved\" active and reactive power loads","category":"page"},{"location":"formulation_library/Load/","page":"Load","title":"Load","text":"beginaligned\n Pg_t le ActivePowerTimeSeriesParameter_t\n Qg_t le ReactivePowerTimeSeriesParameter_t\nendaligned","category":"page"},{"location":"#PowerSimulations.jl","page":"Welcome Page","title":"PowerSimulations.jl","text":"","category":"section"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"CurrentModule = PowerSimulations","category":"page"},{"location":"#Overview","page":"Welcome Page","title":"Overview","text":"","category":"section"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"PowerSimulations.jl is a power system operations simulation tool developed as a flexible and open source software for quasi-static power systems simulations including Production Cost Models. PowerSimulations.jl tackles the issues of developing a simulation model in a modular way providing tools for the formulation of decision models and emulation models that can be solved independently or in an interconnected fashion.","category":"page"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"PowerSimulations.jl supports the workflows to develop simulations by separating the development of operations models and simulation models.","category":"page"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"Operation Models: Optimization model used to find the solution of an operation problem.\nSimulations Models: Defined the requirements to find solutions to a sequence of operation problems in a way that resembles the procedures followed by operators.","category":"page"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"The most common Simulation Model is the solution of a Unit Commitment and Economic Dispatch sequence of problems. This model is used in commercial Production Cost Modeling tools, but it has a limited scope of analysis.","category":"page"},{"location":"#How-the-documentation-is-structured","page":"Welcome Page","title":"How the documentation is structured","text":"","category":"section"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"PowerSimulations.jl documentation and code are organized according to the needs of different users depending on their skillset and requirements. In broad terms there are three categories:","category":"page"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"Modeler: Users that want to solve an operations problem or run a simulation using the existing models in PowerSimulations.jl. For instance, answer questions about the change in operation costs in future fuel mixes. Check the formulations library page to choose a modeling strategy that fits your needs.\nModel Developer: Users that want to develop custom models and workflows for the simulation of a power system operation. For instance, study the impacts of an stochastic optimization problem over a deterministic.\nCode Base Developers: Users that want to add new core functionalities or fix bugs in the core capabilities of PowerSimulations.jl.","category":"page"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"PowerSimulations.jl is an active project under development, and we welcome your feedback, suggestions, and bug reports.","category":"page"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"Note: PowerSimulations.jl uses the data model implemented in PowerSystems.jl to construct optimization models. In most cases, you need to add PowerSystems.jl to your scripts.","category":"page"},{"location":"#Installation","page":"Welcome Page","title":"Installation","text":"","category":"section"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"The latest stable release of PowerSimulations can be installed using the Julia package manager with","category":"page"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"] add PowerSimulations","category":"page"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"For the current development version, \"checkout\" this package with","category":"page"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"] add PowerSimulations#main","category":"page"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"An appropriate optimization solver is required for running PowerSimulations models. Refer to JuMP.jl solver's page to select the most appropriate for the application of interest.","category":"page"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"","category":"page"},{"location":"","page":"Welcome Page","title":"Welcome Page","text":"PowerSystems has been developed as part of the Scalable Integrated Infrastructure Planning (SIIP) initiative at the U.S. Department of Energy's National Renewable Energy Laboratory (NREL).","category":"page"}] +} diff --git a/v0.27.5/siteinfo.js b/v0.27.5/siteinfo.js new file mode 100644 index 0000000000..6aa6e6a67e --- /dev/null +++ b/v0.27.5/siteinfo.js @@ -0,0 +1 @@ +var DOCUMENTER_CURRENT_VERSION = "v0.27.5"; diff --git a/v0.27.5/tutorials/adding_new_device_formulation/index.html b/v0.27.5/tutorials/adding_new_device_formulation/index.html new file mode 100644 index 0000000000..f7724b46c8 --- /dev/null +++ b/v0.27.5/tutorials/adding_new_device_formulation/index.html @@ -0,0 +1,2 @@ + +Adding Device Formulations · PowerSimulations.jl diff --git a/v0.27.5/tutorials/adding_new_problem_model/index.html b/v0.27.5/tutorials/adding_new_problem_model/index.html new file mode 100644 index 0000000000..fadeeb791c --- /dev/null +++ b/v0.27.5/tutorials/adding_new_problem_model/index.html @@ -0,0 +1,76 @@ + +Adding an Operations Problem Model · PowerSimulations.jl

    Adding an Operations Problem Model

    This tutorial will show how to create a custom decision problem model. These cases are the ones where the user want to solve a fully specified problem. Some examples of custom decision models include:

    • Solving a custom Security Constrained Unit Commitment Problem
    • Solving a market agent utility maximization Problem. See examples of this functionality in HybridSystemsSimulations.jl

    The tutorial follows the usual steps for operational model building. First, build the decision model in isolation and second, integrate it into a simulation. In most cases there will be more than one way of achieving the same objective when it comes to implementing the model. This guide shows a general set of steps and requirements but it is by no means an exhaustive and detailed guide on developing custom decision models.

    Warning

    All the code in this tutorial is considered "pseudo-code". Copy-paste will likely not work out of the box. You need to develop the internals of the functions correctly for the examples below to work.

    General Rules

    1. As a general rule you need to understand Julia's terminology such as multiple dispatch, parametric structs and method overloading, among others. Developing custom models for an operational simulation is a highly technical task and requires skilled development. This tutorial also requires good understanding of PowerSystems.jl data structures and features which are covered in the tutorials section of PowerSystems.jl documentation.

    Finally, developing a custom model decision model that will employ an optimization model under the hood requires understanding JuMP.jl.

    1. Need to employ anonymous constraints and variables in JuMP

    and register the constraints, variables and other optimization objects into PowerSimulations.jl's optimization container. Otherwise the features to use your problem in the simulation like the coordination with other problems and post processing won't work. More on this in the section How to develop your build_model! function below.

    1. Implement the required methods for your custom decision models. In some cases it will be possible to re-use some of the other methods that exist in PowerSimulations to make life easier for variable addition and constraint creation but this is not required.

    Decision Problem

    Step 1: Define a Custom Decision Problem

    Define a decision problem struct as a subtype of PowerSimulations.DecisionProblem. This requirement will enable a lot of the underlying functionality that relies on multiple dispatch. DecisionProblems are used to parameterize the behavior of DecisionModel objects which are just containers for the parameters, references and the optimization problem.

    It is possible to define a Custom Decision Problem that gives the user full control over the build, solve and execution process since it imposes less requirements on the developer. However, with less requirements there are also less checks and validations performed inside of PowerSimulations which might lead to unexpected errors

    struct MyCustomDecisionProblem <: PSI.DecisionProblem end

    Alternatively, it is possible to define a Custom Decision Problem subtyping from DefaultDecisionProblem which imposes more requirements and structure onto the developer but employs more checks and validations in the process. Be aware that this route will decrease the flexibility of what can be done inside the custom model.

    struct MyCustomDecisionProblem <: PSI.DefaultDecisionProblem end

    Once the problem type is defined, initialize the decision model container with your custom decision problem passing the solver and some of the settings you need for the solution of the problem. For custom problems some of the settings need manual implementation by the developer. Settings availability is also dependent on wether you choose to subtype from PSI.DecisionProblem or PSI.DefaultDecisionProblem

    my_model = DecisionModel{MyCustomDecisionProblem}(
    +    sys;
    +    name = "MyModel",
    +    optimizer = optimizer_with_attributes(HiGHS.Optimizer),
    +     optimizer_solve_log_print = true,
    +)

    Mandatory Method Implementations

    1. build_model!: This method build the JuMP optimization model.

    Optional Method Overloads

    These methods can be defined optionally for your problem. By default for problems subtyped from DecisionProblem these checks are not executed. If the problems are subtyped from DefaultDecisionProblem these checks are always conducted with PowerSimulations defaults and require compliance with those defaults to pass. In any case, these can be overloaded when necessary depending on the problem requirements.

    1. validate_template
    2. validate_time_series
    3. reset!
    4. solve_impl!

    How to develop your build_model! function

    Registering a variable in the model

    To register a variable in the model, the developer must first allocate the container into the optimization container and then populate it. For example, it require start the build function as follows:

    Info

    We recommend calling import PowerSimulations and defining the constant CONST PSI = PowerSimulations to make it easier to read the code and determine which package is responsible for defining the functions.

        function PSI.build_model!(model::PSI.DecisionModel{MyCustomDecisionProblem})
    +        container = PSI.get_optimization_container(model)
    +        time_steps = 1:24
    +        PSI.set_time_steps!(container, time_steps)
    +        system = PSI.get_system(model)
    +
    +        thermal_gens = PSY.get_components(PSY.ThermalStandard, system)
    +        thermal_gens_names = PSY.get_name.(thermal_gens)
    +
    +        # Create the container for the variable
    +        variable = PSI.add_variable_container!(
    +            container,
    +            PSI.ActivePowerVariable(), # <- This variable is defined in PowerSimulations but the user can define their own
    +            PSY.ThermalGeneration, # <- Device type for the variable. Can be from PSY or custom defined
    +            thermal_gens_names, # <- First container dimension
    +            time_steps, # <- Second container dimension
    +        )
    +
    +        # Iterate over the devices and time to store the JuMP variables into the container.
    +        for t in time_steps, d in thermal_gens_names
    +            name = PSY.get_name(d)
    +            variable[name, t] = JuMP.@variable(get_jump_model(container))
    +            # It is possible to use PSY getter functions to retrieve data from the generators
    +            JuMP.set_upper_bound(variable[name, t], UB_DATA) # <- Optional
    +            JuMP.set_lower_bound(variable[name, t], LB_DATA) # <- Optional
    +        end
    +
    +        # Add More Variables.....
    +
    +        return
    +    end

    Registering a constraint in the model

    A similar pattern is used to add constraints to the model, in this example the field meta is used to avoid creating unnecessary duplicate constraint types. For instance to reflect upperbound and lowerbound or upwards and downwards constraints. Meta can take any string value except for the _ character.

        function PSI.build_model!(model::PSI.DecisionModel{MyCustomDecisionProblem})
    +        container = PSI.get_optimization_container(model)
    +        time_steps = 1:24
    +        PSI.set_time_steps!(container, time_steps)
    +        system = PSI.get_system(model)
    +
    +        # VARIABLE ADDITION CODE
    +
    +        # Constraint additions
    +        con_ub = PSI.add_constraints_container!(
    +            container,
    +            PSI.RangeLimitConstraint(), # <- Constraint Type defined by PSI or your own
    +            PSY.ThermalGeneration, # <- Device type for variable. Can be PSY or custom
    +            thermal_gens_names, # <- First container dimension
    +            time_steps; # <- Second container dimension
    +            meta = "ub" # <- meta allows to reuse a constraint definition for similar constraints. It only requires to be a string
    +            )
    +
    +        con_lb = PSI.add_constraints_container!(
    +            container,
    +            PSI.RangeLimitConstraint(),
    +            PSY.ThermalGeneration,
    +            thermal_gens_names, # <- First container dimension
    +            time_steps; # <- Second container dimension
    +            meta = "lb" # <- meta allows to reuse a constraint definition for similar constraints. It only requires to be a string
    +            )
    +
    +        # Retrieve a relevant variable from the container if not defined in
    +        variable = PSI.get_variable(container, PSI.ActivePowerVariable(), PSY.ThermalGeneration)
    +        for device in devices, t in time_steps
    +            ci_name = PSY.get_name(device)
    +            limits = get_min_max_limits(device) # depends on constraint type and formulation type
    +            con_ub[ci_name, t] =
    +                JuMP.@constraint(get_jump_model(container), variable[ci_name, t] >= limits.min)
    +            con_lb[ci_name, t] =
    +                JuMP.@constraint(get_jump_model(container), variable[ci_name, t] >= limits.min)
    +        end
    +
    +        return
    +    end
    diff --git a/v0.27.5/tutorials/basics_of_developing_models/index.html b/v0.27.5/tutorials/basics_of_developing_models/index.html new file mode 100644 index 0000000000..11ea581742 --- /dev/null +++ b/v0.27.5/tutorials/basics_of_developing_models/index.html @@ -0,0 +1,2 @@ + +Basics of Developing Operation Models · PowerSimulations.jl diff --git a/v0.27.5/tutorials/decision_problem/index.html b/v0.27.5/tutorials/decision_problem/index.html new file mode 100644 index 0000000000..b7256a9984 --- /dev/null +++ b/v0.27.5/tutorials/decision_problem/index.html @@ -0,0 +1,352 @@ + +Single-step Problem · PowerSimulations.jl

    Operations problems with PowerSimulations.jl

    Originally Contributed by: Clayton Barrows

    Introduction

    PowerSimulations.jl supports the construction and solution of optimal power system scheduling problems (Operations Problems). Operations problems form the fundamental building blocks for sequential simulations. This example shows how to specify and customize a the mathematics that will be applied to the data with an ProblemTemplate, build and execute an DecisionModel, and access the results.

    Load Packages

    using PowerSystems
    +using PowerSimulations
    +using HydroPowerSimulations
    +using PowerSystemCaseBuilder
    +using HiGHS # solver

    Data

    Note

    PowerSystemCaseBuilder.jl is a helper library that makes it easier to reproduce examples in the documentation and tutorials. Normally you would pass your local files to create the system data instead of calling the function build_system. For more details visit PowerSystemCaseBuilder Documentation

    sys = build_system(PSISystems, "modified_RTS_GMLC_DA_sys")
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    System
    PropertyValue
    Name
    Description
    System Units BaseSYSTEM_BASE
    Base Power100.0
    Base Frequency60.0
    Num Components501
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Static Components
    TypeCountHas Static Time SeriesHas Forecasts
    ACBus73falsefalse
    Arc109falsefalse
    Area3truetrue
    FixedAdmittance3truetrue
    HydroDispatch1truetrue
    Line105falsefalse
    LoadZone21falsefalse
    PowerLoad51truetrue
    RenewableDispatch29truetrue
    RenewableFix31truetrue
    TapTransformer15falsefalse
    ThermalStandard54falsefalse
    TwoTerminalHVDCLine1falsefalse
    VariableReserve1truetrue
    VariableReserve4truetrue
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Time Series Summary
    PropertyValue
    Components with time series data123
    Total StaticTimeSeries124
    Total Forecasts124
    Resolution60 minutes
    First initial time2020-01-01T00:00:00
    Last initial time2020-12-30T00:00:00
    Horizon48
    Interval1440 minutes
    Forecast window count365
    +

    Define a problem specification with an ProblemTemplate

    You can create an empty template with:

    template_uc = ProblemTemplate()
    + + + + + + + + + + + + + + + + + + + +
    Network Model
    Network ModelCopperPlatePowerModel
    Slacksfalse
    PTDFfalse
    DualsNone
    + + + + + + + + + + + + +
    Device Models
    Device TypeFormulationSlacks
    +

    Now, you can add a DeviceModel for each device type to create an assignment between PowerSystems device types and the subtypes of AbstractDeviceFormulation. PowerSimulations has a variety of different AbstractDeviceFormulation subtypes that can be applied to different PowerSystems device types, each dispatching to different methods for populating optimization problem objectives, variables, and constraints. Documentation on the formulation options for various devices can be found in the formulation library docs

    Branch Formulations

    Here is an example of relatively standard branch formulations. Other formulations allow for selective enforcement of transmission limits and greater control on transformer settings.

    set_device_model!(template_uc, Line, StaticBranch)
    +set_device_model!(template_uc, Transformer2W, StaticBranch)
    +set_device_model!(template_uc, TapTransformer, StaticBranch)

    Injection Device Formulations

    Here we define template entries for all devices that inject or withdraw power on the network. For each device type, we can define a distinct AbstractDeviceFormulation. In this case, we're defining a basic unit commitment model for thermal generators, curtailable renewable generators, and fixed dispatch (net-load reduction) formulations for HydroDispatch and RenewableFix devices.

    set_device_model!(template_uc, ThermalStandard, ThermalStandardUnitCommitment)
    +set_device_model!(template_uc, RenewableDispatch, RenewableFullDispatch)
    +set_device_model!(template_uc, PowerLoad, StaticPowerLoad)
    +set_device_model!(template_uc, HydroDispatch, HydroDispatchRunOfRiver)
    +set_device_model!(template_uc, RenewableFix, FixedOutput)

    Service Formulations

    We have two VariableReserve types, parameterized by their direction. So, similar to creating DeviceModels, we can create ServiceModels. The primary difference being that DeviceModel objects define how constraints get created, while ServiceModel objects define how constraints get modified.

    set_service_model!(template_uc, VariableReserve{ReserveUp}, RangeReserve)
    +set_service_model!(template_uc, VariableReserve{ReserveDown}, RangeReserve)

    Network Formulations

    Finally, we can define the transmission network specification that we'd like to model. For simplicity, we'll choose a copper plate formulation. But there are dozens of specifications available through an integration with PowerModels.jl. Note that many formulations will require appropriate data and may be computationally intractable

    set_network_model!(template_uc, NetworkModel(CopperPlatePowerModel))

    DecisionModel

    Now that we have a System and an ProblemTemplate, we can put the two together to create an DecisionModel that we solve.

    Optimizer

    It's most convenient to define an optimizer instance upfront and pass it into the DecisionModel constructor. For this example, we can use the free HiGHS solver with a relatively relaxed MIP gap (ratioGap) setting to improve speed.

    solver = optimizer_with_attributes(HiGHS.Optimizer, "mip_rel_gap" => 0.5)
    MathOptInterface.OptimizerWithAttributes(HiGHS.Optimizer, Pair{MathOptInterface.AbstractOptimizerAttribute, Any}[MathOptInterface.RawOptimizerAttribute("mip_rel_gap") => 0.5])

    Build an DecisionModel

    The construction of an DecisionModel essentially applies an ProblemTemplate to System data to create a JuMP model.

    problem = DecisionModel(template_uc, sys; optimizer = solver, horizon = 24)
    +build!(problem, output_dir = mktempdir())
    BuildStatus.BUILT = 0
    Tip

    The principal component of the DecisionModel is the JuMP model. But you can serialize to a file using the following command:

        serialize_optimization_model(problem, save_path)

    Keep in mind that if the setting "storevariablenames" is set to False then the file won't show the model's names.

    Solve an DecisionModel

    solve!(problem)
    RunStatus.SUCCESSFUL = 0

    Results Inspection

    PowerSimulations collects the DecisionModel results into a ProblemResults struct:

    res = ProblemResults(problem)

    Start: 2020-01-01T00:00:00

    +

    End: 2020-01-01T23:00:00

    +

    Resolution: 60 minutes

    + + + + + + + + + + + + + + +
    PowerSimulations Problem Auxiliary variables Results
    TimeDurationOn__ThermalStandard
    HydroEnergyOutput__HydroDispatch
    TimeDurationOff__ThermalStandard
    + + + + + + + + + + + + + + +
    PowerSimulations Problem Expressions Results
    ProductionCostExpression__RenewableDispatch
    ProductionCostExpression__ThermalStandard
    ProductionCostExpression__HydroDispatch
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    PowerSimulations Problem Parameters Results
    ActivePowerTimeSeriesParameter__RenewableDispatch
    RequirementTimeSeriesParameter__VariableReserve__ReserveUp__Spin_Up_R2
    RequirementTimeSeriesParameter__VariableReserve__ReserveDown__Reg_Down
    ActivePowerTimeSeriesParameter__RenewableFix
    RequirementTimeSeriesParameter__VariableReserve__ReserveUp__Spin_Up_R3
    ActivePowerTimeSeriesParameter__PowerLoad
    RequirementTimeSeriesParameter__VariableReserve__ReserveUp__Reg_Up
    ActivePowerTimeSeriesParameter__HydroDispatch
    RequirementTimeSeriesParameter__VariableReserve__ReserveUp__Spin_Up_R1
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    PowerSimulations Problem Variables Results
    OnVariable__ThermalStandard
    ActivePowerReserveVariable__VariableReserve__ReserveUp__Spin_Up_R3
    StopVariable__ThermalStandard
    ActivePowerVariable__ThermalStandard
    ActivePowerReserveVariable__VariableReserve__ReserveUp__Spin_Up_R2
    ActivePowerReserveVariable__VariableReserve__ReserveDown__Reg_Down
    ActivePowerVariable__RenewableDispatch
    ActivePowerVariable__HydroDispatch
    ActivePowerReserveVariable__VariableReserve__ReserveUp__Reg_Up
    StartVariable__ThermalStandard
    ActivePowerReserveVariable__VariableReserve__ReserveUp__Spin_Up_R1
    +

    Optimizer Stats

    The optimizer summary is included

    get_optimizer_stats(res)
    1×21 DataFrame
    Rowdetailed_statsobjective_valuetermination_statusprimal_statusdual_statussolver_solve_timeresult_counthas_valueshas_dualsobjective_boundrelative_gapdual_objective_valuesolve_timebarrier_iterationssimplex_iterationsnode_counttimed_solve_timetimed_calculate_aux_variablestimed_calculate_dual_variablessolve_bytes_allocsec_in_gc
    BoolFloat64Int64Int64Int64Float64Int64BoolBoolMissingMissingMissingFloat64MissingMissingMissingFloat64Float64Float64Float64Float64
    1false2.35696e6110NaN1falsefalsemissingmissingmissing0.56964missingmissingmissing0.6352310.3257420.0004368812.53066e70.0

    Objective Function Value

    get_objective_value(res)
    2.356961384741412e6

    Variable, Parameter, Auxillary Variable, Dual, and Expression Values

    The solution value data frames for variables, parameters, auxillary variables, duals and expressions can be accessed using the read_ methods:

    read_variables(res)
    Dict{String, DataFrames.DataFrame} with 11 entries:
    +  "ActivePowerReserveVaria… => 24×52 DataFrame…
    +  "StopVariable__ThermalSt… => 24×55 DataFrame…
    +  "ActivePowerReserveVaria… => 24×52 DataFrame…
    +  "OnVariable__ThermalStan… => 24×55 DataFrame…
    +  "ActivePowerVariable__Hy… => 24×2 DataFrame…
    +  "ActivePowerReserveVaria… => 24×19 DataFrame…
    +  "StartVariable__ThermalS… => 24×55 DataFrame…
    +  "ActivePowerVariable__Th… => 24×55 DataFrame…
    +  "ActivePowerVariable__Re… => 24×30 DataFrame…
    +  "ActivePowerReserveVaria… => 24×18 DataFrame…
    +  "ActivePowerReserveVaria… => 24×17 DataFrame…

    Or, you can read a single parameter values for parameters that exist in the results.

    list_parameter_names(res)
    +read_parameter(res, "ActivePowerTimeSeriesParameter__RenewableDispatch")
    24×30 DataFrame
    RowDateTime122_WIND_1324_PV_3312_PV_1102_PV_1101_PV_1324_PV_2313_PV_2104_PV_1101_PV_2309_WIND_1310_PV_2113_PV_1317_WIND_1314_PV_1324_PV_1103_PV_1303_WIND_1314_PV_2102_PV_2314_PV_3320_PV_1101_PV_3319_PV_1314_PV_4310_PV_1215_PV_1313_PV_1101_PV_4119_PV_1
    DateTimeFloat64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64Float64
    12020-01-01T00:00:00713.20.00.00.00.00.00.00.00.0142.80.00.0795.10.00.00.0480.80.00.00.00.00.00.00.00.00.00.00.00.0
    22020-01-01T01:00:00712.80.00.00.00.00.00.00.00.0139.10.00.0794.40.00.00.0634.90.00.00.00.00.00.00.00.00.00.00.00.0
    32020-01-01T02:00:00708.40.00.00.00.00.00.00.00.0145.30.00.0773.60.00.00.0487.30.00.00.00.00.00.00.00.00.00.00.00.0
    42020-01-01T03:00:00710.70.00.00.00.00.00.00.00.0144.80.00.0767.30.00.00.0432.70.00.00.00.00.00.00.00.00.00.00.00.0
    52020-01-01T04:00:00701.40.00.00.00.00.00.00.00.0137.10.00.0752.20.00.00.0407.90.00.00.00.00.00.00.00.00.00.00.00.0
    62020-01-01T05:00:00682.50.00.00.00.00.00.00.00.098.60.00.0719.40.00.00.0440.20.00.00.00.00.00.00.00.00.00.00.00.0
    72020-01-01T06:00:00614.70.00.00.00.00.00.00.00.062.20.00.0655.30.00.00.0377.30.00.00.00.00.00.00.00.00.00.00.00.0
    82020-01-01T07:00:00517.736.452.230.629.636.462.229.830.447.338.299.4594.647.444.829.8199.346.630.063.847.830.6179.246.438.2127.662.228.827.2
    92020-01-01T08:00:00426.663.497.436.834.863.496.035.037.048.961.4126.2579.161.265.258.4110.667.036.4100.061.437.4248.067.061.4164.695.635.456.6
    102020-01-01T09:00:00274.271.2118.038.036.471.4117.636.638.230.766.8133.2466.869.068.076.63.669.837.6121.869.838.8273.469.866.8172.2116.835.874.8
    112020-01-01T10:00:0093.072.2132.037.836.472.2130.836.638.027.470.2134.2301.470.270.289.82.472.237.4129.070.438.6277.872.270.4173.2128.437.488.2
    122020-01-01T11:00:006.370.6135.237.035.070.6134.235.437.260.969.8135.2110.767.070.298.056.272.436.6128.667.237.6263.272.469.6170.0133.238.691.6
    132020-01-01T12:00:003.867.4131.036.235.467.4129.635.636.420.467.8133.078.967.268.294.091.570.235.8128.267.437.0267.470.267.6169.0128.837.890.6
    142020-01-01T13:00:001.165.2125.435.235.065.2123.635.435.41.667.2126.6107.967.065.881.4103.067.634.8119.667.035.8258.867.667.0161.8122.835.879.2
    152020-01-01T14:00:000.060.2109.631.031.060.4108.031.431.20.063.2110.222.359.462.659.439.764.230.8107.059.431.6227.864.262.8143.2106.831.459.0
    162020-01-01T15:00:000.042.069.020.219.242.065.620.620.22.645.062.824.642.444.825.487.746.220.065.843.420.6151.646.243.882.262.820.427.8
    172020-01-01T16:00:000.90.00.00.00.00.00.00.00.037.90.00.010.80.00.00.092.30.00.00.00.00.00.00.00.00.00.00.00.0
    182020-01-01T17:00:00276.30.00.00.00.00.00.00.00.046.90.00.0243.20.00.00.089.40.00.00.00.00.00.00.00.00.00.00.00.0
    192020-01-01T18:00:00272.90.00.00.00.00.00.00.00.024.00.00.0375.20.00.00.090.40.00.00.00.00.00.00.00.00.00.00.00.0
    202020-01-01T19:00:00345.60.00.00.00.00.00.00.00.024.00.00.0568.40.00.00.081.10.00.00.00.00.00.00.00.00.00.00.00.0
    212020-01-01T20:00:00411.70.00.00.00.00.00.00.00.027.40.00.0636.10.00.00.0172.90.00.00.00.00.00.00.00.00.00.00.00.0
    222020-01-01T21:00:00376.60.00.00.00.00.00.00.00.06.50.00.0719.20.00.00.0326.90.00.00.00.00.00.00.00.00.00.00.00.0
    232020-01-01T22:00:00561.30.00.00.00.00.00.00.00.01.30.00.0734.90.00.00.0256.70.00.00.00.00.00.00.00.00.00.00.00.0
    242020-01-01T23:00:00568.40.00.00.00.00.00.00.00.00.10.00.0729.10.00.00.0141.10.00.00.00.00.00.00.00.00.00.00.00.0

    Plotting

    Take a look at the plotting capabilities in PowerGraphics.jl

    diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/data_store/check.sha256 b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/data_store/check.sha256 new file mode 100644 index 0000000000..f3aa2f4527 --- /dev/null +++ b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/data_store/check.sha256 @@ -0,0 +1 @@ +{"files":[{"hash":"9af053aedfd1f259aceec3e6ea9c778dfc0245cb45e3f79c01a95a9b3bbbf258","filename":"simulation_store.h5"}]} \ No newline at end of file diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/data_store/simulation_store.h5 b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/data_store/simulation_store.h5 new file mode 100644 index 0000000000..2ff2ba7743 Binary files /dev/null and b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/data_store/simulation_store.h5 differ diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/logs/simulation.log b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/logs/simulation.log new file mode 100644 index 0000000000..951b0c6d83 --- /dev/null +++ b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/logs/simulation.log @@ -0,0 +1,104 @@ +┌ Info: 2024-03-06T15:40:09.698 [3309:1]: Building problem UC +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/simulation/simulation.jl:271 +┌ Info: 2024-03-06T15:40:09.709 [3309:1]: Initializing Optimization Container For a DecisionModel +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/decision_model.jl:290 +┌ Info: 2024-03-06T15:40:09.710 [3309:1]: Initializing ModelStoreParams +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/decision_model.jl:296 +┌ Info: 2024-03-06T15:40:09.710 [3309:1]: Instantiating Network Model +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/decision_model.jl:305 +┌ Info: 2024-03-06T15:40:09.710 [3309:1]: Validating connectivity with depth first search (network traversal) +└ @ PowerNetworkMatrices /home/runner/.julia/packages/PowerNetworkMatrices/xrfxR/src/system_utils.jl:12 +┌ Info: 2024-03-06T15:40:09.711 [3309:1]: Make Initial Conditions Model +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_interface.jl:193 +┌ Warning: 2024-03-06T15:40:09.802 [3309:1]: Overwriting ("", Symbol("VariableReserve{ReserveUp}")) existing model +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/core/service_model.jl:122 +┌ Warning: 2024-03-06T15:40:09.802 [3309:1]: Overwriting ("", Symbol("VariableReserve{ReserveUp}")) existing model +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/core/service_model.jl:122 +┌ Warning: 2024-03-06T15:40:09.802 [3309:1]: Overwriting ("", Symbol("VariableReserve{ReserveUp}")) existing model +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/core/service_model.jl:122 +┌ Warning: 2024-03-06T15:40:10.810 [3309:1]: CopperPlatePowerModel models with HVDC ignores inter-area losses +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/devices_models/device_constructors/branch_constructor.jl:651 +┌ Info: 2024-03-06T15:40:10.810 [3309:1]: Solving Initialization Model for UC +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_interface.jl:207 +┌ Info: 2024-03-06T15:40:10.981 [3309:1]: Serialized initial conditions to ./jl_1vt3Mm/rts-test/problems/UC/initial_conditions.bin +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_interface.jl:216 +┌ Warning: 2024-03-06T15:40:12.232 [3309:1]: CopperPlatePowerModel models with HVDC ignores inter-area losses +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/devices_models/device_constructors/branch_constructor.jl:651 +┌ Info: 2024-03-06T15:40:12.318 [3309:1]: Solving UC with optimizer = HiGHS +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_interface.jl:309 +┌ Info: 2024-03-06T15:40:12.389 [3309:1]: Variable bounds range is [0.0 8.47] +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_interface.jl:270 +┌ Info: 2024-03-06T15:40:12.433 [3309:1]: Constraint coefficient bounds range is [-0.3 4380.0] +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_interface.jl:280 +┌ Info: 2024-03-06T15:40:12.434 [3309:1]: Constraint right-hand-side bounds [0.06 48.0] +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_interface.jl:289 +┌ Info: 2024-03-06T15:40:12.434 [3309:1]: Building problem ED +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/simulation/simulation.jl:271 +┌ Info: 2024-03-06T15:40:12.439 [3309:1]: Initializing Optimization Container For a DecisionModel +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/decision_model.jl:290 +┌ Info: 2024-03-06T15:40:12.475 [3309:1]: Initializing ModelStoreParams +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/decision_model.jl:296 +┌ Info: 2024-03-06T15:40:12.484 [3309:1]: Instantiating Network Model +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/decision_model.jl:305 +┌ Info: 2024-03-06T15:40:12.484 [3309:1]: PTDF Matrix not provided. Calculating using PowerNetworkMatrices.PTDF +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/core/network_model.jl:118 +┌ Info: 2024-03-06T15:40:12.707 [3309:1]: Make Initial Conditions Model +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_interface.jl:193 +┌ Info: 2024-03-06T15:40:12.707 [3309:1]: No initial conditions in the model +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_interface.jl:138 +┌ Info: 2024-03-06T15:40:18.065 [3309:1]: Solving ED with optimizer = HiGHS +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_interface.jl:309 +┌ Info: 2024-03-06T15:40:18.163 [3309:1]: Variable bounds range is [0.0 8.47] +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_interface.jl:270 +┌ Info: 2024-03-06T15:40:18.481 [3309:1]: Constraint coefficient bounds range is [-0.55 1.0e6] +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_interface.jl:280 +┌ Info: 2024-03-06T15:40:18.481 [3309:1]: Constraint right-hand-side bounds [1.0 7.22] +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_interface.jl:289 +┌ Info: 2024-03-06T15:40:23.171 [3309:1]: Serialized simulation name = rts-test +│ directory = ./jl_1vt3Mm/rts-test/simulation_files +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/simulation/simulation.jl:1083 +┌ Info: 2024-03-06T15:40:23.246 [3309:1]: Serialized time series data to ./jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274_time_series_storage.h5. +└ @ InfrastructureSystems /home/runner/.julia/packages/InfrastructureSystems/9btGb/src/time_series_storage.jl:98 +┌ Info: 2024-03-06T15:40:23.318 [3309:1]: Serialized System to ./jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274.json +└ @ PowerSystems /home/runner/.julia/packages/PowerSystems/mjN6j/src/base.jl:299 +┌ Info: 2024-03-06T15:40:23.332 [3309:1]: Serialized System metadata to ./jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274_metadata.json +└ @ PowerSystems /home/runner/.julia/packages/PowerSystems/mjN6j/src/base.jl:324 +┌ Info: 2024-03-06T15:40:23.336 [3309:1]: Serialized OperationModel to +│ bin_file_name = ./jl_1vt3Mm/rts-test/problems/UC/model.bin +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_serialization.jl:67 +┌ Info: 2024-03-06T15:40:23.412 [3309:1]: Serialized time series data to ./jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb_time_series_storage.h5. +└ @ InfrastructureSystems /home/runner/.julia/packages/InfrastructureSystems/9btGb/src/time_series_storage.jl:98 +┌ Info: 2024-03-06T15:40:23.515 [3309:1]: Serialized System to ./jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb.json +└ @ PowerSystems /home/runner/.julia/packages/PowerSystems/mjN6j/src/base.jl:299 +┌ Info: 2024-03-06T15:40:23.516 [3309:1]: Serialized System metadata to ./jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb_metadata.json +└ @ PowerSystems /home/runner/.julia/packages/PowerSystems/mjN6j/src/base.jl:324 +┌ Info: 2024-03-06T15:40:23.591 [3309:1]: Serialized OperationModel to +│ bin_file_name = ./jl_1vt3Mm/rts-test/problems/ED/model.bin +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/operation/operation_model_serialization.jl:67 +┌ Info: 2024-03-06T15:40:26.419 [3309:1]: Initialize store cache +│ get_min_flush_size(store.cache) = 1048576 +│ get_max_size(store.cache) = 1073741824 +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/simulation/hdf_simulation_store.jl:249 +┌ Info: 2024-03-06T15:41:31.143 [3309:1]: +│ ──────────────────────────────────────────────────────────────────────────────── +│ Time Allocations +│ ─────────────────────── ──────────────────────── +│ Tot / % measured: 66.9s / 100.0% 3.12GiB / 100.0% +│ +│ Section ncalls time %tot avg alloc %tot avg +│ ──────────────────────────────────────────────────────────────────────────────── +│ Execute Simulation 1 66.9s 100.0% 66.9s 3.12GiB 100.0% 3.12GiB +│ Execute ED 192 53.3s 79.6% 277ms 2.40GiB 77.2% 12.8MiB +│ Solve ED 192 44.4s 66.3% 231ms 835MiB 26.2% 4.35MiB +│ Update State 192 4.31s 6.4% 22.4ms 450MiB 14.1% 2.34MiB +│ Update ED 192 3.09s 4.6% 16.1ms 403MiB 12.6% 2.10MiB +│ Parameter Up... 192 2.93s 4.4% 15.3ms 400MiB 12.5% 2.08MiB +│ Ini Cond Upd... 192 107μs 0.0% 558ns 0.00B 0.0% 0.00B +│ Execute UC 2 8.77s 13.1% 4.39s 458MiB 14.3% 229MiB +│ Solve UC 2 5.26s 7.9% 2.63s 158MiB 5.0% 79.0MiB +│ Update State 2 2.45s 3.7% 1.22s 181MiB 5.7% 90.6MiB +│ Update UC 2 965ms 1.4% 482ms 84.3MiB 2.6% 42.1MiB +│ Ini Cond Upd... 1 597ms 0.9% 597ms 46.7MiB 1.5% 46.7MiB +│ Parameter Up... 1 367ms 0.5% 367ms 37.5MiB 1.2% 37.5MiB +│ ──────────────────────────────────────────────────────────────────────────────── +└ @ PowerSimulations /home/runner/work/PowerSimulations.jl/PowerSimulations.jl/src/simulation/simulation.jl:1001 diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/model.bin b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/model.bin new file mode 100644 index 0000000000..95ba9f8dd6 Binary files /dev/null and b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/model.bin differ diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/optimization_container_metadata.bin b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/optimization_container_metadata.bin new file mode 100644 index 0000000000..55338d59ab Binary files /dev/null and b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/optimization_container_metadata.bin differ diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb.json b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb.json new file mode 100644 index 0000000000..6a199ad9c0 --- /dev/null +++ b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb.json @@ -0,0 +1 @@ +{"internal":{"uuid":{"value":"246c37d4-8d88-439c-8f67-103faad17fcb"},"ext":{},"units_info":null},"data":{"validation_descriptor_file":"system-246c37d4-8d88-439c-8f67-103faad17fcb_validation_descriptors.json","masked_components":[],"version_info":{"julia_version":"1.10.2","package_info":"Status `~/work/PowerSimulations.jl/PowerSimulations.jl/docs/Manifest.toml`\n [a4c015fc] ANSIColoredPrinters v0.0.1\n [1520ce14] AbstractTrees v0.4.5\n [79e6a3ab] Adapt v4.0.2\n [4fba245c] ArrayInterface v7.8.0\n [6e4b80f9] BenchmarkTools v1.5.0\n [a74b3585] Blosc v0.7.3\n [336ed68f] CSV v0.10.13\n [9961bab8] Cbc v1.2.0\n [523fee87] CodecBzip2 v0.8.2\n [944b1d66] CodecZlib v0.7.4\n [bbf7d656] CommonSubexpressions v0.3.0\n [34da2185] Compat v4.14.0\n [187b0558] ConstructionBase v1.5.4\n [a8cc5b0e] Crayons v4.1.1\n [9a962f9c] DataAPI v1.16.0\n [a93c6f00] DataFrames v1.6.1\n [864edb3b] DataStructures v0.18.18\n [e2d170a0] DataValueInterfaces v1.0.0\n [8bb1440f] DelimitedFiles v1.9.1\n [163ba53b] DiffResults v1.1.0\n [b552c78f] DiffRules v1.15.1\n [b4f34e82] Distances v0.10.11\n [ffbed154] DocStringExtensions v0.9.3\n⌅ [e30172f5] Documenter v0.27.25\n [35a29f4d] DocumenterTools v0.1.19\n [e2ba6199] ExprTools v0.1.10\n [48062228] FilePathsBase v0.9.21\n [6a86dc24] FiniteDiff v2.22.0\n [1fa38f19] Format v1.3.6\n [f6369f11] ForwardDiff v0.10.36\n [60bf3e95] GLPK v1.1.3\n [708ec375] Gumbo v0.8.2\n [c8ec2601] H5Zblosc v0.1.2\n [f67ccb44] HDF5 v0.17.1\n [87dc4568] HiGHS v1.8.1\n [fc1677e0] HydroPowerSimulations v0.8.0\n [b5f81e59] IOCapture v0.2.4\n [2030c09a] InfrastructureModels v0.7.8\n [2cd47ed4] InfrastructureSystems v1.22.2\n [842dd82b] InlineStrings v1.4.0\n [41ab1584] InvertedIndices v1.3.0\n [92d709cd] IrrationalConstants v0.2.2\n [82899510] IteratorInterfaceExtensions v1.0.0\n [692b3bcd] JLLWrappers v1.5.0\n [682c06a0] JSON v0.21.4\n [0f8b85d8] JSON3 v1.14.0\n [4076af6c] JuMP v1.20.0\n⌅ [ef3ab10e] KLU v0.5.0\n [b964fa9f] LaTeXStrings v1.3.1\n [23fbe1c1] Latexify v0.16.2\n [1d6d02ad] LeftChildRightSiblingTrees v0.2.0\n [d3d80556] LineSearches v7.2.0\n [2ab3a3ac] LogExpFunctions v0.3.27\n [33e6dc65] MKL v0.6.3\n [3da0fdf6] MPIPreferences v0.1.10\n [1914dd2f] MacroTools v0.5.13\n [b8f27783] MathOptInterface v1.27.0\n [f28f55f0] Memento v1.4.1\n [e1d29d7a] Missings v1.1.0\n [ffc61752] Mustache v1.0.19\n [d8a4904e] MutableArithmetics v1.4.1\n [d41bc354] NLSolversBase v7.8.3\n [2774e3e8] NLsolve v4.5.1\n [77ba4419] NaNMath v1.0.2\n [bac558e1] OrderedCollections v1.6.3\n [d96e819e] Parameters v0.12.3\n [46dd5b70] Pardiso v0.5.6\n [69de0a69] Parsers v2.8.1\n [2dfb63ee] PooledArrays v1.4.3\n [dd99e9e3] PowerFlowData v1.5.0\n⌃ [c36e90e8] PowerModels v0.20.1\n [bed98974] PowerNetworkMatrices v0.10.2\n [e690365d] PowerSimulations v0.27.5 `~/work/PowerSimulations.jl/PowerSimulations.jl`\n [f00506e0] PowerSystemCaseBuilder v1.2.4\n [bcd98974] PowerSystems v3.2.3\n [aea7be01] PrecompileTools v1.2.0\n [21216c6a] Preferences v1.4.3\n [08abe8d2] PrettyTables v2.3.1\n [33c8b6b6] ProgressLogging v0.1.4\n [92933f4c] ProgressMeter v1.10.0\n [3cdcf5f2] RecipesBase v1.3.4\n [189a3867] Reexport v1.2.2\n [ae029012] Requires v1.3.0\n [322a6be2] Sass v0.2.0\n [91c51154] SentinelArrays v1.4.1\n [efcf1570] Setfield v1.1.1\n [a2af1166] SortingAlgorithms v1.2.1\n [276daf66] SpecialFunctions v2.3.1\n [1e83bf80] StaticArraysCore v1.4.2\n [82ae8749] StatsAPI v1.7.0\n [69024149] StringEncodings v0.3.7\n [892a3eda] StringManipulation v0.3.4\n [856f2bd8] StructTypes v1.10.0\n [3783bdb8] TableTraits v1.0.1\n [bd369af6] Tables v1.11.1\n [5d786b92] TerminalLoggers v0.1.7\n⌅ [9e3dc215] TimeSeries v0.23.2\n [a759f4b9] TimerOutputs v0.5.23\n [3bb67fe8] TranscodingStreams v0.10.4\n [3a884ed6] UnPack v1.0.2\n [ea10d353] WeakRefStrings v1.4.2\n [76eceee3] WorkerUtilities v1.6.1\n [ddb6d928] YAML v0.4.9\n [ae81ac8f] ASL_jll v0.1.3+0\n [0b7ba130] Blosc_jll v1.21.5+0\n [6e34b625] Bzip2_jll v1.0.8+1\n [38041ee0] Cbc_jll v200.1000.800+0\n [3830e938] Cgl_jll v0.6000.600+0\n [06985876] Clp_jll v100.1700.700+1\n [be027038] CoinUtils_jll v200.1100.600+0\n [e8aa6df9] GLPK_jll v5.0.1+0\n [528830af] Gumbo_jll v0.10.2+0\n⌃ [0234f1f7] HDF5_jll v1.12.2+2\n [8fd58aa0] HiGHS_jll v1.6.0+1\n [1d5cc7b8] IntelOpenMP_jll v2024.0.2+0\n [94ce4f54] Libiconv_jll v1.17.0+0\n [5ced341a] Lz4_jll v1.9.4+0\n [d00139f3] METIS_jll v5.1.2+0\n [856f044c] MKL_jll v2024.0.0+0\n [d7ed1dd3] MUMPS_seq_jll v500.600.201+0\n⌅ [656ef2d0] OpenBLAS32_jll v0.3.24+0\n⌅ [9bd350c2] OpenSSH_jll v8.9.0+1\n⌅ [458c3c95] OpenSSL_jll v1.1.23+0\n [efe28fd5] OpenSpecFun_jll v0.5.5+0\n [7da25872] Osi_jll v0.10800.700+0\n [3161d3a3] Zstd_jll v1.5.5+0\n [47bcb7c8] libsass_jll v3.6.4+0\n [0dad84c5] ArgTools v1.1.1\n [56f22d72] Artifacts\n [2a0f44e3] Base64\n [ade2ca70] Dates\n [8ba89e20] Distributed\n [f43a241f] Downloads v1.6.0\n [7b1f6079] FileWatching\n [9fa8497b] Future\n [b77e0a4c] InteractiveUtils\n [4af54fe1] LazyArtifacts\n [b27032c2] LibCURL v0.6.4\n [76f85450] LibGit2\n [8f399da3] Libdl\n [37e2e46d] LinearAlgebra\n [56ddb016] Logging\n [d6f4376e] Markdown\n [a63ad114] Mmap\n [ca575930] NetworkOptions v1.2.0\n [44cfe95a] Pkg v1.10.0\n [de0858da] Printf\n [9abbd945] Profile\n [3fa0cd96] REPL\n [9a3f8284] Random\n [ea8e919c] SHA v0.7.0\n [9e88b42a] Serialization\n [6462fe0b] Sockets\n [2f01184e] SparseArrays v1.10.0\n [10745b16] Statistics v1.10.0\n [4607b0f0] SuiteSparse\n [fa267f1f] TOML v1.0.3\n [a4e569a6] Tar v1.10.0\n [8dfed614] Test\n [cf7118a7] UUIDs\n [4ec0a83e] Unicode\n [e66e0078] CompilerSupportLibraries_jll v1.1.0+0\n [781609d7] GMP_jll v6.2.1+6\n [deac9b47] LibCURL_jll v8.4.0+0\n [e37daf67] LibGit2_jll v1.6.4+0\n [29816b5a] LibSSH2_jll v1.11.0+1\n [c8ffd9c3] MbedTLS_jll v2.28.2+1\n [14a3606d] MozillaCACerts_jll v2023.1.10\n [4536629a] OpenBLAS_jll v0.3.23+4\n [05823500] OpenLibm_jll v0.8.1+2\n [bea87d4a] SuiteSparse_jll v7.2.1+1\n [83775a58] Zlib_jll v1.2.13+1\n [8e850b90] libblastrampoline_jll v5.8.0+1\n [8e850ede] nghttp2_jll v1.52.0+1\n [3f19e933] p7zip_jll v17.4.0+2\nInfo Packages marked with ⌃ and ⌅ have new versions available. Those with ⌃ may be upgradable, but those with ⌅ are restricted by compatibility constraints from upgrading. To see why use `status --outdated -m`\n"},"internal":{"uuid":{"value":"c0e94438-e65d-436c-ada9-9e6b50f7906d"},"ext":{},"units_info":null},"components":[{"requirement":1.3475000000000001,"max_participation_factor":1.0,"sustained_time":3600.0,"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"fb969672-93c9-49e2-b3a8-82d42d3c1f2b"},"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"af09996f-3e9a-4c5d-8dc5-76092d4fdff6"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"af09996f-3e9a-4c5d-8dc5-76092d4fdff6"},"ext":null,"units_info":null},"time_series_uuid":{"value":"fb969672-93c9-49e2-b3a8-82d42d3c1f2b"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Reg_Down","__metadata__":{"parameters":["ReserveDown"],"construct_with_parameters":true,"module":"PowerSystems","type":"VariableReserve"},"internal":{"uuid":{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"},"ext":null,"units_info":null},"time_frame":300.0,"ext":{},"deployed_fraction":0.0,"max_output_fraction":1.0},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"C31-2","reactive_power_flow":0.0,"arc":{"value":"647dec1d-6a72-4486-8844-905d8cb971d9"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"53d0fa66-fe3f-4d4d-b68a-bfd360faa5d5"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.104,"b":{"from":0.014,"to":0.014},"r":0.027,"rate":1.75,"available":true,"time_series_container":[],"name":"B8","reactive_power_flow":0.0,"arc":{"value":"42256126-463f-4ebe-813c-40c58142f617"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"e3c639aa-9449-411a-ac5a-a9fa0216b2f9"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.052,"b":{"from":0.0545,"to":0.0545},"r":0.007,"rate":5.0,"available":true,"time_series_container":[],"name":"B26","reactive_power_flow":0.0,"arc":{"value":"496d016a-3ba8-4269-b360-4b39488b6529"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"1b5906aa-78dc-4ca0-8c9b-5c45bce39000"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.04,"b":{"from":0.0415,"to":0.0415},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"A32-2","reactive_power_flow":0.0,"arc":{"value":"a7f07fc7-e27e-41dd-9366-153628150b87"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"d34ddc84-5c77-4e14-ba23-ab7d0b7e08b5"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.097,"b":{"from":0.1015,"to":0.1015},"r":0.012,"rate":5.0,"available":true,"time_series_container":[],"name":"CA-1","reactive_power_flow":0.0,"arc":{"value":"acb4bebe-c13f-463c-aa1a-d611b013955b"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"6c2ce2e3-991b-4981-8a8f-a183a8f5f1ae"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.192,"b":{"from":0.026,"to":0.026},"r":0.05,"rate":1.75,"available":true,"time_series_container":[],"name":"A5","reactive_power_flow":0.0,"arc":{"value":"225b0553-2615-4a0d-b155-2e18b8b4417a"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"56d2ce16-0d15-4568-9724-b7bd7c99e47f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.068,"b":{"from":0.071,"to":0.071},"r":0.009,"rate":5.0,"available":true,"time_series_container":[],"name":"B34","reactive_power_flow":0.0,"arc":{"value":"e94d9d39-47a1-4ac0-bdae-0f798bd1d3c0"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"711e9a7f-e2f5-4238-abb8-f355c033c360"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.042,"b":{"from":0.044,"to":0.044},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"B19","reactive_power_flow":0.0,"arc":{"value":"62a00408-56fb-4568-a067-a7b0fdd8ac47"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"27a01d4a-cbcf-4b32-865f-c2ac60687581"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"B31-2","reactive_power_flow":0.0,"arc":{"value":"91b68186-b55d-418c-994c-4fa142386f5b"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"6e189a48-d84a-4d61-9f28-2743c247ac66"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.105,"b":{"from":0.1105,"to":0.1105},"r":0.014,"rate":5.0,"available":true,"time_series_container":[],"name":"C30","reactive_power_flow":0.0,"arc":{"value":"fa70e766-ca5c-4749-bd83-5df51fced559"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"9169c922-1a06-4dcb-b87e-0be7d2a52ce0"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"B27","reactive_power_flow":0.0,"arc":{"value":"422fc110-41ed-437b-ab78-b233d0d1070d"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"5c21dd2a-718b-45e6-b667-a41d487933e1"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.097,"b":{"from":0.1015,"to":0.1015},"r":0.012,"rate":5.0,"available":true,"time_series_container":[],"name":"A21","reactive_power_flow":0.0,"arc":{"value":"fc9f8126-81e4-42ec-a891-3382a10603ee"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"9778eb0d-2cc6-4d6a-ac53-2f8fbe0f3093"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.04,"b":{"from":0.0415,"to":0.0415},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"A32-1","reactive_power_flow":0.0,"arc":{"value":"a7f07fc7-e27e-41dd-9366-153628150b87"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"fa056a35-ae63-45c5-a4dd-b0bfeaed01b0"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.014,"b":{"from":0.015,"to":0.015},"r":0.002,"rate":5.0,"available":true,"time_series_container":[],"name":"B29","reactive_power_flow":0.0,"arc":{"value":"9089d0b6-b1b8-44ec-968c-db32d97a463e"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"3f427c2d-9160-41f6-806b-9c98a3791a27"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.048,"b":{"from":0.05,"to":0.05},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"A18","reactive_power_flow":0.0,"arc":{"value":"7ab21172-f0e5-4901-9ab9-d69b880b7965"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"0ddd9d0c-88fe-4f8b-89cb-2db74bd06aa5"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.192,"b":{"from":0.026,"to":0.026},"r":0.05,"rate":1.75,"available":true,"time_series_container":[],"name":"C5","reactive_power_flow":0.0,"arc":{"value":"c539d9b9-c8bc-49fc-9c07-6f5522d7f4b0"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"7a7878cc-85c1-42ee-a5b1-30dc62817827"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.165,"b":{"from":0.0225,"to":0.0225},"r":0.043,"rate":1.75,"available":true,"time_series_container":[],"name":"C13-2","reactive_power_flow":0.0,"arc":{"value":"cd7cbc95-9f18-4df8-99aa-0e6c59741780"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"7c5a89bf-fdd6-4a12-a067-c35cb37c861f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.017,"b":{"from":0.018,"to":0.018},"r":0.002,"rate":5.0,"available":true,"time_series_container":[],"name":"C24","reactive_power_flow":0.0,"arc":{"value":"21a646f0-9da8-48de-807d-7d3d67c9b822"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"60fceb1d-7d97-4957-bb52-edc73137becb"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.023,"b":{"from":0.0245,"to":0.0245},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"C28","reactive_power_flow":0.0,"arc":{"value":"692bdb52-246b-41f3-a529-886ea0345488"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"766aa5e0-c925-4d24-9d52-2c1434a080a8"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.014,"b":{"from":0.015,"to":0.015},"r":0.002,"rate":5.0,"available":true,"time_series_container":[],"name":"A29","reactive_power_flow":0.0,"arc":{"value":"7b258cbf-2a30-4afa-a8c6-fd4515c03a44"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"96ecea19-5d38-4767-acd7-050a1e40a19f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.085,"b":{"from":0.0115,"to":0.0115},"r":0.022,"rate":1.75,"available":true,"time_series_container":[],"name":"A3","reactive_power_flow":0.0,"arc":{"value":"07e10988-90db-43fb-a3a2-57270f0d62ea"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"695e56a6-452c-4be1-86be-c91c3290e4ba"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.161,"b":{"from":0.022,"to":0.022},"r":0.042,"rate":1.75,"available":true,"time_series_container":[],"name":"AB1","reactive_power_flow":0.0,"arc":{"value":"b354d194-5030-442f-b3f5-2dbc23fb94d0"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"28604a71-ac39-4e00-b743-99b21cdc62ae"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.075,"b":{"from":0.079,"to":0.079},"r":0.01,"rate":5.0,"available":true,"time_series_container":[],"name":"AB2","reactive_power_flow":0.0,"arc":{"value":"c23c0564-1b85-46c5-8574-fbef9c68687b"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"8c763e18-8e5f-4efc-b9e3-97306266aa6f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"C27","reactive_power_flow":0.0,"arc":{"value":"f8cd3fb2-c037-400d-9c15-55210790392c"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"13181e0a-748c-4c4a-939a-cdad4c37007f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.009,"b":{"from":0.0,"to":0.0},"r":0.0,"rate":7.22,"available":true,"time_series_container":[],"name":"C35","reactive_power_flow":0.0,"arc":{"value":"c88b8acb-6af5-44da-9a9f-8577e8e74015"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"8838991c-33dd-4c72-840e-ec5fe3af5cf4"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.049,"b":{"from":0.0515,"to":0.0515},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"A25-1","reactive_power_flow":0.0,"arc":{"value":"326b0193-12a7-4201-a7f7-722ed3ef2387"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"44b93eac-0109-457a-adbf-33a75903d469"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.192,"b":{"from":0.026,"to":0.026},"r":0.05,"rate":1.75,"available":true,"time_series_container":[],"name":"B5","reactive_power_flow":0.0,"arc":{"value":"76733b31-e259-4ceb-b47c-0bd5efa0b70d"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"2e62100c-1ce3-456e-9581-73ca6c0add52"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.211,"b":{"from":0.0285,"to":0.0285},"r":0.055,"rate":1.75,"available":true,"time_series_container":[],"name":"B2","reactive_power_flow":0.0,"arc":{"value":"0dfdad5a-74f2-45b6-8243-29b2f15f5dd0"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"96c94925-d70e-4385-a585-7a64b36655f6"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"B31-1","reactive_power_flow":0.0,"arc":{"value":"91b68186-b55d-418c-994c-4fa142386f5b"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"356d6c78-17cf-434e-ab77-2cf445461753"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.048,"b":{"from":0.05,"to":0.05},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"C20","reactive_power_flow":0.0,"arc":{"value":"5d382a05-949a-40c7-9d6a-82fecd2ebf3e"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"120707be-0e16-4bdb-a643-040596913282"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.059,"b":{"from":0.041,"to":0.041},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"B23","reactive_power_flow":0.0,"arc":{"value":"2f484570-a2a4-401b-94fb-5a74e0633790"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"486bd1f2-5364-4803-a9f2-c7999977f465"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.023,"b":{"from":0.0245,"to":0.0245},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"A28","reactive_power_flow":0.0,"arc":{"value":"9937c222-1bf1-43fc-8f66-94d109de2c33"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"dafb3763-53e0-4fa4-9c8d-cd883311888c"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.042,"b":{"from":0.044,"to":0.044},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"A19","reactive_power_flow":0.0,"arc":{"value":"b02a5cdd-c45d-4f97-967d-df95f2a50da3"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"df9fd67b-6a52-4ec9-8e43-8cd3bb4ae24f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.088,"b":{"from":0.012,"to":0.012},"r":0.023,"rate":1.75,"available":true,"time_series_container":[],"name":"C9","reactive_power_flow":0.0,"arc":{"value":"09924970-10a4-46ae-a1bb-e79b051cd8da"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"6890cd2a-b981-4906-8f86-5f62b0fcf88f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.014,"b":{"from":0.2305,"to":0.2305},"r":0.003,"rate":1.75,"available":true,"time_series_container":[],"name":"C1","reactive_power_flow":0.0,"arc":{"value":"b951038d-8a38-4b10-a55a-535ed761657c"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"b4d7414e-9ee6-4664-badb-2e802d7fdf8a"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.211,"b":{"from":0.0285,"to":0.0285},"r":0.055,"rate":1.75,"available":true,"time_series_container":[],"name":"C2","reactive_power_flow":0.0,"arc":{"value":"3ca300ab-827d-4a33-80c9-a7f6ecfa2c0a"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"be081bc2-61af-465d-81a7-b47ac05ba6c9"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.049,"b":{"from":0.0515,"to":0.0515},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"B25-1","reactive_power_flow":0.0,"arc":{"value":"d039859c-2851-40aa-955c-b0ff35f38ec9"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"993a52ea-d7cf-4338-9ca3-a5badbdddfca"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.088,"b":{"from":0.012,"to":0.012},"r":0.023,"rate":1.75,"available":true,"time_series_container":[],"name":"A9","reactive_power_flow":0.0,"arc":{"value":"786cbb94-3c9f-46d1-908d-ee0143d25a58"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"cbdf702f-178d-4693-8635-9a3ca925246b"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.061,"b":{"from":0.0085,"to":0.0085},"r":0.016,"rate":1.75,"available":true,"time_series_container":[],"name":"C11","reactive_power_flow":0.0,"arc":{"value":"72ac72f2-0ca7-40c0-8b5f-5e658efd7049"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"bfaeec4b-8ca6-4a49-839f-d827f9ab99c4"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.042,"b":{"from":0.044,"to":0.044},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"C19","reactive_power_flow":0.0,"arc":{"value":"c70b432f-6972-4b8c-8c23-05894eb5fd0c"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"cdbbc510-e060-4548-9ab5-769638be0b06"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.059,"b":{"from":0.041,"to":0.041},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"C23","reactive_power_flow":0.0,"arc":{"value":"58fb0da7-90fa-424e-9b4c-0c4a1e717a0d"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"2f592bbd-d688-44a7-bdf5-201944766721"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.049,"b":{"from":0.0515,"to":0.0515},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"C25-1","reactive_power_flow":0.0,"arc":{"value":"d5f4061b-dc8c-482d-a7d7-50d7d07fe6a1"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"f34f0197-1ca7-44db-95eb-68061f251be1"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.04,"b":{"from":0.0415,"to":0.0415},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"C32-2","reactive_power_flow":0.0,"arc":{"value":"b232561c-3ab7-44d2-a6d0-b9ba1298f52b"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"5c73c748-8e91-4dda-86ea-dfd641b41345"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.048,"b":{"from":0.05,"to":0.05},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"B20","reactive_power_flow":0.0,"arc":{"value":"4771427c-a447-4164-90ee-1824e75d1644"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"df453cf6-ced7-4767-993f-500234a54988"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.088,"b":{"from":0.012,"to":0.012},"r":0.023,"rate":1.75,"available":true,"time_series_container":[],"name":"B9","reactive_power_flow":0.0,"arc":{"value":"41c260ec-3182-42ae-bb84-57d1433c50de"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"a699a635-f77c-4de2-a370-c80af3c31c09"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.049,"b":{"from":0.0515,"to":0.0515},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"C25-2","reactive_power_flow":0.0,"arc":{"value":"d5f4061b-dc8c-482d-a7d7-50d7d07fe6a1"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"37d3c8d5-2f3a-4398-bea5-7045e5373d92"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.165,"b":{"from":0.0225,"to":0.0225},"r":0.043,"rate":1.75,"available":true,"time_series_container":[],"name":"C12-1","reactive_power_flow":0.0,"arc":{"value":"dfc24f25-3144-4ff3-a195-44bfa4ed6cb9"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"a5f7f85f-f6e7-4f7d-be6f-1fce593b9795"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"A27","reactive_power_flow":0.0,"arc":{"value":"d3b3b6aa-c24b-4f2a-97ca-52948ab3c9c0"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"3a930474-83a6-489a-9ff7-504cd2246db8"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.097,"b":{"from":0.1015,"to":0.1015},"r":0.012,"rate":5.0,"available":true,"time_series_container":[],"name":"C21","reactive_power_flow":0.0,"arc":{"value":"cc4efbd9-9b92-44c7-bded-b7a3db8cbeb7"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"d1d7339b-4b71-45be-b3a9-b8d3d899be0c"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.068,"b":{"from":0.071,"to":0.071},"r":0.009,"rate":5.0,"available":true,"time_series_container":[],"name":"A34","reactive_power_flow":0.0,"arc":{"value":"3fe9370d-a93e-4d9f-9888-9c0075dbc183"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"f4044c12-2e82-481c-9a55-e6dd4edb7b06"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.04,"b":{"from":0.0415,"to":0.0415},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"B32-1","reactive_power_flow":0.0,"arc":{"value":"1ef0cc9b-cc7f-4804-937d-0f773dc6f737"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"226a1664-76f1-46ec-9ecf-5683bfadb332"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.165,"b":{"from":0.0225,"to":0.0225},"r":0.043,"rate":1.75,"available":true,"time_series_container":[],"name":"A12-1","reactive_power_flow":0.0,"arc":{"value":"12722669-b595-4454-8ad4-057c1dddf1cf"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"db7e8de2-234f-4a87-89ba-f30760e93560"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.022,"b":{"from":0.023,"to":0.023},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"B33-1","reactive_power_flow":0.0,"arc":{"value":"58a56450-cb01-4288-8a11-be7670cb1f32"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"7342495b-2c7e-424a-8814-39a3b193c78c"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.014,"b":{"from":0.2305,"to":0.2305},"r":0.003,"rate":1.75,"available":true,"time_series_container":[],"name":"B1","reactive_power_flow":0.0,"arc":{"value":"7f108af9-6f77-42e7-8bf1-0ea0e7ab4062"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"f226a503-a5cd-4d02-994d-bc907823d6f6"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.127,"b":{"from":0.017,"to":0.017},"r":0.033,"rate":1.75,"available":true,"time_series_container":[],"name":"A4","reactive_power_flow":0.0,"arc":{"value":"a2c28452-0935-4a4a-b3d3-3e57ad1b7ef7"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"8732b05f-c7e1-4ce2-b674-6cc03fbb1a78"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.052,"b":{"from":0.0545,"to":0.0545},"r":0.007,"rate":5.0,"available":true,"time_series_container":[],"name":"C26","reactive_power_flow":0.0,"arc":{"value":"f1ee55a9-68a5-4c4c-a596-ebb6c246097b"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"13626e37-3e02-4e90-b195-3715c9f72e98"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.127,"b":{"from":0.017,"to":0.017},"r":0.033,"rate":1.75,"available":true,"time_series_container":[],"name":"B4","reactive_power_flow":0.0,"arc":{"value":"2a03e4b8-a6d9-436c-be21-227611486b1e"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"15dc9716-074c-41e1-96ce-6b313620d20c"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.087,"b":{"from":0.091,"to":0.091},"r":0.011,"rate":5.0,"available":true,"time_series_container":[],"name":"A22","reactive_power_flow":0.0,"arc":{"value":"f2543ca0-edf5-4469-b383-d1093bada2cd"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"cd60f34b-e9cb-4793-a98e-92981e4af8a6"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"A31-1","reactive_power_flow":0.0,"arc":{"value":"53cd55e4-211c-4ca9-b43e-0bbb7c6827c7"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"4bc7edf1-aedc-46fe-9947-de6fa81a9362"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.022,"b":{"from":0.023,"to":0.023},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"A33-2","reactive_power_flow":0.0,"arc":{"value":"43e458fb-175e-4160-a81e-c4e0ff5b1bb9"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"0ed33e4d-82d6-446c-af50-16691e664488"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.074,"b":{"from":0.0775,"to":0.0775},"r":0.01,"rate":5.0,"available":true,"time_series_container":[],"name":"AB3","reactive_power_flow":0.0,"arc":{"value":"4a18846a-ff4a-42e3-98e3-dc8850b4f807"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"b37e69d4-c227-4c7a-aead-ced77e865a3e"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.104,"b":{"from":0.014,"to":0.014},"r":0.027,"rate":1.75,"available":true,"time_series_container":[],"name":"A8","reactive_power_flow":0.0,"arc":{"value":"545a1c44-34c6-40c1-acea-7b1d6669dee2"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"fffacea7-2d89-4be9-bdeb-27698499cca1"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"A31-2","reactive_power_flow":0.0,"arc":{"value":"53cd55e4-211c-4ca9-b43e-0bbb7c6827c7"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"f1716f8e-ca36-4017-94c4-e7ff00db74fe"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.022,"b":{"from":0.023,"to":0.023},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"C33-2","reactive_power_flow":0.0,"arc":{"value":"fbf036fb-17c0-4b65-a02c-9ea8161662a5"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"aa24dbcc-e2ff-49e3-8e4f-c458102ffc30"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.061,"b":{"from":1.2295,"to":1.2295},"r":0.014,"rate":1.75,"available":true,"time_series_container":[],"name":"C10","reactive_power_flow":0.0,"arc":{"value":"467db5fa-8541-470e-b10c-0b6d5314e1e3"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"993442d7-a759-4928-9387-2d730b1a6738"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.104,"b":{"from":0.109,"to":0.109},"r":0.013,"rate":5.0,"available":true,"time_series_container":[],"name":"CB-1","reactive_power_flow":0.0,"arc":{"value":"e4b5cb7b-2a50-4d59-85d4-f2e3086be87f"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"3fb792d6-29d3-488e-950d-3d19ea99d1b8"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.052,"b":{"from":0.0545,"to":0.0545},"r":0.007,"rate":5.0,"available":true,"time_series_container":[],"name":"A26","reactive_power_flow":0.0,"arc":{"value":"d2464682-b129-49d0-8d18-5c78a3b87e2f"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"31a2f24f-b3d7-4dbb-ac77-3aa41a07e153"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.119,"b":{"from":0.016,"to":0.016},"r":0.031,"rate":1.75,"available":true,"time_series_container":[],"name":"A6","reactive_power_flow":0.0,"arc":{"value":"8bf3566d-7011-4163-b3c7-5a31a467b099"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"0b361785-3c68-4a16-b055-5f4f7f1c6241"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.022,"b":{"from":0.023,"to":0.023},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"C33-1","reactive_power_flow":0.0,"arc":{"value":"fbf036fb-17c0-4b65-a02c-9ea8161662a5"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"1d26ae6b-1f49-4c39-9745-b06858062d35"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.097,"b":{"from":0.1015,"to":0.1015},"r":0.012,"rate":5.0,"available":true,"time_series_container":[],"name":"B21","reactive_power_flow":0.0,"arc":{"value":"a9164a9e-1f3d-42e6-93fc-522c2f217dea"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"67146d36-04f7-46ad-916f-8663a76a4e55"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.014,"b":{"from":0.015,"to":0.015},"r":0.002,"rate":5.0,"available":true,"time_series_container":[],"name":"C29","reactive_power_flow":0.0,"arc":{"value":"b6966254-8b52-4864-ad6e-9dff1a260795"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"6193f90c-704f-472b-bcf1-ba5f665a223a"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.127,"b":{"from":0.017,"to":0.017},"r":0.033,"rate":1.75,"available":true,"time_series_container":[],"name":"C4","reactive_power_flow":0.0,"arc":{"value":"c35f99ac-ce8b-497e-8534-c933c62be6b2"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"7df46d2f-556c-4e9e-a4bf-a2acec5fb99b"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.048,"b":{"from":0.05,"to":0.05},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"C18","reactive_power_flow":0.0,"arc":{"value":"68f20121-db50-4429-ba57-b1be2b621088"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"f8d7332d-fe83-47e2-b004-b29498299319"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.049,"b":{"from":0.0515,"to":0.0515},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"A25-2","reactive_power_flow":0.0,"arc":{"value":"326b0193-12a7-4201-a7f7-722ed3ef2387"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"ffe2ebe6-67d6-4ad6-a4ca-4e83e9c3e0f0"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.087,"b":{"from":0.091,"to":0.091},"r":0.011,"rate":5.0,"available":true,"time_series_container":[],"name":"B22","reactive_power_flow":0.0,"arc":{"value":"97fed37e-8205-43b6-bb4c-417d196cad44"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"5bc3a535-d4a4-4827-9f08-e07c66f387cc"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.014,"b":{"from":0.2305,"to":0.2305},"r":0.003,"rate":1.75,"available":true,"time_series_container":[],"name":"A1","reactive_power_flow":0.0,"arc":{"value":"95a78be0-a838-4bd6-b189-221ba6be894a"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"136faf8f-9e7c-4fee-a0fc-cd32b7ab5d6f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.105,"b":{"from":0.1105,"to":0.1105},"r":0.014,"rate":5.0,"available":true,"time_series_container":[],"name":"B30","reactive_power_flow":0.0,"arc":{"value":"17ebeedc-1e9d-4cba-abaa-698243a1d096"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"d19c70cd-9bdb-4b58-b3ce-46d2a62494bd"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.061,"b":{"from":0.0085,"to":0.0085},"r":0.016,"rate":1.75,"available":true,"time_series_container":[],"name":"B11","reactive_power_flow":0.0,"arc":{"value":"19b29ee4-608d-46b2-a855-d18ea924d538"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"1168abff-a495-4dfb-b1b0-eef30ea223cf"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.085,"b":{"from":0.0115,"to":0.0115},"r":0.022,"rate":1.75,"available":true,"time_series_container":[],"name":"C3","reactive_power_flow":0.0,"arc":{"value":"a5f6b631-342a-4ad8-a0e3-5d9143cb28c3"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"88beacf2-93b1-4bc8-a017-504f6f2095fc"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.022,"b":{"from":0.023,"to":0.023},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"A33-1","reactive_power_flow":0.0,"arc":{"value":"43e458fb-175e-4160-a81e-c4e0ff5b1bb9"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"e211614d-7983-47a3-9d78-d27f5f7ae78e"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.165,"b":{"from":0.0225,"to":0.0225},"r":0.043,"rate":1.75,"available":true,"time_series_container":[],"name":"B13-2","reactive_power_flow":0.0,"arc":{"value":"61256f4d-fec8-4590-ae14-1ec09b5cb25e"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"8ef3e6fa-2073-4dc4-9342-fec8d17ac22b"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"C31-1","reactive_power_flow":0.0,"arc":{"value":"647dec1d-6a72-4486-8844-905d8cb971d9"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"e1effdbf-d62f-44b6-b6f6-3f9e0c0f4d33"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.048,"b":{"from":0.05,"to":0.05},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"A20","reactive_power_flow":0.0,"arc":{"value":"49d691a2-0f3c-438a-828b-a08330132a20"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"0b1f65ec-c1f1-46da-a541-3038f492761e"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.165,"b":{"from":0.0225,"to":0.0225},"r":0.043,"rate":1.75,"available":true,"time_series_container":[],"name":"B12-1","reactive_power_flow":0.0,"arc":{"value":"60947cc7-9aa8-4e45-adab-6967c5b58668"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"e6f691a3-5401-4e17-8dab-8196fd2d2859"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.085,"b":{"from":0.0115,"to":0.0115},"r":0.022,"rate":1.75,"available":true,"time_series_container":[],"name":"B3","reactive_power_flow":0.0,"arc":{"value":"d00b6f7f-c8fd-4250-96b5-a6c4ab0c100f"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"65e1a28a-9fa8-42a7-b3da-02e93001026a"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.017,"b":{"from":0.018,"to":0.018},"r":0.002,"rate":5.0,"available":true,"time_series_container":[],"name":"B24","reactive_power_flow":0.0,"arc":{"value":"df8c7aee-36f8-4aeb-adb8-457e58b3cd9a"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"23b24a05-788c-4546-887d-47004660d8c8"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.211,"b":{"from":0.0285,"to":0.0285},"r":0.055,"rate":1.75,"available":true,"time_series_container":[],"name":"A2","reactive_power_flow":0.0,"arc":{"value":"28d92f90-19dc-47aa-8e74-84d358c60d2f"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"071d1467-9b8e-428d-8d47-eeeaa1969e25"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.119,"b":{"from":0.016,"to":0.016},"r":0.031,"rate":1.75,"available":true,"time_series_container":[],"name":"B6","reactive_power_flow":0.0,"arc":{"value":"68041d74-fa3b-4b08-a04b-96079f4e7c8d"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"d71044e5-8b8e-441e-bbdf-d8cfc5211399"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.165,"b":{"from":0.0225,"to":0.0225},"r":0.043,"rate":1.75,"available":true,"time_series_container":[],"name":"A13-2","reactive_power_flow":0.0,"arc":{"value":"effd792a-c778-4d4f-b3c2-7b5b62bbed58"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"c1c99596-8d2f-44e5-acb6-ded530acd571"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.023,"b":{"from":0.0245,"to":0.0245},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"B28","reactive_power_flow":0.0,"arc":{"value":"04df668c-aff6-4fae-9ef7-7eb866d2f339"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"9888290f-afe3-4449-ab93-94bb9acef221"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.059,"b":{"from":0.041,"to":0.041},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"A23","reactive_power_flow":0.0,"arc":{"value":"657bd129-1f7d-43e3-ad3c-cc1ed76f0517"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"77ba90fd-0f9f-42d7-91db-6b0897e090f2"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.104,"b":{"from":0.014,"to":0.014},"r":0.027,"rate":1.75,"available":true,"time_series_container":[],"name":"C8","reactive_power_flow":0.0,"arc":{"value":"8b0801d4-c246-4744-be3b-c12af81093de"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"64721ea0-1804-4bfc-802e-2da65affc271"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.04,"b":{"from":0.0415,"to":0.0415},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"B32-2","reactive_power_flow":0.0,"arc":{"value":"1ef0cc9b-cc7f-4804-937d-0f773dc6f737"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"c1e0a245-0ef3-4958-b56a-8dcdc696116b"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.017,"b":{"from":0.018,"to":0.018},"r":0.002,"rate":5.0,"available":true,"time_series_container":[],"name":"A24","reactive_power_flow":0.0,"arc":{"value":"5bb57e9e-4260-40b7-b958-d0fd01387996"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"03250951-9fc3-40a5-9cb4-e5510f18923f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.022,"b":{"from":0.023,"to":0.023},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"B33-2","reactive_power_flow":0.0,"arc":{"value":"58a56450-cb01-4288-8a11-be7670cb1f32"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"78b31165-a30c-448f-86eb-f1f17e8fe2cd"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.105,"b":{"from":0.1105,"to":0.1105},"r":0.014,"rate":5.0,"available":true,"time_series_container":[],"name":"A30","reactive_power_flow":0.0,"arc":{"value":"c87251e3-c9b1-4c08-b88c-89b57e7a407f"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"b79a1760-7d84-4d9a-845e-10cda863005c"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.061,"b":{"from":1.2295,"to":1.2295},"r":0.014,"rate":1.75,"available":true,"time_series_container":[],"name":"B10","reactive_power_flow":0.0,"arc":{"value":"044cad34-3e50-440e-81d5-e8c7bfc7fcf2"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"fb977d80-ab58-4d4c-9e2e-44d382f523ec"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.049,"b":{"from":0.0515,"to":0.0515},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"B25-2","reactive_power_flow":0.0,"arc":{"value":"d039859c-2851-40aa-955c-b0ff35f38ec9"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"f7b15bd4-f14b-4429-8e4f-3ccfb7962d83"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.061,"b":{"from":1.2295,"to":1.2295},"r":0.014,"rate":1.75,"available":true,"time_series_container":[],"name":"A10","reactive_power_flow":0.0,"arc":{"value":"7084d608-0fcd-4cd9-b0b3-78adc7df85fc"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"c8cf3b42-241e-415c-ab2e-c6626d9ec04b"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.087,"b":{"from":0.091,"to":0.091},"r":0.011,"rate":5.0,"available":true,"time_series_container":[],"name":"C22","reactive_power_flow":0.0,"arc":{"value":"7b626431-235a-409d-bea4-a927a861c07c"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"d9b08352-cf26-4fb7-8b8c-f9efa8ed089e"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.119,"b":{"from":0.016,"to":0.016},"r":0.031,"rate":1.75,"available":true,"time_series_container":[],"name":"C6","reactive_power_flow":0.0,"arc":{"value":"86fc0b0d-fb18-4236-b75f-13b80f97566d"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"005c877b-fc8d-47fb-be7e-47be48097aac"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.061,"b":{"from":0.0085,"to":0.0085},"r":0.016,"rate":1.75,"available":true,"time_series_container":[],"name":"A11","reactive_power_flow":0.0,"arc":{"value":"53a12461-a7b1-459f-9a93-ef101ff16256"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"63e04bb2-0736-4561-b04e-9ccbc9ef8b82"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.068,"b":{"from":0.071,"to":0.071},"r":0.009,"rate":5.0,"available":true,"time_series_container":[],"name":"C34","reactive_power_flow":0.0,"arc":{"value":"e51d8e57-3ce7-4d94-9bda-6db735288751"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"5aa02b99-963b-489b-a7e5-5a171b975604"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.04,"b":{"from":0.0415,"to":0.0415},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"C32-1","reactive_power_flow":0.0,"arc":{"value":"b232561c-3ab7-44d2-a6d0-b9ba1298f52b"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"cff6a5a9-796e-4805-96f7-7ca255a2d949"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.048,"b":{"from":0.05,"to":0.05},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"B18","reactive_power_flow":0.0,"arc":{"value":"946d640d-1c27-4a6a-b57a-0fdd6692cf3f"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"3d5e0558-fc08-4c34-a4b2-731893ffcd63"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"requirement":0.42851,"max_participation_factor":1.0,"sustained_time":3600.0,"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"9c540f36-e5c4-4c15-8bdb-f2de97da783b"},"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"0ad51924-8d45-4247-bcfa-1a35a0523fb8"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"0ad51924-8d45-4247-bcfa-1a35a0523fb8"},"ext":null,"units_info":null},"time_series_uuid":{"value":"9c540f36-e5c4-4c15-8bdb-f2de97da783b"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Spin_Up_R2","__metadata__":{"parameters":["ReserveUp"],"construct_with_parameters":true,"module":"PowerSystems","type":"VariableReserve"},"internal":{"uuid":{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},"ext":null,"units_info":null},"time_frame":600.0,"ext":{},"deployed_fraction":0.0,"max_output_fraction":1.0},{"requirement":0.5666599999999999,"max_participation_factor":1.0,"sustained_time":3600.0,"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"b323094a-a9a9-4cd9-ad47-ae0894bff31f"},"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"7fba89b8-3c80-40e2-81f7-df0b9b7e49bc"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"7fba89b8-3c80-40e2-81f7-df0b9b7e49bc"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b323094a-a9a9-4cd9-ad47-ae0894bff31f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Spin_Up_R3","__metadata__":{"parameters":["ReserveUp"],"construct_with_parameters":true,"module":"PowerSystems","type":"VariableReserve"},"internal":{"uuid":{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},"ext":null,"units_info":null},"time_frame":600.0,"ext":{},"deployed_fraction":0.0,"max_output_fraction":1.0},{"requirement":1.26,"max_participation_factor":1.0,"sustained_time":3600.0,"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71b63a45-167c-4ead-bdc9-f18e906af884"},"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"ccc4ffcb-91d8-41d9-bbd3-19b5b4d61f33"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"ccc4ffcb-91d8-41d9-bbd3-19b5b4d61f33"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71b63a45-167c-4ead-bdc9-f18e906af884"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Reg_Up","__metadata__":{"parameters":["ReserveUp"],"construct_with_parameters":true,"module":"PowerSystems","type":"VariableReserve"},"internal":{"uuid":{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},"ext":null,"units_info":null},"time_frame":300.0,"ext":{},"deployed_fraction":0.0,"max_output_fraction":1.0},{"requirement":0.40413,"max_participation_factor":1.0,"sustained_time":3600.0,"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"6a0a21cd-91eb-4de4-8566-4e6514f591f6"},"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"f7df0f03-9d7c-48c3-b437-55479f4f300b"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"f7df0f03-9d7c-48c3-b437-55479f4f300b"},"ext":null,"units_info":null},"time_series_uuid":{"value":"6a0a21cd-91eb-4de4-8566-4e6514f591f6"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Spin_Up_R1","__metadata__":{"parameters":["ReserveUp"],"construct_with_parameters":true,"module":"PowerSystems","type":"VariableReserve"},"internal":{"uuid":{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},"ext":null,"units_info":null},"time_frame":600.0,"ext":{},"deployed_fraction":0.0,"max_output_fraction":1.0},{"load_response":0.0,"name":"1","__metadata__":{"module":"PowerSystems","type":"Area"},"internal":{"uuid":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":null,"units_info":null},"peak_active_power":0.0,"peak_reactive_power":0.0,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"ea402893-8a7d-458a-9063-1c478225ca2a"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"c17aecdc-0a2c-4d66-be18-9d04466c22db"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_peak_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"c17aecdc-0a2c-4d66-be18-9d04466c22db"},"ext":null,"units_info":null},"time_series_uuid":{"value":"ea402893-8a7d-458a-9063-1c478225ca2a"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_peak_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}]},{"base_power":101.7,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"871af1e2-1fec-4835-a1ab-7f7f41effc07"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"e4e55844-3462-45ca-8b9a-add16e84dea2"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"e4e55844-3462-45ca-8b9a-add16e84dea2"},"ext":null,"units_info":null},"time_series_uuid":{"value":"871af1e2-1fec-4835-a1ab-7f7f41effc07"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"ab353c94-abe0-4095-9599-05cd58aceff8"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":27.0,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"7060bd84-1950-425c-abed-355c9ad4ee97"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"72fa8728-a183-494c-bbfa-f1f136ef9326"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"ec2a3904-aeeb-4901-b46a-65aebc54e06a"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"ec2a3904-aeeb-4901-b46a-65aebc54e06a"},"ext":null,"units_info":null},"time_series_uuid":{"value":"72fa8728-a183-494c-bbfa-f1f136ef9326"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"320_RTPV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"5b66fdad-ada9-4b97-bc5b-f6b3b15344e8"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":13.2,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"45ac7ff2-133f-436a-8874-f504f8e890b3"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"3ded01ff-a4af-4f59-baf4-e303936fb1b9"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"58c2e121-4667-40c8-a19b-cc8bb3050efa"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"58c2e121-4667-40c8-a19b-cc8bb3050efa"},"ext":null,"units_info":null},"time_series_uuid":{"value":"3ded01ff-a4af-4f59-baf4-e303936fb1b9"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"213_RTPV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"39e86ecb-16ec-4079-aaf4-e150378a53b1"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":62.4,"prime_mover_type":"PVe","rating":0.30000000000000004,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"5d6926bc-e3d1-47f1-8663-fd59822d3309"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"549e2a07-72ea-475b-abdc-c79eac5eaeee"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"549e2a07-72ea-475b-abdc-c79eac5eaeee"},"ext":null,"units_info":null},"time_series_uuid":{"value":"5d6926bc-e3d1-47f1-8663-fd59822d3309"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_9","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"3dc05280-8621-4155-a440-9cd04eda58d6"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":63.1,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"245326f8-86a5-4a48-a195-2de59473522d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"ee00e124-79e3-4418-a843-f660407703e9"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"ee00e124-79e3-4418-a843-f660407703e9"},"ext":null,"units_info":null},"time_series_uuid":{"value":"245326f8-86a5-4a48-a195-2de59473522d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"709852d9-8411-45ad-9336-48f0b275bf35"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":64.1,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"3bb30b14-6ad4-449c-9ea3-ab55db2bc08f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"b0fc8c9f-df7a-43a2-b196-3462f67e4a9e"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"b0fc8c9f-df7a-43a2-b196-3462f67e4a9e"},"ext":null,"units_info":null},"time_series_uuid":{"value":"3bb30b14-6ad4-449c-9ea3-ab55db2bc08f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_7","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"97c20354-0cc4-4efd-94e7-092bded6cd9e"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":28.3,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"7060bd84-1950-425c-abed-355c9ad4ee97"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"aefdc0e3-a049-4241-930d-d1a9664e5de6"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"e53b810a-a0ae-44b9-b7c7-34b92f954e3d"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"e53b810a-a0ae-44b9-b7c7-34b92f954e3d"},"ext":null,"units_info":null},"time_series_uuid":{"value":"aefdc0e3-a049-4241-930d-d1a9664e5de6"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"320_RTPV_3","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"e3ba3854-5fb3-471d-baed-5d3ab8b9aad3"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":100.9,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"d5e86284-9814-474a-b96a-7718de7b02f1"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"5648851f-1cd1-41e3-8e44-38c829a85e8a"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"5d095f14-b2dd-4f2e-b9e4-a8ce842d4f59"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"5d095f14-b2dd-4f2e-b9e4-a8ce842d4f59"},"ext":null,"units_info":null},"time_series_uuid":{"value":"5648851f-1cd1-41e3-8e44-38c829a85e8a"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"308_RTPV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"d51605d8-8e79-46f3-a103-e64ec43a88f8"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":67.0,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"c043bd62-5486-4ffc-bfbe-65739619316b"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"379842e3-769e-40de-949a-a42928249433"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"379842e3-769e-40de-949a-a42928249433"},"ext":null,"units_info":null},"time_series_uuid":{"value":"c043bd62-5486-4ffc-bfbe-65739619316b"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_4","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"73e6b4f8-0c5c-4400-b3fd-74087679aa68"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":64.8,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"bba309ef-a1c5-4edc-b4de-33d5768911b9"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"1a992f56-0485-46a6-b6f2-4e4e94c5070a"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"1a992f56-0485-46a6-b6f2-4e4e94c5070a"},"ext":null,"units_info":null},"time_series_uuid":{"value":"bba309ef-a1c5-4edc-b4de-33d5768911b9"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_5","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"4df93bdb-c180-463a-97ae-6e5b93aa06cb"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":63.8,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"13b023b6-96a2-4b33-83a6-df628aa96b57"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"8da2c3ce-f006-4629-b5db-f6d2713e72b7"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"8da2c3ce-f006-4629-b5db-f6d2713e72b7"},"ext":null,"units_info":null},"time_series_uuid":{"value":"13b023b6-96a2-4b33-83a6-df628aa96b57"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_6","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"a5a784b9-7f12-482b-8fa5-79cfb9389e40"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":27.3,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"7060bd84-1950-425c-abed-355c9ad4ee97"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"09bd3b86-590b-4fb8-ad4b-de71488c2ac0"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"7ab5a5bd-c0b7-4d51-a7f5-b270ee4a7a69"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"7ab5a5bd-c0b7-4d51-a7f5-b270ee4a7a69"},"ext":null,"units_info":null},"time_series_uuid":{"value":"09bd3b86-590b-4fb8-ad4b-de71488c2ac0"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"320_RTPV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"89d5a7a0-c19b-4f20-8b49-01abae846454"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":9.4,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"7060bd84-1950-425c-abed-355c9ad4ee97"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"e4b81539-00f8-4edf-8731-d402d0ebd806"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"d7c81c22-49fc-4e30-927a-896059ea2b4f"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"d7c81c22-49fc-4e30-927a-896059ea2b4f"},"ext":null,"units_info":null},"time_series_uuid":{"value":"e4b81539-00f8-4edf-8731-d402d0ebd806"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"320_RTPV_6","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"26f38000-a882-408f-9b27-35fc0a17133f"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":28.2,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"7060bd84-1950-425c-abed-355c9ad4ee97"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"266c5d0f-d7fe-460f-b5c5-62fa9797d0fb"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"6151a348-dde2-47f0-96bd-b65258dd6274"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"6151a348-dde2-47f0-96bd-b65258dd6274"},"ext":null,"units_info":null},"time_series_uuid":{"value":"266c5d0f-d7fe-460f-b5c5-62fa9797d0fb"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"320_RTPV_5","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"224b8594-810a-43bb-910f-2be2164c0c3a"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":9.7,"prime_mover_type":"PVe","rating":0.29999999999999993,"services":[],"bus":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"a3182deb-855a-4fe2-8f11-21030404faed"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"0b4129de-7961-49e2-9830-39d4a974518c"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"0b4129de-7961-49e2-9830-39d4a974518c"},"ext":null,"units_info":null},"time_series_uuid":{"value":"a3182deb-855a-4fe2-8f11-21030404faed"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"7e396523-4406-4c30-94b6-36b6b895b479"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":27.0,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"7060bd84-1950-425c-abed-355c9ad4ee97"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"455919a0-9513-4b2d-81b5-02e74a36fd74"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"a7761f5c-5d22-438e-a5c9-8867535e83c2"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"a7761f5c-5d22-438e-a5c9-8867535e83c2"},"ext":null,"units_info":null},"time_series_uuid":{"value":"455919a0-9513-4b2d-81b5-02e74a36fd74"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"320_RTPV_4","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"07934678-6c86-4754-85a0-6b10df4fb0fb"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":65.2,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"c8b19a4e-3703-49a6-9486-f2cc440a6242"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"c848b9b1-aea6-4c3f-82ef-59660cc96960"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"c848b9b1-aea6-4c3f-82ef-59660cc96960"},"ext":null,"units_info":null},"time_series_uuid":{"value":"c8b19a4e-3703-49a6-9486-f2cc440a6242"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_11","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"a5fc1954-227e-486c-aaa5-804c48d20ddf"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":11.8,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"5e74c8f9-7c73-4d0e-a659-7e03abd52a83"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"e19cc79d-a21d-4b12-be0b-c6546b76298a"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"e19cc79d-a21d-4b12-be0b-c6546b76298a"},"ext":null,"units_info":null},"time_series_uuid":{"value":"5e74c8f9-7c73-4d0e-a659-7e03abd52a83"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_7","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"0e022d0c-af3c-4dd6-adcd-58c993e08d3a"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":9.4,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2f35d6b9-2a61-475e-8a26-f0f99a245aa4"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"626b1085-8d8a-410a-a6e2-68711c9f3ab8"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"626b1085-8d8a-410a-a6e2-68711c9f3ab8"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2f35d6b9-2a61-475e-8a26-f0f99a245aa4"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_3","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"b827ccd7-76fc-4134-bd79-689f93a9b6df"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":27.2,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"f77d45f7-955c-4c96-b9f1-82c555f55104"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"ddef57bd-b22a-48c1-9001-280d990ace23"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"ddef57bd-b22a-48c1-9001-280d990ace23"},"ext":null,"units_info":null},"time_series_uuid":{"value":"f77d45f7-955c-4c96-b9f1-82c555f55104"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_13","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"ffeb267f-720d-4fe7-a473-c30fed576aa3"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":27.8,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"1ce425a5-3157-428b-aed4-fdfb412832fb"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"1e1a8098-0fa1-4b11-8467-e044869ab50e"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"1e1a8098-0fa1-4b11-8467-e044869ab50e"},"ext":null,"units_info":null},"time_series_uuid":{"value":"1ce425a5-3157-428b-aed4-fdfb412832fb"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_12","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"c62608da-439e-47fd-88e6-6a99cf9b4e7f"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":11.2,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"35bd9583-65f3-4353-8523-99785ae0301e"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"d4fd0944-fa75-4905-9385-38eb25a3ac68"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"d4fd0944-fa75-4905-9385-38eb25a3ac68"},"ext":null,"units_info":null},"time_series_uuid":{"value":"35bd9583-65f3-4353-8523-99785ae0301e"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_8","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"7b6c908e-bc7c-4098-b039-a5115b1461e4"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":65.4,"prime_mover_type":"PVe","rating":0.30000000000000004,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"7282ceec-f63a-4865-b2b4-ff28340c0108"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"76d2ca04-af75-447a-9b1b-e5e14a6f42f4"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"76d2ca04-af75-447a-9b1b-e5e14a6f42f4"},"ext":null,"units_info":null},"time_series_uuid":{"value":"7282ceec-f63a-4865-b2b4-ff28340c0108"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_3","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"75b82d2b-90ed-4fef-815f-a3d5f80e6b54"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":4.5,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"1714f70c-0baf-4617-9ee6-1671dc329216"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"0153e72d-ac69-45b2-8551-6be30b053b81"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"0153e72d-ac69-45b2-8551-6be30b053b81"},"ext":null,"units_info":null},"time_series_uuid":{"value":"1714f70c-0baf-4617-9ee6-1671dc329216"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_10","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"9e1f37b0-b83f-4863-80b1-bfc285705539"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":66.9,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"a5230e52-a083-4e44-8f01-9fc848162835"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"52e39fad-09fe-47e2-b02d-118a37534fa9"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"52e39fad-09fe-47e2-b02d-118a37534fa9"},"ext":null,"units_info":null},"time_series_uuid":{"value":"a5230e52-a083-4e44-8f01-9fc848162835"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_10","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"005b2101-3685-431c-afa8-5d1ece0addb1"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":9.1,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"6e3481da-86af-480a-92a3-77cbc05a32d8"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"1e5b62d9-03dc-4900-b226-3c06f7e6e0b0"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"1e5b62d9-03dc-4900-b226-3c06f7e6e0b0"},"ext":null,"units_info":null},"time_series_uuid":{"value":"6e3481da-86af-480a-92a3-77cbc05a32d8"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_5","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"64a4842b-72af-4ef9-a027-177977f9f0f8"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":9.3,"prime_mover_type":"PVe","rating":0.30000000000000004,"services":[],"bus":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2b25cd58-e55e-42e9-b8e9-14aef8bf2686"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"c0c29977-8f5a-4daa-8949-005c2bcae6ba"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"c0c29977-8f5a-4daa-8949-005c2bcae6ba"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2b25cd58-e55e-42e9-b8e9-14aef8bf2686"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"e8407658-0705-414f-a06f-530b3a072077"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":10.3,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"cde7ba24-6eef-4395-a8a0-071e566477a9"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"74bb7246-7957-4dc2-ad2b-cdefc1b60ebd"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"74bb7246-7957-4dc2-ad2b-cdefc1b60ebd"},"ext":null,"units_info":null},"time_series_uuid":{"value":"cde7ba24-6eef-4395-a8a0-071e566477a9"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_9","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"5e258e6f-124f-4de3-972a-23ecead9f7cd"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":9.7,"prime_mover_type":"PVe","rating":0.29999999999999993,"services":[],"bus":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"6adb65d5-35a5-4444-9e9d-15a839c58666"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"dea0eed1-cc24-4024-b59c-20d095d1a92d"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"dea0eed1-cc24-4024-b59c-20d095d1a92d"},"ext":null,"units_info":null},"time_series_uuid":{"value":"6adb65d5-35a5-4444-9e9d-15a839c58666"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_6","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"55fb7cef-7cd8-458b-8bb3-46228f096b26"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":66.6,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"ffc23ea5-dd7d-485f-a3af-2604b8928840"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"8a36fc60-6ec2-431b-b0ce-1505acf3bd24"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"8a36fc60-6ec2-431b-b0ce-1505acf3bd24"},"ext":null,"units_info":null},"time_series_uuid":{"value":"ffc23ea5-dd7d-485f-a3af-2604b8928840"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_8","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"5345eb46-8469-48c2-a002-ef4bfaaca2f8"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":9.1,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"677aee7a-b79d-4132-8cf4-0111d09245b2"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"18c688da-3232-487f-9d4a-87f5654fb211"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"18c688da-3232-487f-9d4a-87f5654fb211"},"ext":null,"units_info":null},"time_series_uuid":{"value":"677aee7a-b79d-4132-8cf4-0111d09245b2"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_4","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"13284221-1bf9-48f7-9263-26e185192a7b"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"92f52df2-a61a-4fc2-a4fb-f83d826ac0a0"},"available":true,"time_series_container":[],"name":"322_CT_6","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"b1d40d68-1d05-4a0b-b11f-ec45626e38bb"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":518.3296892400001,"shut_down":2832.6172140000003,"variable":{"cost":[[513.36959652,22.0],[770.0543947799999,33.0],[1061.5453609200001,44.0],[1368.38695884,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":-0.15203125},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"5a9e620b-fdfe-4823-9e40-235dd7f249ac"},"available":true,"time_series_container":[],"name":"321_CC_1","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"cae185be-3205-4ffb-a9fa-ab4e639b15ed"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":911.2809837691275,"shut_down":14023.340511000002,"variable":{"cost":[[3864.5186316764684,169.999999845],[5266.353829430996,231.6666668],[6864.033641203774,293.33333339999996],[8957.437661640635,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":-0.008067632850241546},{"base_power":89.0,"prime_mover_type":"ST","rating":0.9180538523962021,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"50290f85-efed-4e89-aedd-70a97520ad6c"},"available":true,"time_series_container":[],"name":"202_STEAM_3","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"895b9715-444f-4627-ab5e-3e02b555da76"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.2808988764044944,"max":0.33707865168539325},"ext":{},"operation_cost":{"start_up":11172.014351999998,"fixed":117.7703828685942,"shut_down":5586.007175999999,"variable":{"cost":[[633.499383131067,29.999999992],[957.2879568740448,45.333333327999995],[1283.7021061974792,60.666666664000005],[1701.9141572968783,76.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.0},"must_run":false,"ramp_limits":{"up":0.0011235955056179776,"down":0.0011235955056179776},"time_at_status":10000.0,"active_power_limits":{"min":0.33707865168539325,"max":0.8539325842696629},"reactive_power":0.022584269662921347},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"62f071cb-9649-4b48-95a6-8c49d1b8ebf8"},"available":true,"time_series_container":[],"name":"223_CT_4","status":true,"active_power":0.34375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"e0b4025b-cbd0-4ae0-917d-b1c240853553"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":872.2066491600004,"shut_down":2832.6172140000003,"variable":{"cost":[[820.5532697999998,22.0],[1230.8299046999998,33.0],[1668.0449742,44.0],[2124.54454212,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.00375},{"base_power":182.0,"prime_mover_type":"ST","rating":0.9583936012369455,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"d003942b-96e7-4e0c-8575-3f734035ce4a"},"available":true,"time_series_container":[],"name":"123_STEAM_2","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"2a703e28-2046-4870-aac8-a3f2006e94e7"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.27472527472527475,"max":0.43956043956043955},"ext":{},"operation_cost":{"start_up":22784.795618999997,"fixed":232.77566688000002,"shut_down":11392.397809499998,"variable":{"cost":[[1204.6402895799995,62.0],[1806.9604343699993,93.0],[2518.9839762199995,124.0],[3543.078949849999,155.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":8.0},"must_run":false,"ramp_limits":{"up":0.0005494505494505495,"down":0.0005494505494505495},"time_at_status":10000.0,"active_power_limits":{"min":0.34065934065934067,"max":0.8516483516483516},"reactive_power":-0.028516483516483518},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"45ac7ff2-133f-436a-8874-f504f8e890b3"},"available":true,"time_series_container":[],"name":"213_CT_1","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"a78a255c-6b0d-497c-8820-b9ddb3e748f3"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":532.4402978400002,"shut_down":2832.6172140000003,"variable":{"cost":[[589.99447716,22.0],[884.99171574,33.0],[1210.0488265800002,44.0],[1543.4440243200002,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.14421875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"62f071cb-9649-4b48-95a6-8c49d1b8ebf8"},"available":true,"time_series_container":[],"name":"223_CT_6","status":true,"active_power":0.34375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"28a53e40-3f94-41ba-aa31-e6829cb0f404"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":872.2066491600004,"shut_down":2832.6172140000003,"variable":{"cost":[[820.5532697999998,22.0],[1230.8299046999998,33.0],[1668.0449742,44.0],[2124.54454212,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.00375},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[],"name":"313_CC_1","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"85aad0e6-9c94-40a8-b46e-df608ae042aa"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":2568.636101458008,"shut_down":14023.340511000002,"variable":{"cost":[[2674.368485361605,169.999999845],[3644.482549197544,231.6666668],[5294.419555113827,293.33333339999996],[7375.837980563647,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.36231884057971014},{"base_power":89.0,"prime_mover_type":"ST","rating":0.9180538523962021,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"afd07468-171d-40b1-93df-ce3d4e92af2a"},"available":true,"time_series_container":[],"name":"101_STEAM_3","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"225ccae3-3e0b-49cc-95c7-1747fa461ad7"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.2808988764044944,"max":0.33707865168539325},"ext":{},"operation_cost":{"start_up":11172.014351999998,"fixed":415.8429727891081,"shut_down":5586.007175999999,"variable":{"cost":[[425.73644598647036,29.999999992],[643.3350740309802,45.333333327999995],[903.5587871162365,60.666666664000005],[1180.6704616510965,76.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.0},"must_run":false,"ramp_limits":{"up":0.0011235955056179776,"down":0.0011235955056179776},"time_at_status":10000.0,"active_power_limits":{"min":0.33707865168539325,"max":0.8539325842696629},"reactive_power":0.0015730337078651688},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"d003942b-96e7-4e0c-8575-3f734035ce4a"},"available":true,"time_series_container":[],"name":"123_CT_1","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"0bb82724-6b66-4630-b796-ac1c27bd1459"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":510.3764371200001,"shut_down":2832.6172140000003,"variable":{"cost":[[577.85080188,22.0],[866.77620282,33.0],[1194.6126759600002,44.0],[1536.6025171200001,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.0096875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"57289903-07af-401b-843a-3b3c79d00ff9"},"available":true,"time_series_container":[],"name":"113_CT_3","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"f2efd60a-75a3-4e1d-8da1-d57f57abf2c2"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":532.4402978400002,"shut_down":2832.6172140000003,"variable":{"cost":[[589.99447716,22.0],[884.99171574,33.0],[1210.0488265800002,44.0],[1543.4440243200002,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"8f167815-24eb-4f8a-8363-e5356a10d37d"},"available":true,"time_series_container":[],"name":"302_CT_3","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"7f475cf4-f812-4c27-afc5-edfa10ab9598"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":573.1472656800003,"shut_down":2832.6172140000003,"variable":{"cost":[[743.4152761199999,22.0],[1115.12291418,33.0],[1537.32942726,44.0],[1962.31530264,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.17171875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"dcfad80f-ad3b-4109-8cd3-9b58a747e5cc"},"available":true,"time_series_container":[],"name":"215_CT_4","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"4956148b-9637-43d3-b007-cb2448d27c69"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":646.6079492400002,"shut_down":2832.6172140000003,"variable":{"cost":[[570.23962512,22.0],[855.35943768,33.0],[1154.11950522,44.0],[1514.19658104,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":89.0,"prime_mover_type":"ST","rating":0.9180538523962021,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"7ae0f683-1403-4dc3-b4d7-08e0c281096e"},"available":true,"time_series_container":[],"name":"102_STEAM_3","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"224933a1-23ad-4ef2-8f6e-b2d05a811147"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.2808988764044944,"max":0.33707865168539325},"ext":{},"operation_cost":{"start_up":11172.014351999998,"fixed":181.1900828516824,"shut_down":5586.007175999999,"variable":{"cost":[[553.9076596522913,29.999999992],[837.0160191548607,45.333333327999995],[1156.6555351904503,60.666666664000005],[1501.9025167638265,76.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.0},"must_run":false,"ramp_limits":{"up":0.0011235955056179776,"down":0.0011235955056179776},"time_at_status":10000.0,"active_power_limits":{"min":0.33707865168539325,"max":0.8539325842696629},"reactive_power":-0.025955056179775282},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"a3bf399e-3fda-477b-9082-c5166a72bc71"},"available":true,"time_series_container":[],"name":"301_CT_4","status":true,"active_power":0.6875,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"bff1dde3-571b-47a1-9401-7590d5f30389"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":493.10163144000023,"shut_down":2832.6172140000003,"variable":{"cost":[[626.33998416,22.0],[939.50997624,33.0],[1261.65944652,44.0],[1742.83119978,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.25828125},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"57289903-07af-401b-843a-3b3c79d00ff9"},"available":true,"time_series_container":[],"name":"113_CT_2","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"116bc7e1-e642-4da1-a9d6-1dd0c373b345"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":532.4402978400002,"shut_down":2832.6172140000003,"variable":{"cost":[[589.99447716,22.0],[884.99171574,33.0],[1210.0488265800002,44.0],[1543.4440243200002,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"9f63753a-68f9-4987-929c-3aae17e152b7"},"available":true,"time_series_container":[],"name":"221_CC_1","status":true,"active_power":0.7173188405797102,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"4998f3a2-260e-49f2-85a1-06634d4acb2c"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":619.1952732354412,"shut_down":14023.340511000002,"variable":{"cost":[[3931.92302641501,169.999999845],[5358.2088380838595,231.6666668],[6981.537823128909,293.33333339999996],[9209.180507420648,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":-0.01816425120772947},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"62f071cb-9649-4b48-95a6-8c49d1b8ebf8"},"available":true,"time_series_container":[],"name":"223_CT_5","status":true,"active_power":0.34375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"beb8280c-3216-40ac-a781-ba52f80159a5"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":872.2066491600004,"shut_down":2832.6172140000003,"variable":{"cost":[[820.5532697999998,22.0],[1230.8299046999998,33.0],[1668.0449742,44.0],[2124.54454212,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.00375},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"657eb7a1-3bf7-4e34-a990-02b4aed96447"},"available":true,"time_series_container":[],"name":"315_CT_7","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"e3ac7f99-f8fd-4d62-8668-904c3773760d"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":303.59188200000017,"shut_down":2832.6172140000003,"variable":{"cost":[[580.8439612799998,22.0],[871.2659419199997,33.0],[1167.1183688999997,44.0],[1517.5318157999998,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"dcfad80f-ad3b-4109-8cd3-9b58a747e5cc"},"available":true,"time_series_container":[],"name":"215_CT_5","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"790d958e-b0b5-429e-91a7-87e4a8ce449b"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":646.6079492400002,"shut_down":2832.6172140000003,"variable":{"cost":[[570.23962512,22.0],[855.35943768,33.0],[1154.11950522,44.0],[1514.19658104,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"6c610478-0521-4753-b30d-a3dfc942bbfd"},"available":true,"time_series_container":[],"name":"323_CC_1","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"037e3e25-43b9-4071-bd3f-e28224f50312"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":384.6015464493339,"shut_down":14023.340511000002,"variable":{"cost":[[4492.965488503473,169.999999845],[6122.766704223895,231.6666668],[7989.882691305391,293.33333339999996],[9946.411216990226,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.0903623188405797},{"base_power":89.0,"prime_mover_type":"ST","rating":0.9180538523962021,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"afd07468-171d-40b1-93df-ce3d4e92af2a"},"available":true,"time_series_container":[],"name":"101_STEAM_4","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"9a8042a7-5c3d-4df7-8c55-b453c5926284"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.2808988764044944,"max":0.33707865168539325},"ext":{},"operation_cost":{"start_up":11172.014351999998,"fixed":415.8429727891081,"shut_down":5586.007175999999,"variable":{"cost":[[425.73644598647036,29.999999992],[643.3350740309802,45.333333327999995],[903.5587871162365,60.666666664000005],[1180.6704616510965,76.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.0},"must_run":false,"ramp_limits":{"up":0.0011235955056179776,"down":0.0011235955056179776},"time_at_status":10000.0,"active_power_limits":{"min":0.33707865168539325,"max":0.8539325842696629},"reactive_power":0.0015730337078651688},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"57289903-07af-401b-843a-3b3c79d00ff9"},"available":true,"time_series_container":[],"name":"113_CT_1","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"94a6184a-7fdf-4b60-9ce1-99fd59d949cf"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":532.4402978400002,"shut_down":2832.6172140000003,"variable":{"cost":[[589.99447716,22.0],[884.99171574,33.0],[1210.0488265800002,44.0],[1543.4440243200002,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":412.0,"prime_mover_type":"ST","rating":0.9242443089640665,"services":[],"bus":{"value":"62f071cb-9649-4b48-95a6-8c49d1b8ebf8"},"available":true,"time_series_container":[],"name":"223_STEAM_3","status":true,"active_power":0.8495145631067961,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"0834db61-91ca-4e3e-ab56-051ef5e1d3a8"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06067961165048544,"max":0.3640776699029126},"ext":{},"operation_cost":{"start_up":36749.81355899999,"fixed":682.7764902000004,"shut_down":18374.906779499994,"variable":{"cost":[[2640.542629199999,140.0],[3960.813943799998,210.0],[5575.712044699998,280.0],[7298.930993199998,350.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":24.0,"down":48.0},"must_run":false,"ramp_limits":{"up":0.00024271844660194176,"down":0.00024271844660194176},"time_at_status":10000.0,"active_power_limits":{"min":0.33980582524271846,"max":0.8495145631067961},"reactive_power":0.04997572815533981},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"af951a07-2566-44f2-be2e-105749c2302f"},"available":true,"time_series_container":[],"name":"318_CC_1","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"236415c8-92f5-44cb-bca3-0d0b702cd711"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":691.2254597697665,"shut_down":14023.340511000002,"variable":{"cost":[[4563.674020239003,169.999999845],[6219.124409379352,231.6666668],[7901.18280986091,293.33333339999996],[9845.486028658961,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.15246376811594203},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"bed5979f-04a2-41d1-a5cb-2cec3a2eb58d"},"available":true,"time_series_container":[],"name":"307_CT_2","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"f5efee8d-af12-4924-9d46-495c0119ca50"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":528.2498746800003,"shut_down":2832.6172140000003,"variable":{"cost":[[613.6831958399999,22.0],[920.52479376,33.0],[1241.9473539,44.0],[1632.16982082,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"45ac7ff2-133f-436a-8874-f504f8e890b3"},"available":true,"time_series_container":[],"name":"213_CT_2","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"a57740d8-e83c-44d2-8a6e-a19f520f2bee"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":532.4402978400002,"shut_down":2832.6172140000003,"variable":{"cost":[[589.99447716,22.0],[884.99171574,33.0],[1210.0488265800002,44.0],[1543.4440243200002,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.14421875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"57289903-07af-401b-843a-3b3c79d00ff9"},"available":true,"time_series_container":[],"name":"113_CT_4","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"b5771275-efe4-4313-a100-45441e098146"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":532.4402978400002,"shut_down":2832.6172140000003,"variable":{"cost":[[589.99447716,22.0],[884.99171574,33.0],[1210.0488265800002,44.0],[1543.4440243200002,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"available":true,"time_series_container":[],"name":"118_CC_1","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"6361efe5-f11e-4a24-a381-ea480ce2c97f"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":957.5389017269504,"shut_down":14023.340511000002,"variable":{"cost":[[3838.085535700569,169.999999845],[5230.332257410263,231.6666668],[6941.875221559946,293.33333339999996],[8943.709296295801,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.1652898550724638},{"base_power":64.0,"prime_mover_type":"CT","rating":1.2717828590702895,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"657eb7a1-3bf7-4e34-a990-02b4aed96447"},"available":true,"time_series_container":[],"name":"315_CT_8","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"73dab168-cd4e-44ec-824d-51872ee2ca52"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.9375},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":303.59188200000017,"shut_down":2832.6172140000003,"variable":{"cost":[[580.8439612799998,22.0],[871.2659419199997,33.0],[1167.1183688999997,44.0],[1517.5318157999998,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.9375},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"12996cf4-757c-4779-9a38-ed2c56964376"},"available":true,"time_series_container":[],"name":"218_CC_1","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"14b762f9-1438-4a32-b963-af5efa68830b"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":3962.9819141866938,"shut_down":14023.340511000002,"variable":{"cost":[[3560.5380279536275,169.999999845],[4852.105751192579,231.6666668],[6188.499592247828,293.33333339999996],[8024.213320463274,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.14565217391304347},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"45ac7ff2-133f-436a-8874-f504f8e890b3"},"available":true,"time_series_container":[],"name":"213_CC_3","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"be2de130-7560-414b-a5eb-c5d37806c1f7"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":984.6328251022478,"shut_down":14023.340511000002,"variable":{"cost":[[4185.680747783644,169.999999845],[5704.015929482886,231.6666668],[7376.965277774292,293.33333339999996],[9474.204688607007,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.3280193236714976},{"base_power":182.0,"prime_mover_type":"ST","rating":0.9583936012369455,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"907e4e88-4ae1-4055-bf7a-8bba429fa3c9"},"available":true,"time_series_container":[],"name":"115_STEAM_3","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"624a5d27-2c37-42cb-88b3-d1a8071dcb54"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.27472527472527475,"max":0.43956043956043955},"ext":{},"operation_cost":{"start_up":22784.795618999997,"fixed":235.39701448000028,"shut_down":11392.397809499998,"variable":{"cost":[[1264.8002169999995,62.0],[1897.2003254999993,93.0],[2594.4787870999994,124.0],[3433.0478843399987,155.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":8.0},"must_run":false,"ramp_limits":{"up":0.0005494505494505495,"down":0.0005494505494505495},"time_at_status":10000.0,"active_power_limits":{"min":0.34065934065934067,"max":0.8516483516483516},"reactive_power":0.43956043956043955},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"6c610478-0521-4753-b30d-a3dfc942bbfd"},"available":true,"time_series_container":[],"name":"323_CC_2","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"02b811ed-d5d1-4338-a497-64bf4ba43229"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":384.6015464493339,"shut_down":14023.340511000002,"variable":{"cost":[[4492.965488503473,169.999999845],[6122.766704223895,231.6666668],[7989.882691305391,293.33333339999996],[9946.411216990226,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.0903623188405797},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"92f52df2-a61a-4fc2-a4fb-f83d826ac0a0"},"available":true,"time_series_container":[],"name":"322_CT_5","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"45e2725d-5bbc-4fca-af5b-aa30017a74f4"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":518.3296892400001,"shut_down":2832.6172140000003,"variable":{"cost":[[513.36959652,22.0],[770.0543947799999,33.0],[1061.5453609200001,44.0],[1368.38695884,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":-0.15203125},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"3942b312-c3e4-4800-98c8-d5ad4381cfc6"},"available":true,"time_series_container":[],"name":"207_CT_2","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"3715876e-5313-44b3-884a-ae51027ae732"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":363.1985134800001,"shut_down":2832.6172140000003,"variable":{"cost":[[752.9078673599998,22.0],[1129.3618010399998,33.0],[1534.76386206,44.0],[2003.19330816,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":412.0,"prime_mover_type":"ST","rating":0.9242443089640665,"services":[],"bus":{"value":"d003942b-96e7-4e0c-8575-3f734035ce4a"},"available":true,"time_series_container":[],"name":"123_STEAM_3","status":true,"active_power":0.8495145631067961,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"7ac382d8-7b66-46f0-8a15-63d784de9caf"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06067961165048544,"max":0.3640776699029126},"ext":{},"operation_cost":{"start_up":36749.81355899999,"fixed":785.1781658,"shut_down":18374.906779499994,"variable":{"cost":[[2797.6966457999993,140.0],[4196.544968699999,210.0],[5711.853000699999,280.0],[7352.499499799998,350.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":24.0,"down":48.0},"must_run":false,"ramp_limits":{"up":0.00024271844660194176,"down":0.00024271844660194176},"time_at_status":10000.0,"active_power_limits":{"min":0.33980582524271846,"max":0.8495145631067961},"reactive_power":0.06895631067961165},{"base_power":182.0,"prime_mover_type":"ST","rating":0.9583936012369455,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"62f071cb-9649-4b48-95a6-8c49d1b8ebf8"},"available":true,"time_series_container":[],"name":"223_STEAM_1","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"e9820c15-c8e1-42cd-a662-9178aab41ddd"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.27472527472527475,"max":0.43956043956043955},"ext":{},"operation_cost":{"start_up":22784.795618999997,"fixed":242.86785514000053,"shut_down":11392.397809499998,"variable":{"cost":[[1180.1306895199994,62.0],[1770.196034279999,93.0],[2380.576822939999,124.0],[3013.566734649999,155.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":8.0},"must_run":false,"ramp_limits":{"up":0.0005494505494505495,"down":0.0005494505494505495},"time_at_status":10000.0,"active_power_limits":{"min":0.34065934065934067,"max":0.8516483516483516},"reactive_power":-0.05664835164835165},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"d003942b-96e7-4e0c-8575-3f734035ce4a"},"available":true,"time_series_container":[],"name":"123_CT_5","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"c6ce1503-cd6f-4284-8efb-92f26a4c4b11"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":510.3764371200001,"shut_down":2832.6172140000003,"variable":{"cost":[[577.85080188,22.0],[866.77620282,33.0],[1194.6126759600002,44.0],[1536.6025171200001,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.0096875},{"base_power":182.0,"prime_mover_type":"ST","rating":0.9583936012369455,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"62f071cb-9649-4b48-95a6-8c49d1b8ebf8"},"available":true,"time_series_container":[],"name":"223_STEAM_2","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"03879a8f-1644-4709-ac19-3f08ae65dd47"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.27472527472527475,"max":0.43956043956043955},"ext":{},"operation_cost":{"start_up":22784.795618999997,"fixed":242.86785514000053,"shut_down":11392.397809499998,"variable":{"cost":[[1180.1306895199994,62.0],[1770.196034279999,93.0],[2380.576822939999,124.0],[3013.566734649999,155.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":8.0},"must_run":false,"ramp_limits":{"up":0.0005494505494505495,"down":0.0005494505494505495},"time_at_status":10000.0,"active_power_limits":{"min":0.34065934065934067,"max":0.8516483516483516},"reactive_power":-0.05664835164835165},{"base_power":89.0,"prime_mover_type":"ST","rating":0.9180538523962021,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"50290f85-efed-4e89-aedd-70a97520ad6c"},"available":true,"time_series_container":[],"name":"202_STEAM_4","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"84547154-ffbd-4ed0-8693-924aa91d1127"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.2808988764044944,"max":0.33707865168539325},"ext":{},"operation_cost":{"start_up":11172.014351999998,"fixed":117.7703828685942,"shut_down":5586.007175999999,"variable":{"cost":[[633.499383131067,29.999999992],[957.2879568740448,45.333333327999995],[1283.7021061974792,60.666666664000005],[1701.9141572968783,76.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.0},"must_run":false,"ramp_limits":{"up":0.0011235955056179776,"down":0.0011235955056179776},"time_at_status":10000.0,"active_power_limits":{"min":0.33707865168539325,"max":0.8539325842696629},"reactive_power":0.022584269662921347},{"base_power":182.0,"prime_mover_type":"ST","rating":0.9583936012369455,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"5e8c4cb3-3911-43d9-8dda-734b341a40a2"},"available":true,"time_series_container":[],"name":"116_STEAM_1","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"faf2656f-6c10-47f4-ba2c-a4989f5a44d4"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.27472527472527475,"max":0.43956043956043955},"ext":{},"operation_cost":{"start_up":22784.795618999997,"fixed":514.5705338800003,"shut_down":11392.397809499998,"variable":{"cost":[[1220.4994425599996,62.0],[1830.7491638399993,93.0],[2496.4403868599993,124.0],[3236.577881719999,155.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":8.0},"must_run":false,"ramp_limits":{"up":0.0005494505494505495,"down":0.0005494505494505495},"time_at_status":10000.0,"active_power_limits":{"min":0.34065934065934067,"max":0.8516483516483516},"reactive_power":0.43956043956043955},{"base_power":471.0,"prime_mover_type":"ST","rating":0.9494980796177451,"services":[],"bus":{"value":"1a5364ac-e357-4c46-8236-2e8a814e67f2"},"available":true,"time_series_container":[],"name":"121_NUCLEAR_1","status":true,"active_power":0.8492569002123143,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NUCLEAR","internal":{"uuid":{"value":"a89a3017-3beb-4838-954a-8badd5bda7dd"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.10615711252653928,"max":0.42462845010615713},"ext":{},"operation_cost":{"start_up":63999.82230000001,"fixed":3208.9860000000003,"shut_down":31999.911150000004,"variable":{"cost":[[0.0,396.0],[0.0,397.3333332],[0.0,398.6666668],[0.0,400.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":4380.0,"down":4380.0},"must_run":false,"ramp_limits":{"up":0.0,"down":0.0},"time_at_status":10000.0,"active_power_limits":{"min":0.8407643312101911,"max":0.8492569002123143},"reactive_power":-0.046433121019108285},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"d003942b-96e7-4e0c-8575-3f734035ce4a"},"available":true,"time_series_container":[],"name":"123_CT_4","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"c36c62fc-6f49-4f6c-9e15-44835d60a2e9"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":510.3764371200001,"shut_down":2832.6172140000003,"variable":{"cost":[[577.85080188,22.0],[866.77620282,33.0],[1194.6126759600002,44.0],[1536.6025171200001,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.0096875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"3942b312-c3e4-4800-98c8-d5ad4381cfc6"},"available":true,"time_series_container":[],"name":"207_CT_1","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"728e6a86-6496-4e25-9335-f4cf0a99cde9"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":363.1985134800001,"shut_down":2832.6172140000003,"variable":{"cost":[[752.9078673599998,22.0],[1129.3618010399998,33.0],[1534.76386206,44.0],[2003.19330816,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"a3bf399e-3fda-477b-9082-c5166a72bc71"},"available":true,"time_series_container":[],"name":"301_CT_3","status":true,"active_power":0.6875,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"cf74774c-5eb8-4f1d-a0be-36a0c23ad455"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":493.10163144000023,"shut_down":2832.6172140000003,"variable":{"cost":[[626.33998416,22.0],[939.50997624,33.0],[1261.65944652,44.0],[1742.83119978,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.25828125},{"base_power":182.0,"prime_mover_type":"ST","rating":0.9583936012369455,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"0e8c5517-4630-4e50-bb56-4abcb36b2a83"},"available":true,"time_series_container":[],"name":"316_STEAM_1","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"eb604a6c-be1c-4ad3-878b-185ad1d5d360"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.27472527472527475,"max":0.43956043956043955},"ext":{},"operation_cost":{"start_up":22784.795618999997,"fixed":243.39212466000004,"shut_down":11392.397809499998,"variable":{"cost":[[1309.2320588199996,62.0],[1963.8480882299993,93.0],[2623.7723465299996,124.0],[3469.288014909999,155.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":8.0},"must_run":false,"ramp_limits":{"up":0.0005494505494505495,"down":0.0005494505494505495},"time_at_status":10000.0,"active_power_limits":{"min":0.34065934065934067,"max":0.8516483516483516},"reactive_power":0.43956043956043955},{"base_power":182.0,"prime_mover_type":"ST","rating":0.9583936012369455,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"534363d0-5d67-4e13-9e82-bd37d557d825"},"available":true,"time_series_container":[],"name":"216_STEAM_1","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"7b580af8-ca87-4d75-b986-637b3adff8fc"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.27472527472527475,"max":0.43956043956043955},"ext":{},"operation_cost":{"start_up":22784.795618999997,"fixed":274.58616110000025,"shut_down":11392.397809499998,"variable":{"cost":[[1151.5580006799994,62.0],[1727.3370010199992,93.0],[2404.4966197899994,124.0],[3137.884144579999,155.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":8.0},"must_run":false,"ramp_limits":{"up":0.0005494505494505495,"down":0.0005494505494505495},"time_at_status":10000.0,"active_power_limits":{"min":0.34065934065934067,"max":0.8516483516483516},"reactive_power":0.43956043956043955},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"657eb7a1-3bf7-4e34-a990-02b4aed96447"},"available":true,"time_series_container":[],"name":"315_CT_6","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"cef8840a-bc81-480c-88ad-1e0d03f357a1"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":303.59188200000017,"shut_down":2832.6172140000003,"variable":{"cost":[[580.8439612799998,22.0],[871.2659419199997,33.0],[1167.1183688999997,44.0],[1517.5318157999998,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":89.0,"prime_mover_type":"ST","rating":0.9180538523962021,"services":[{"value":"437c4220-9ad6-48ad-9ca3-56a08e917846"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"cf0865e3-e927-4e3d-9e72-5a383e6ea5d1"},"available":true,"time_series_container":[],"name":"201_STEAM_3","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"e6059fb5-4703-4084-ac51-7b732a2480ab"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.2808988764044944,"max":0.33707865168539325},"ext":{},"operation_cost":{"start_up":11172.014351999998,"fixed":158.16873175782132,"shut_down":5586.007175999999,"variable":{"cost":[[665.5897513225095,29.999999992],[1005.7800688150064,45.333333327999995],[1365.2570217441908,60.666666664000005],[1760.2278667795479,76.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.0},"must_run":false,"ramp_limits":{"up":0.0011235955056179776,"down":0.0011235955056179776},"time_at_status":10000.0,"active_power_limits":{"min":0.33707865168539325,"max":0.8539325842696629},"reactive_power":0.07853932584269663},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"8f167815-24eb-4f8a-8363-e5356a10d37d"},"available":true,"time_series_container":[],"name":"302_CT_4","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"0c995d7b-2aab-400f-9a09-aa33c5de4111"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":573.1472656800003,"shut_down":2832.6172140000003,"variable":{"cost":[[743.4152761199999,22.0],[1115.12291418,33.0],[1537.32942726,44.0],[1962.31530264,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.17171875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"52f4fa45-a4fa-4a09-825a-ce5e0418715a"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"bed5979f-04a2-41d1-a5cb-2cec3a2eb58d"},"available":true,"time_series_container":[],"name":"307_CT_1","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"8be41b98-c35c-43d2-8a43-dd5d43147539"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":528.2498746800003,"shut_down":2832.6172140000003,"variable":{"cost":[[613.6831958399999,22.0],[920.52479376,33.0],[1241.9473539,44.0],[1632.16982082,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":89.0,"prime_mover_type":"ST","rating":0.9180538523962021,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"7ae0f683-1403-4dc3-b4d7-08e0c281096e"},"available":true,"time_series_container":[],"name":"102_STEAM_4","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"257a683b-a08a-4c24-88ac-9539beea001a"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.2808988764044944,"max":0.33707865168539325},"ext":{},"operation_cost":{"start_up":11172.014351999998,"fixed":181.1900828516824,"shut_down":5586.007175999999,"variable":{"cost":[[553.9076596522913,29.999999992],[837.0160191548607,45.333333327999995],[1156.6555351904503,60.666666664000005],[1501.9025167638265,76.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.0},"must_run":false,"ramp_limits":{"up":0.0011235955056179776,"down":0.0011235955056179776},"time_at_status":10000.0,"active_power_limits":{"min":0.33707865168539325,"max":0.8539325842696629},"reactive_power":-0.025955056179775282},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"1a86a9e9-a392-4404-92bf-6863afb70276"},{"value":"348c8852-522d-4639-b55a-d0277c06d64a"},{"value":"e1b0f1f0-e73c-42b0-a3cf-c953f6dceae3"}],"bus":{"value":"736e8533-e80a-45ed-b719-ed593b52e071"},"available":true,"time_series_container":[],"name":"107_CC_1","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"520512ea-0eaf-4529-99d6-0beb4b04d752"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":827.3559040456475,"shut_down":14023.340511000002,"variable":{"cost":[[3945.1395744029605,169.999999845],[5376.219624094227,231.6666668],[7028.314037108178,293.33333339999996],[8911.01129767283,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.11958937198067632},{"base_power":713.5,"prime_mover_type":"WT","rating":1.0,"services":[],"bus":{"value":"b6249035-3f9d-4bd7-a943-43f5c36148af"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"ffc57253-ebf1-4b3f-8ebe-41376b517d03"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"472cdafd-c920-47d3-8d4f-0773ff6d0f07"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"472cdafd-c920-47d3-8d4f-0773ff6d0f07"},"ext":null,"units_info":null},"time_series_uuid":{"value":"ffc57253-ebf1-4b3f-8ebe-41376b517d03"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"122_WIND_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"9061a9ea-128c-466e-9e77-d7cabbf9731d"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.0,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"110505ae-7250-4875-907c-58b9b3a0aa63"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"446beea8-bb0b-43d9-8313-f62eeb27a20a"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"b227b945-bfa9-4057-bd86-50195765d2ae"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"b227b945-bfa9-4057-bd86-50195765d2ae"},"ext":null,"units_info":null},"time_series_uuid":{"value":"446beea8-bb0b-43d9-8313-f62eeb27a20a"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"324_PV_3","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"637ef2f7-3958-41f7-8194-1a7cd80b113c"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":94.1,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"d2c7f0e8-d7b7-4b39-affb-b186b3b0dbfe"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"fac2dd26-bc19-4c04-b4a5-c3e419d3978e"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"3029d289-742d-45af-bc13-9c27641f8769"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"3029d289-742d-45af-bc13-9c27641f8769"},"ext":null,"units_info":null},"time_series_uuid":{"value":"fac2dd26-bc19-4c04-b4a5-c3e419d3978e"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"312_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"361225e6-e0fc-4b73-be71-fcf08c2832e9"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":25.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"7ae0f683-1403-4dc3-b4d7-08e0c281096e"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"592b3a74-74ca-4a58-9469-12e4cb760d04"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"22fea2de-4432-47fe-9c6d-a4fc5c87b2ca"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"22fea2de-4432-47fe-9c6d-a4fc5c87b2ca"},"ext":null,"units_info":null},"time_series_uuid":{"value":"592b3a74-74ca-4a58-9469-12e4cb760d04"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"102_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"a11d25d1-dd79-4a8c-bd69-3bc8f4cfd4fe"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":25.9,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"afd07468-171d-40b1-93df-ce3d4e92af2a"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"011542d0-c264-4ca8-889b-019351b8978a"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"72038a42-b459-4176-a940-59dd62991fc7"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"72038a42-b459-4176-a940-59dd62991fc7"},"ext":null,"units_info":null},"time_series_uuid":{"value":"011542d0-c264-4ca8-889b-019351b8978a"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"101_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"bbf3cf87-3699-4115-87c2-5ad8b1c0de2c"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"110505ae-7250-4875-907c-58b9b3a0aa63"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"fd34d291-f115-406e-8586-8a7da9b8bc04"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"8f44dab5-a5a0-4d10-baef-ad191f3c63f2"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"8f44dab5-a5a0-4d10-baef-ad191f3c63f2"},"ext":null,"units_info":null},"time_series_uuid":{"value":"fd34d291-f115-406e-8586-8a7da9b8bc04"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"324_PV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"98a67f78-77ca-464a-8a9a-f5311a586057"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":93.3,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"136eba96-a7da-4f77-907f-0a13559601f5"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"96a50672-fa0f-4fbf-8e63-fca032704fee"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"96a50672-fa0f-4fbf-8e63-fca032704fee"},"ext":null,"units_info":null},"time_series_uuid":{"value":"136eba96-a7da-4f77-907f-0a13559601f5"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_PV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"357792e5-d905-4d3b-afe0-959eae8b14f4"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":26.8,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"5c02ba83-3a6a-46b5-908e-474fb734d83d"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"5ea0296b-f7e2-4eff-8044-e087d858792b"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"7cb62a87-d511-4bb8-ac85-adb6e7c32a16"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"7cb62a87-d511-4bb8-ac85-adb6e7c32a16"},"ext":null,"units_info":null},"time_series_uuid":{"value":"5ea0296b-f7e2-4eff-8044-e087d858792b"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"104_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"47df910c-0e18-4181-ab68-1d7b62217295"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":26.7,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"afd07468-171d-40b1-93df-ce3d4e92af2a"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"acce7ccc-9cb4-44a8-8b5c-1b66cdcc830d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"0272ac8a-0555-4c16-b7ee-ce01bc03ea47"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"0272ac8a-0555-4c16-b7ee-ce01bc03ea47"},"ext":null,"units_info":null},"time_series_uuid":{"value":"acce7ccc-9cb4-44a8-8b5c-1b66cdcc830d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"101_PV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"31c49c18-9ee5-4689-b442-47510fe6fc0b"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":148.3,"prime_mover_type":"WT","rating":1.0,"services":[],"bus":{"value":"77aa3a1a-6662-453e-bdef-392468c40c88"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"8e77ff6c-73f4-4e2f-b23d-1871833e37e5"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"3b4b46f7-c389-440f-be49-492426a65623"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"3b4b46f7-c389-440f-be49-492426a65623"},"ext":null,"units_info":null},"time_series_uuid":{"value":"8e77ff6c-73f4-4e2f-b23d-1871833e37e5"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"309_WIND_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"5b4df492-0bd5-427d-9b85-c8d6af69657c"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"7afbca38-9add-4107-9a7c-818aa25d363b"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"179a9025-1aae-41a5-a020-35e490b4df13"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"28eee7f9-6aaf-42b7-a0df-ab3f71584a54"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"28eee7f9-6aaf-42b7-a0df-ab3f71584a54"},"ext":null,"units_info":null},"time_series_uuid":{"value":"179a9025-1aae-41a5-a020-35e490b4df13"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"310_PV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"d209b8e4-c8a6-4f2d-abec-1639f22d63de"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":93.6,"prime_mover_type":"PVe","rating":1.9999999999999998,"services":[],"bus":{"value":"57289903-07af-401b-843a-3b3c79d00ff9"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"17bc7777-08e5-4442-b738-71373314cc9f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"93609f2e-0944-463e-a1d1-33a85ecd69b9"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"93609f2e-0944-463e-a1d1-33a85ecd69b9"},"ext":null,"units_info":null},"time_series_uuid":{"value":"17bc7777-08e5-4442-b738-71373314cc9f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"113_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"aba21153-4208-4196-b565-25f1f0b994e9"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":799.1,"prime_mover_type":"WT","rating":1.0,"services":[],"bus":{"value":"4fa9d853-0d34-4c9c-b143-7d2020007e2e"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"695ea1c7-816b-4d0b-bc2e-0ec30d31805f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"286f1537-e61e-42a8-a3d7-c78f5f0854bb"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"286f1537-e61e-42a8-a3d7-c78f5f0854bb"},"ext":null,"units_info":null},"time_series_uuid":{"value":"695ea1c7-816b-4d0b-bc2e-0ec30d31805f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"317_WIND_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"4ea866bd-d718-4266-914d-563bce44d87d"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"f1f78c2d-91b0-4dfe-be16-26100aad4f5a"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"6b5253eb-d2f8-4429-8379-41fef53a3450"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"2700e797-56ac-48f5-8fa6-d7e0b0573060"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"2700e797-56ac-48f5-8fa6-d7e0b0573060"},"ext":null,"units_info":null},"time_series_uuid":{"value":"6b5253eb-d2f8-4429-8379-41fef53a3450"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"314_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"3ee13286-0168-4f70-a616-9a61be6ad851"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":49.7,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"110505ae-7250-4875-907c-58b9b3a0aa63"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"00923e2f-5c7a-4c0f-963c-3059fb5f5e95"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"e684f206-6832-4be6-bdff-5179069b97b5"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"e684f206-6832-4be6-bdff-5179069b97b5"},"ext":null,"units_info":null},"time_series_uuid":{"value":"00923e2f-5c7a-4c0f-963c-3059fb5f5e95"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"324_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"235b18ad-bf84-4434-ac06-93777c9b077f"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":61.5,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"8bda3f6a-76d3-4867-a515-9faf7dd9594a"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"ae41e150-3b4e-4539-a8d4-19ac8990e25a"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"620f307b-b8e9-4dc1-8eb9-da147ec48120"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"620f307b-b8e9-4dc1-8eb9-da147ec48120"},"ext":null,"units_info":null},"time_series_uuid":{"value":"ae41e150-3b4e-4539-a8d4-19ac8990e25a"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"103_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"befab67e-6fd8-45cc-814a-19a2f78160a5"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":847.0,"prime_mover_type":"WT","rating":1.0,"services":[],"bus":{"value":"755f3ba4-6743-4525-be76-5bd5b84c9c9f"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"16690fb9-3a0c-444f-a0b6-86ac427fbe2d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"6729bc13-1ea3-4fe4-a4e4-4479756adf88"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"6729bc13-1ea3-4fe4-a4e4-4479756adf88"},"ext":null,"units_info":null},"time_series_uuid":{"value":"16690fb9-3a0c-444f-a0b6-86ac427fbe2d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"303_WIND_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"29b9a96e-9220-4431-938b-b82b1edf828a"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"f1f78c2d-91b0-4dfe-be16-26100aad4f5a"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"fd4e5e29-5438-4734-a3be-af5644860ba7"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"d44e6628-f62e-42f0-94d1-4a9a3b448037"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"d44e6628-f62e-42f0-94d1-4a9a3b448037"},"ext":null,"units_info":null},"time_series_uuid":{"value":"fd4e5e29-5438-4734-a3be-af5644860ba7"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"314_PV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"87b36713-d3a0-413a-9407-efd72cf1847e"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":25.3,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"7ae0f683-1403-4dc3-b4d7-08e0c281096e"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"fd74d204-fbff-4f01-aeb2-97c4279506d4"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"2ede8799-4e89-4fc4-8212-e62efba08d8f"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"2ede8799-4e89-4fc4-8212-e62efba08d8f"},"ext":null,"units_info":null},"time_series_uuid":{"value":"fd74d204-fbff-4f01-aeb2-97c4279506d4"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"102_PV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"2ce16e4a-f092-4d7c-a962-b40555c8bf62"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":92.7,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"f1f78c2d-91b0-4dfe-be16-26100aad4f5a"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"e41025ba-ba8b-461a-b778-47c4eec0b4f3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"85a5c719-8555-4cde-88db-d8902dbd2caa"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"85a5c719-8555-4cde-88db-d8902dbd2caa"},"ext":null,"units_info":null},"time_series_uuid":{"value":"e41025ba-ba8b-461a-b778-47c4eec0b4f3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"314_PV_3","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"601f1e27-6a1f-4139-91b8-a63d79434ccf"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"7060bd84-1950-425c-abed-355c9ad4ee97"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"59091f60-b921-42c5-8f17-d1b2564dbeee"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"d5273b2c-b762-4ed5-99cf-6138d64e6e02"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"d5273b2c-b762-4ed5-99cf-6138d64e6e02"},"ext":null,"units_info":null},"time_series_uuid":{"value":"59091f60-b921-42c5-8f17-d1b2564dbeee"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"320_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"bd221469-0ae1-4acb-9624-82b8da872ee5"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":26.2,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"afd07468-171d-40b1-93df-ce3d4e92af2a"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"c98d6691-2809-4360-966e-8ef3dec4360a"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"a7b45683-234c-4a07-9938-791588474b7b"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"a7b45683-234c-4a07-9938-791588474b7b"},"ext":null,"units_info":null},"time_series_uuid":{"value":"c98d6691-2809-4360-966e-8ef3dec4360a"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"101_PV_3","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"ad03c2f2-ca08-4b64-8728-945247ed1fec"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":188.2,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"d771a793-3387-41ac-9554-164478428e91"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"ed10efef-35e7-44ed-a608-b0b176edf6a8"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"9cc38d1f-73dc-44a8-9897-e70abf68d0cc"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"9cc38d1f-73dc-44a8-9897-e70abf68d0cc"},"ext":null,"units_info":null},"time_series_uuid":{"value":"ed10efef-35e7-44ed-a608-b0b176edf6a8"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"319_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"69d12554-2acd-4a18-aef8-24b8326fcaeb"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"f1f78c2d-91b0-4dfe-be16-26100aad4f5a"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"8bab7ac8-aea9-466c-837f-fcb2910021b5"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"56ca6eea-0b22-4bf7-b3db-299e8bd7ef4e"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"56ca6eea-0b22-4bf7-b3db-299e8bd7ef4e"},"ext":null,"units_info":null},"time_series_uuid":{"value":"8bab7ac8-aea9-466c-837f-fcb2910021b5"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"314_PV_4","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"3fe46ff1-e73d-42a9-9eaa-2046669602b5"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.7,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"7afbca38-9add-4107-9a7c-818aa25d363b"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"f43d59ca-db40-4b2c-89d1-5da1f7c9dd74"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"da58f864-2b8c-4024-afb0-73de789ab642"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"da58f864-2b8c-4024-afb0-73de789ab642"},"ext":null,"units_info":null},"time_series_uuid":{"value":"f43d59ca-db40-4b2c-89d1-5da1f7c9dd74"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"310_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"a28553db-6156-4aba-9d31-a282a8c4505a"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":125.1,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"dcfad80f-ad3b-4109-8cd3-9b58a747e5cc"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"d71a177d-81af-48ca-af9f-032d8cff7897"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"65e0516d-0780-4df1-99a3-a5e3b791a928"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"65e0516d-0780-4df1-99a3-a5e3b791a928"},"ext":null,"units_info":null},"time_series_uuid":{"value":"d71a177d-81af-48ca-af9f-032d8cff7897"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"215_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"3aa5d536-4e81-481c-934c-b86beaf2e854"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":95.1,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"5190620d-2a1b-4574-959e-24f0dc1136e0"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"88b26af9-1b3b-440b-8778-bad62b193213"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"88b26af9-1b3b-440b-8778-bad62b193213"},"ext":null,"units_info":null},"time_series_uuid":{"value":"5190620d-2a1b-4574-959e-24f0dc1136e0"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"76f07c5a-5083-4324-8eab-952f1d76adc6"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":25.8,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"afd07468-171d-40b1-93df-ce3d4e92af2a"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"c15c32ee-9013-4b18-92d1-494c43bd8267"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"8e54a75c-838e-4fe5-80eb-54e3a601fd5f"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"8e54a75c-838e-4fe5-80eb-54e3a601fd5f"},"ext":null,"units_info":null},"time_series_uuid":{"value":"c15c32ee-9013-4b18-92d1-494c43bd8267"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"101_PV_4","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"0b8edf2d-f303-4f68-8e44-6707f87e3fa3"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":66.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"477fbe6a-e760-4745-8a8b-0fbc102e9cd1"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"dc72110b-c373-46d0-95d3-8e26d93eb51b"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"cef4a154-73cd-4a43-aab1-600084b97e40"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"cef4a154-73cd-4a43-aab1-600084b97e40"},"ext":null,"units_info":null},"time_series_uuid":{"value":"dc72110b-c373-46d0-95d3-8e26d93eb51b"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"119_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"03727b87-26a8-4b7d-bcc5-087216fa3e03"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"internal":{"uuid":{"value":"df8c7aee-36f8-4aeb-adb8-457e58b3cd9a"},"ext":null,"units_info":null},"to":{"value":"534363d0-5d67-4e13-9e82-bd37d557d825"},"from":{"value":"dcfad80f-ad3b-4109-8cd3-9b58a747e5cc"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"cc4efbd9-9b92-44c7-bded-b7a3db8cbeb7"},"ext":null,"units_info":null},"to":{"value":"6c610478-0521-4753-b30d-a3dfc942bbfd"},"from":{"value":"d2c7f0e8-d7b7-4b39-affb-b186b3b0dbfe"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"7084d608-0fcd-4cd9-b0b3-78adc7df85fc"},"ext":null,"units_info":null},"to":{"value":"39241fb2-2f85-4d2c-82a6-bb7a3afc0493"},"from":{"value":"d7dad224-2f15-4e59-9df5-d16a9fd7fcb7"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"422fc110-41ed-437b-ab78-b233d0d1070d"},"ext":null,"units_info":null},"to":{"value":"9f9fb6eb-9002-454f-80ce-a92be3521435"},"from":{"value":"534363d0-5d67-4e13-9e82-bd37d557d825"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"7f108af9-6f77-42e7-8bf1-0ea0e7ab4062"},"ext":null,"units_info":null},"to":{"value":"50290f85-efed-4e89-aedd-70a97520ad6c"},"from":{"value":"cf0865e3-e927-4e3d-9e72-5a383e6ea5d1"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"ded393ee-bd10-4713-b90f-1b636d2d2049"},"ext":null,"units_info":null},"to":{"value":"d12bd072-de66-4021-ba4a-9b59e1ccdb0b"},"from":{"value":"e8af8eeb-c00c-46d4-9c2d-3aa1b1867484"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"72ac72f2-0ca7-40c0-8b5f-5e658efd7049"},"ext":null,"units_info":null},"to":{"value":"d5e86284-9814-474a-b96a-7718de7b02f1"},"from":{"value":"bed5979f-04a2-41d1-a5cb-2cec3a2eb58d"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"b232561c-3ab7-44d2-a6d0-b9ba1298f52b"},"ext":null,"units_info":null},"to":{"value":"7060bd84-1950-425c-abed-355c9ad4ee97"},"from":{"value":"d771a793-3387-41ac-9554-164478428e91"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"95a78be0-a838-4bd6-b189-221ba6be894a"},"ext":null,"units_info":null},"to":{"value":"7ae0f683-1403-4dc3-b4d7-08e0c281096e"},"from":{"value":"afd07468-171d-40b1-93df-ce3d4e92af2a"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"3ca300ab-827d-4a33-80c9-a7f6ecfa2c0a"},"ext":null,"units_info":null},"to":{"value":"755f3ba4-6743-4525-be76-5bd5b84c9c9f"},"from":{"value":"a3bf399e-3fda-477b-9082-c5166a72bc71"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"545a1c44-34c6-40c1-acea-7b1d6669dee2"},"ext":null,"units_info":null},"to":{"value":"40950320-5f66-421e-9afd-417fc12b8159"},"from":{"value":"5c02ba83-3a6a-46b5-908e-474fb734d83d"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"53cd55e4-211c-4ca9-b43e-0bbb7c6827c7"},"ext":null,"units_info":null},"to":{"value":"1a5364ac-e357-4c46-8236-2e8a814e67f2"},"from":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"5d382a05-949a-40c7-9d6a-82fecd2ebf3e"},"ext":null,"units_info":null},"to":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"from":{"value":"d2c7f0e8-d7b7-4b39-affb-b186b3b0dbfe"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"225b0553-2615-4a0d-b155-2e18b8b4417a"},"ext":null,"units_info":null},"to":{"value":"d7dad224-2f15-4e59-9df5-d16a9fd7fcb7"},"from":{"value":"7ae0f683-1403-4dc3-b4d7-08e0c281096e"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"68f20121-db50-4429-ba57-b1be2b621088"},"ext":null,"units_info":null},"to":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"from":{"value":"5a179bcc-0632-4473-a17c-37b80445bb5c"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"692bdb52-246b-41f3-a529-886ea0345488"},"ext":null,"units_info":null},"to":{"value":"d771a793-3387-41ac-9554-164478428e91"},"from":{"value":"0e8c5517-4630-4e50-bb56-4abcb36b2a83"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"c88b8acb-6af5-44da-9a9f-8577e8e74015"},"ext":null,"units_info":null},"to":{"value":"b3c2b7c8-07d5-4323-8da8-67d0c0b50eb4"},"from":{"value":"6c610478-0521-4753-b30d-a3dfc942bbfd"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d3b3b6aa-c24b-4f2a-97ca-52948ab3c9c0"},"ext":null,"units_info":null},"to":{"value":"0f10391c-45e3-462b-9e02-81bf6393e83a"},"from":{"value":"5e8c4cb3-3911-43d9-8dda-734b341a40a2"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"cd7cbc95-9f18-4df8-99aa-0e6c59741780"},"ext":null,"units_info":null},"to":{"value":"7afbca38-9add-4107-9a7c-818aa25d363b"},"from":{"value":"d5e86284-9814-474a-b96a-7718de7b02f1"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"e4b5cb7b-2a50-4d59-85d4-f2e3086be87f"},"ext":null,"units_info":null},"to":{"value":"62f071cb-9649-4b48-95a6-8c49d1b8ebf8"},"from":{"value":"af951a07-2566-44f2-be2e-105749c2302f"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"17ebeedc-1e9d-4cba-abaa-698243a1d096"},"ext":null,"units_info":null},"to":{"value":"0b2611cb-8f81-4c83-b76c-52a86b2fc6bd"},"from":{"value":"9f9fb6eb-9002-454f-80ce-a92be3521435"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"43e458fb-175e-4160-a81e-c4e0ff5b1bb9"},"ext":null,"units_info":null},"to":{"value":"d003942b-96e7-4e0c-8575-3f734035ce4a"},"from":{"value":"fab2cdd8-84f3-4b4b-973c-a3f104e30fb9"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"28d92f90-19dc-47aa-8e74-84d358c60d2f"},"ext":null,"units_info":null},"to":{"value":"8bda3f6a-76d3-4867-a515-9faf7dd9594a"},"from":{"value":"afd07468-171d-40b1-93df-ce3d4e92af2a"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"7b626431-235a-409d-bea4-a927a861c07c"},"ext":null,"units_info":null},"to":{"value":"6c610478-0521-4753-b30d-a3dfc942bbfd"},"from":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"61256f4d-fec8-4590-ae14-1ec09b5cb25e"},"ext":null,"units_info":null},"to":{"value":"2e0e1eee-efa1-4b51-b5f4-a513ed0054aa"},"from":{"value":"4830b7aa-d6ab-425c-b7cf-24d1e0ad83b5"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"8bf3566d-7011-4163-b3c7-5a31a467b099"},"ext":null,"units_info":null},"to":{"value":"40950320-5f66-421e-9afd-417fc12b8159"},"from":{"value":"8bda3f6a-76d3-4867-a515-9faf7dd9594a"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"cb092e2a-3aa5-4c64-aaef-60413a86d4e4"},"ext":null,"units_info":null},"to":{"value":"d12bd072-de66-4021-ba4a-9b59e1ccdb0b"},"from":{"value":"2e0e1eee-efa1-4b51-b5f4-a513ed0054aa"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"19b29ee4-608d-46b2-a855-d18ea924d538"},"ext":null,"units_info":null},"to":{"value":"4830b7aa-d6ab-425c-b7cf-24d1e0ad83b5"},"from":{"value":"3942b312-c3e4-4800-98c8-d5ad4381cfc6"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"21a646f0-9da8-48de-807d-7d3d67c9b822"},"ext":null,"units_info":null},"to":{"value":"0e8c5517-4630-4e50-bb56-4abcb36b2a83"},"from":{"value":"657eb7a1-3bf7-4e34-a990-02b4aed96447"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"97fed37e-8205-43b6-bb4c-417d196cad44"},"ext":null,"units_info":null},"to":{"value":"62f071cb-9649-4b48-95a6-8c49d1b8ebf8"},"from":{"value":"45ac7ff2-133f-436a-8874-f504f8e890b3"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"b6966254-8b52-4864-ad6e-9dff1a260795"},"ext":null,"units_info":null},"to":{"value":"af951a07-2566-44f2-be2e-105749c2302f"},"from":{"value":"4fa9d853-0d34-4c9c-b143-7d2020007e2e"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"0dfdad5a-74f2-45b6-8243-29b2f15f5dd0"},"ext":null,"units_info":null},"to":{"value":"e8fa3994-d691-4317-abf0-869d957acde3"},"from":{"value":"cf0865e3-e927-4e3d-9e72-5a383e6ea5d1"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"3fe9370d-a93e-4d9f-9888-9c0075dbc183"},"ext":null,"units_info":null},"to":{"value":"b6249035-3f9d-4bd7-a943-43f5c36148af"},"from":{"value":"1a5364ac-e357-4c46-8236-2e8a814e67f2"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"f8cd3fb2-c037-400d-9c15-55210790392c"},"ext":null,"units_info":null},"to":{"value":"4fa9d853-0d34-4c9c-b143-7d2020007e2e"},"from":{"value":"0e8c5517-4630-4e50-bb56-4abcb36b2a83"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"c539d9b9-c8bc-49fc-9c07-6f5522d7f4b0"},"ext":null,"units_info":null},"to":{"value":"13e2805d-b97e-4bc2-a696-03f07d2416c2"},"from":{"value":"8f167815-24eb-4f8a-8363-e5356a10d37d"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"4771427c-a447-4164-90ee-1824e75d1644"},"ext":null,"units_info":null},"to":{"value":"45ac7ff2-133f-436a-8874-f504f8e890b3"},"from":{"value":"8659ba8b-af91-421e-bcf4-90a4c716dde0"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"786cbb94-3c9f-46d1-908d-ee0143d25a58"},"ext":null,"units_info":null},"to":{"value":"39241fb2-2f85-4d2c-82a6-bb7a3afc0493"},"from":{"value":"51b05554-134e-4576-abef-3059e0837cf2"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"f2543ca0-edf5-4469-b383-d1093bada2cd"},"ext":null,"units_info":null},"to":{"value":"d003942b-96e7-4e0c-8575-3f734035ce4a"},"from":{"value":"57289903-07af-401b-843a-3b3c79d00ff9"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"5bb57e9e-4260-40b7-b958-d0fd01387996"},"ext":null,"units_info":null},"to":{"value":"5e8c4cb3-3911-43d9-8dda-734b341a40a2"},"from":{"value":"907e4e88-4ae1-4055-bf7a-8bba429fa3c9"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"91b68186-b55d-418c-994c-4fa142386f5b"},"ext":null,"units_info":null},"to":{"value":"9f63753a-68f9-4987-929c-3aae17e152b7"},"from":{"value":"12996cf4-757c-4779-9a38-ed2c56964376"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"c70b432f-6972-4b8c-8c23-05894eb5fd0c"},"ext":null,"units_info":null},"to":{"value":"f1f78c2d-91b0-4dfe-be16-26100aad4f5a"},"from":{"value":"5a179bcc-0632-4473-a17c-37b80445bb5c"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"49d691a2-0f3c-438a-828b-a08330132a20"},"ext":null,"units_info":null},"to":{"value":"57289903-07af-401b-843a-3b3c79d00ff9"},"from":{"value":"32f4caa2-daad-423a-8a9f-c74c67610306"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"42256126-463f-4ebe-813c-40c58142f617"},"ext":null,"units_info":null},"to":{"value":"e8af8eeb-c00c-46d4-9c2d-3aa1b1867484"},"from":{"value":"641a1bc5-7300-499c-8dd6-f75b00346caa"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"2f484570-a2a4-401b-94fb-5a74e0633790"},"ext":null,"units_info":null},"to":{"value":"534363d0-5d67-4e13-9e82-bd37d557d825"},"from":{"value":"a971e28e-77fc-4f66-bad5-1ad2b7839255"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"1ef0cc9b-cc7f-4804-937d-0f773dc6f737"},"ext":null,"units_info":null},"to":{"value":"90c81bbc-1b9c-4e8e-b325-39cbed79de89"},"from":{"value":"c205c35a-daf7-486f-9102-0846480469fc"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"4e7ff517-a8b3-4658-a129-8d448a9643b9"},"ext":null,"units_info":null},"to":{"value":"110505ae-7250-4875-907c-58b9b3a0aa63"},"from":{"value":"755f3ba4-6743-4525-be76-5bd5b84c9c9f"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"dfc24f25-3144-4ff3-a195-44bfa4ed6cb9"},"ext":null,"units_info":null},"to":{"value":"77aa3a1a-6662-453e-bdef-392468c40c88"},"from":{"value":"d5e86284-9814-474a-b96a-7718de7b02f1"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"77dbb4ec-b8fd-45d7-81b8-f6c95507ec9b"},"ext":null,"units_info":null},"to":{"value":"32f4caa2-daad-423a-8a9f-c74c67610306"},"from":{"value":"40950320-5f66-421e-9afd-417fc12b8159"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"f28d97c3-6669-4472-95ba-a82bc3ea71c7"},"ext":null,"units_info":null},"to":{"value":"45c03e81-5110-40c2-b744-25667a1b8a59"},"from":{"value":"39241fb2-2f85-4d2c-82a6-bb7a3afc0493"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"657bd129-1f7d-43e3-ad3c-cc1ed76f0517"},"ext":null,"units_info":null},"to":{"value":"5e8c4cb3-3911-43d9-8dda-734b341a40a2"},"from":{"value":"b3fadd0d-6cf7-4810-bc52-cec7161f1736"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"a9164a9e-1f3d-42e6-93fc-522c2f217dea"},"ext":null,"units_info":null},"to":{"value":"62f071cb-9649-4b48-95a6-8c49d1b8ebf8"},"from":{"value":"8659ba8b-af91-421e-bcf4-90a4c716dde0"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"fa70e766-ca5c-4749-bd83-5df51fced559"},"ext":null,"units_info":null},"to":{"value":"92f52df2-a61a-4fc2-a4fb-f83d826ac0a0"},"from":{"value":"4fa9d853-0d34-4c9c-b143-7d2020007e2e"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"467db5fa-8541-470e-b10c-0b6d5314e1e3"},"ext":null,"units_info":null},"to":{"value":"7afbca38-9add-4107-9a7c-818aa25d363b"},"from":{"value":"13e2805d-b97e-4bc2-a696-03f07d2416c2"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"496d016a-3ba8-4269-b360-4b39488b6529"},"ext":null,"units_info":null},"to":{"value":"f926d92c-a010-4f0e-a09b-9704b5976805"},"from":{"value":"dcfad80f-ad3b-4109-8cd3-9b58a747e5cc"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"4a18846a-ff4a-42e3-98e3-dc8850b4f807"},"ext":null,"units_info":null},"to":{"value":"9f9fb6eb-9002-454f-80ce-a92be3521435"},"from":{"value":"d003942b-96e7-4e0c-8575-3f734035ce4a"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"c35f99ac-ce8b-497e-8534-c933c62be6b2"},"ext":null,"units_info":null},"to":{"value":"15566e3d-f34f-49a8-af5f-1e60b8282fd4"},"from":{"value":"8f167815-24eb-4f8a-8363-e5356a10d37d"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"53a12461-a7b1-459f-9a93-ef101ff16256"},"ext":null,"units_info":null},"to":{"value":"b020f685-db97-4b9e-a359-9b66f6974857"},"from":{"value":"736e8533-e80a-45ed-b719-ed593b52e071"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"c87251e3-c9b1-4c08-b88c-89b57e7a407f"},"ext":null,"units_info":null},"to":{"value":"b6249035-3f9d-4bd7-a943-43f5c36148af"},"from":{"value":"0f10391c-45e3-462b-9e02-81bf6393e83a"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"07e10988-90db-43fb-a3a2-57270f0d62ea"},"ext":null,"units_info":null},"to":{"value":"51b05554-134e-4576-abef-3059e0837cf2"},"from":{"value":"afd07468-171d-40b1-93df-ce3d4e92af2a"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"ac7f45e5-26ce-44ee-94ea-784f75842826"},"ext":null,"units_info":null},"to":{"value":"d2c7f0e8-d7b7-4b39-affb-b186b3b0dbfe"},"from":{"value":"7afbca38-9add-4107-9a7c-818aa25d363b"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"9937c222-1bf1-43fc-8f66-94d109de2c33"},"ext":null,"units_info":null},"to":{"value":"477fbe6a-e760-4745-8a8b-0fbc102e9cd1"},"from":{"value":"5e8c4cb3-3911-43d9-8dda-734b341a40a2"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d5f4061b-dc8c-482d-a7d7-50d7d07fe6a1"},"ext":null,"units_info":null},"to":{"value":"5a9e620b-fdfe-4823-9e40-235dd7f249ac"},"from":{"value":"657eb7a1-3bf7-4e34-a990-02b4aed96447"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"b951038d-8a38-4b10-a55a-535ed761657c"},"ext":null,"units_info":null},"to":{"value":"8f167815-24eb-4f8a-8363-e5356a10d37d"},"from":{"value":"a3bf399e-3fda-477b-9082-c5166a72bc71"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"94f8b722-4a82-41b0-85a5-b14c3dca1486"},"ext":null,"units_info":null},"to":{"value":"d2c7f0e8-d7b7-4b39-affb-b186b3b0dbfe"},"from":{"value":"77aa3a1a-6662-453e-bdef-392468c40c88"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"e51d8e57-3ce7-4d94-9bda-6db735288751"},"ext":null,"units_info":null},"to":{"value":"92f52df2-a61a-4fc2-a4fb-f83d826ac0a0"},"from":{"value":"5a9e620b-fdfe-4823-9e40-235dd7f249ac"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d2464682-b129-49d0-8d18-5c78a3b87e2f"},"ext":null,"units_info":null},"to":{"value":"f46ea643-ff48-458c-9955-7cce10eacbd5"},"from":{"value":"907e4e88-4ae1-4055-bf7a-8bba429fa3c9"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"76733b31-e259-4ceb-b47c-0bd5efa0b70d"},"ext":null,"units_info":null},"to":{"value":"b44d0ace-6daf-4e5e-b401-4dc31047d30c"},"from":{"value":"50290f85-efed-4e89-aedd-70a97520ad6c"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"a4a3952c-60a2-4bbd-b368-4ee038a60dfe"},"ext":null,"units_info":null},"to":{"value":"f46ea643-ff48-458c-9955-7cce10eacbd5"},"from":{"value":"8bda3f6a-76d3-4867-a515-9faf7dd9594a"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"58a56450-cb01-4288-8a11-be7670cb1f32"},"ext":null,"units_info":null},"to":{"value":"62f071cb-9649-4b48-95a6-8c49d1b8ebf8"},"from":{"value":"90c81bbc-1b9c-4e8e-b325-39cbed79de89"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"41c260ec-3182-42ae-bb84-57d1433c50de"},"ext":null,"units_info":null},"to":{"value":"2e0e1eee-efa1-4b51-b5f4-a513ed0054aa"},"from":{"value":"249c430d-30f4-44a8-be0a-645fd6373308"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"cac4ff22-2970-4e37-bfe2-e3c404fb2530"},"ext":null,"units_info":null},"to":{"value":"45c03e81-5110-40c2-b744-25667a1b8a59"},"from":{"value":"40950320-5f66-421e-9afd-417fc12b8159"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"a5f6b631-342a-4ad8-a0e3-5d9143cb28c3"},"ext":null,"units_info":null},"to":{"value":"67ce8e58-8bbc-41d0-a10f-2c538fe9e937"},"from":{"value":"a3bf399e-3fda-477b-9082-c5166a72bc71"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"62a00408-56fb-4568-a067-a7b0fdd8ac47"},"ext":null,"units_info":null},"to":{"value":"a971e28e-77fc-4f66-bad5-1ad2b7839255"},"from":{"value":"d12bd072-de66-4021-ba4a-9b59e1ccdb0b"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"c4750d15-9b5a-46eb-ab37-21064e033aa5"},"ext":null,"units_info":null},"to":{"value":"8659ba8b-af91-421e-bcf4-90a4c716dde0"},"from":{"value":"2e0e1eee-efa1-4b51-b5f4-a513ed0054aa"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"86fc0b0d-fb18-4236-b75f-13b80f97566d"},"ext":null,"units_info":null},"to":{"value":"77aa3a1a-6662-453e-bdef-392468c40c88"},"from":{"value":"755f3ba4-6743-4525-be76-5bd5b84c9c9f"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d039859c-2851-40aa-955c-b0ff35f38ec9"},"ext":null,"units_info":null},"to":{"value":"9f63753a-68f9-4987-929c-3aae17e152b7"},"from":{"value":"dcfad80f-ad3b-4109-8cd3-9b58a747e5cc"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"f1ee55a9-68a5-4c4c-a596-ebb6c246097b"},"ext":null,"units_info":null},"to":{"value":"110505ae-7250-4875-907c-58b9b3a0aa63"},"from":{"value":"657eb7a1-3bf7-4e34-a990-02b4aed96447"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"58fb0da7-90fa-424e-9b4c-0c4a1e717a0d"},"ext":null,"units_info":null},"to":{"value":"0e8c5517-4630-4e50-bb56-4abcb36b2a83"},"from":{"value":"f1f78c2d-91b0-4dfe-be16-26100aad4f5a"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"09924970-10a4-46ae-a1bb-e79b051cd8da"},"ext":null,"units_info":null},"to":{"value":"7afbca38-9add-4107-9a7c-818aa25d363b"},"from":{"value":"67ce8e58-8bbc-41d0-a10f-2c538fe9e937"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"c23c0564-1b85-46c5-8574-fbef9c68687b"},"ext":null,"units_info":null},"to":{"value":"dcfad80f-ad3b-4109-8cd3-9b58a747e5cc"},"from":{"value":"57289903-07af-401b-843a-3b3c79d00ff9"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"12722669-b595-4454-8ad4-057c1dddf1cf"},"ext":null,"units_info":null},"to":{"value":"40950320-5f66-421e-9afd-417fc12b8159"},"from":{"value":"b020f685-db97-4b9e-a359-9b66f6974857"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"0bcdac67-d480-4c3a-8279-c5721d509a23"},"ext":null,"units_info":null},"to":{"value":"f926d92c-a010-4f0e-a09b-9704b5976805"},"from":{"value":"e8fa3994-d691-4317-abf0-869d957acde3"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"04df668c-aff6-4fae-9ef7-7eb866d2f339"},"ext":null,"units_info":null},"to":{"value":"c205c35a-daf7-486f-9102-0846480469fc"},"from":{"value":"534363d0-5d67-4e13-9e82-bd37d557d825"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"7ab21172-f0e5-4901-9ab9-d69b880b7965"},"ext":null,"units_info":null},"to":{"value":"57289903-07af-401b-843a-3b3c79d00ff9"},"from":{"value":"45c03e81-5110-40c2-b744-25667a1b8a59"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"b354d194-5030-442f-b3f5-2dbc23fb94d0"},"ext":null,"units_info":null},"to":{"value":"e8fa3994-d691-4317-abf0-869d957acde3"},"from":{"value":"736e8533-e80a-45ed-b719-ed593b52e071"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"f826f1ac-8df6-4b09-be84-fcf3e5dadfe8"},"ext":null,"units_info":null},"to":{"value":"0e8c5517-4630-4e50-bb56-4abcb36b2a83"},"from":{"value":"57289903-07af-401b-843a-3b3c79d00ff9"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"749cd218-c024-45ad-a945-b82619aa74c6"},"ext":null,"units_info":null},"to":{"value":"5a179bcc-0632-4473-a17c-37b80445bb5c"},"from":{"value":"77aa3a1a-6662-453e-bdef-392468c40c88"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d3279730-d11c-41c9-80cd-b56bb2c13886"},"ext":null,"units_info":null},"to":{"value":"8659ba8b-af91-421e-bcf4-90a4c716dde0"},"from":{"value":"e8af8eeb-c00c-46d4-9c2d-3aa1b1867484"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"2a03e4b8-a6d9-436c-be21-227611486b1e"},"ext":null,"units_info":null},"to":{"value":"641a1bc5-7300-499c-8dd6-f75b00346caa"},"from":{"value":"50290f85-efed-4e89-aedd-70a97520ad6c"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"a2c28452-0935-4a4a-b3d3-3e57ad1b7ef7"},"ext":null,"units_info":null},"to":{"value":"5c02ba83-3a6a-46b5-908e-474fb734d83d"},"from":{"value":"7ae0f683-1403-4dc3-b4d7-08e0c281096e"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"8b0801d4-c246-4744-be3b-c12af81093de"},"ext":null,"units_info":null},"to":{"value":"77aa3a1a-6662-453e-bdef-392468c40c88"},"from":{"value":"15566e3d-f34f-49a8-af5f-1e60b8282fd4"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"60947cc7-9aa8-4e45-adab-6967c5b58668"},"ext":null,"units_info":null},"to":{"value":"e8af8eeb-c00c-46d4-9c2d-3aa1b1867484"},"from":{"value":"4830b7aa-d6ab-425c-b7cf-24d1e0ad83b5"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"9ffc26f1-2e1b-42e5-85da-51eb05d058d7"},"ext":null,"units_info":null},"to":{"value":"5a179bcc-0632-4473-a17c-37b80445bb5c"},"from":{"value":"7afbca38-9add-4107-9a7c-818aa25d363b"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"fc9f8126-81e4-42ec-a891-3382a10603ee"},"ext":null,"units_info":null},"to":{"value":"d003942b-96e7-4e0c-8575-3f734035ce4a"},"from":{"value":"32f4caa2-daad-423a-8a9f-c74c67610306"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"effd792a-c778-4d4f-b3c2-7b5b62bbed58"},"ext":null,"units_info":null},"to":{"value":"39241fb2-2f85-4d2c-82a6-bb7a3afc0493"},"from":{"value":"b020f685-db97-4b9e-a359-9b66f6974857"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"68041d74-fa3b-4b08-a04b-96079f4e7c8d"},"ext":null,"units_info":null},"to":{"value":"e8af8eeb-c00c-46d4-9c2d-3aa1b1867484"},"from":{"value":"e8fa3994-d691-4317-abf0-869d957acde3"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"9089d0b6-b1b8-44ec-968c-db32d97a463e"},"ext":null,"units_info":null},"to":{"value":"12996cf4-757c-4779-9a38-ed2c56964376"},"from":{"value":"9f9fb6eb-9002-454f-80ce-a92be3521435"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d00b6f7f-c8fd-4250-96b5-a6c4ab0c100f"},"ext":null,"units_info":null},"to":{"value":"249c430d-30f4-44a8-be0a-645fd6373308"},"from":{"value":"cf0865e3-e927-4e3d-9e72-5a383e6ea5d1"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"fbf036fb-17c0-4b65-a02c-9ea8161662a5"},"ext":null,"units_info":null},"to":{"value":"6c610478-0521-4753-b30d-a3dfc942bbfd"},"from":{"value":"7060bd84-1950-425c-abed-355c9ad4ee97"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"acb4bebe-c13f-463c-aa1a-d611b013955b"},"ext":null,"units_info":null},"to":{"value":"1a5364ac-e357-4c46-8236-2e8a814e67f2"},"from":{"value":"b3c2b7c8-07d5-4323-8da8-67d0c0b50eb4"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"326b0193-12a7-4201-a7f7-722ed3ef2387"},"ext":null,"units_info":null},"to":{"value":"1a5364ac-e357-4c46-8236-2e8a814e67f2"},"from":{"value":"907e4e88-4ae1-4055-bf7a-8bba429fa3c9"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"044cad34-3e50-440e-81d5-e8c7bfc7fcf2"},"ext":null,"units_info":null},"to":{"value":"2e0e1eee-efa1-4b51-b5f4-a513ed0054aa"},"from":{"value":"b44d0ace-6daf-4e5e-b401-4dc31047d30c"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"2862ea45-d7f2-4300-a7f8-c235688eef75"},"ext":null,"units_info":null},"to":{"value":"32f4caa2-daad-423a-8a9f-c74c67610306"},"from":{"value":"39241fb2-2f85-4d2c-82a6-bb7a3afc0493"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"7b258cbf-2a30-4afa-a8c6-fd4515c03a44"},"ext":null,"units_info":null},"to":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"from":{"value":"0f10391c-45e3-462b-9e02-81bf6393e83a"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"a7f07fc7-e27e-41dd-9366-153628150b87"},"ext":null,"units_info":null},"to":{"value":"fab2cdd8-84f3-4b4b-973c-a3f104e30fb9"},"from":{"value":"477fbe6a-e760-4745-8a8b-0fbc102e9cd1"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"e94d9d39-47a1-4ac0-bdae-0f798bd1d3c0"},"ext":null,"units_info":null},"to":{"value":"0b2611cb-8f81-4c83-b76c-52a86b2fc6bd"},"from":{"value":"9f63753a-68f9-4987-929c-3aae17e152b7"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"647dec1d-6a72-4486-8844-905d8cb971d9"},"ext":null,"units_info":null},"to":{"value":"5a9e620b-fdfe-4823-9e40-235dd7f249ac"},"from":{"value":"af951a07-2566-44f2-be2e-105749c2302f"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"b02a5cdd-c45d-4f97-967d-df95f2a50da3"},"ext":null,"units_info":null},"to":{"value":"b3fadd0d-6cf7-4810-bc52-cec7161f1736"},"from":{"value":"45c03e81-5110-40c2-b744-25667a1b8a59"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"946d640d-1c27-4a6a-b57a-0fdd6692cf3f"},"ext":null,"units_info":null},"to":{"value":"45ac7ff2-133f-436a-8874-f504f8e890b3"},"from":{"value":"d12bd072-de66-4021-ba4a-9b59e1ccdb0b"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"base_power":53.0,"prime_mover_type":"HY","rating":0.9905211130872972,"services":[],"bus":{"value":"cf0865e3-e927-4e3d-9e72-5a383e6ea5d1"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"04bf0a23-c6f0-4b08-a905-b1001f1dee5b"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"91f97e35-3a8d-43b6-b9de-44776a91047a"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"91f97e35-3a8d-43b6-b9de-44776a91047a"},"ext":null,"units_info":null},"time_series_uuid":{"value":"04bf0a23-c6f0-4b08-a905-b1001f1dee5b"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}},{"horizon":12,"time_series_uuid":{"value":"177edcda-0576-4c95-8dd7-d7237e5e38ba"},"name":"inflow","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"e35993fe-fc2e-4f6b-9439-6bf7d826d623"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_inflow","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"inflow","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"e35993fe-fc2e-4f6b-9439-6bf7d826d623"},"ext":null,"units_info":null},"time_series_uuid":{"value":"177edcda-0576-4c95-8dd7-d7237e5e38ba"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_inflow","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"201_HYDRO_4","active_power":0.9433962264150944,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"HydroDispatch"},"internal":{"uuid":{"value":"33190b29-dfd3-47e9-b2e6-7dd08e16f92d"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.18867924528301888,"max":0.3018867924528302},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"time_limits":{"up":0.0,"down":0.0},"ramp_limits":{"up":0.9433962264150944,"down":0.9433962264150944},"active_power_limits":{"min":0.0,"max":0.9433962264150944},"reactive_power":0.07830188679245284},{"reactive_power_limits_from":{"min":0.0,"max":1.0},"services":[],"available":true,"time_series_container":[],"name":"DC1","active_power_limits_to":{"min":-1.0,"max":1.0},"arc":{"value":"f826f1ac-8df6-4b09-be84-fcf3e5dadfe8"},"__metadata__":{"module":"PowerSystems","type":"TwoTerminalHVDCLine"},"internal":{"uuid":{"value":"658016b6-1e76-46c1-8973-af3bf40a3fbe"},"ext":null,"units_info":null},"ext":{},"loss":{"l0":0.0,"l1":0.1},"active_power_flow":0.0,"active_power_limits_from":{"min":-1.0,"max":1.0},"reactive_power_limits_to":{"min":0.0,"max":1.0}},{"Y":{"real":0.0,"imag":-1.0},"name":"Camus","__metadata__":{"module":"PowerSystems","type":"FixedAdmittance"},"internal":{"uuid":{"value":"698bb049-7bce-46d6-bde2-e22e48f72f96"},"ext":null,"units_info":null},"services":[],"ext":{},"bus":{"value":"13e2805d-b97e-4bc2-a696-03f07d2416c2"},"dynamic_injector":null,"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"7fe7ee73-7480-4ca9-9703-d7d7d59a9caf"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"7fe7ee73-7480-4ca9-9703-d7d7d59a9caf"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}]},{"Y":{"real":0.0,"imag":-1.0},"name":"Bajer","__metadata__":{"module":"PowerSystems","type":"FixedAdmittance"},"internal":{"uuid":{"value":"7bcb8baa-63b1-4b8f-a37e-556614a8cbc1"},"ext":null,"units_info":null},"services":[],"ext":{},"bus":{"value":"b44d0ace-6daf-4e5e-b401-4dc31047d30c"},"dynamic_injector":null,"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"9784a715-54e4-40c1-adec-c789d8f3a7e1"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"9784a715-54e4-40c1-adec-c789d8f3a7e1"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}]},{"Y":{"real":0.0,"imag":-1.0},"name":"Alber","__metadata__":{"module":"PowerSystems","type":"FixedAdmittance"},"internal":{"uuid":{"value":"40e39b68-fb7d-403b-9f90-dee8e64f247d"},"ext":null,"units_info":null},"services":[],"ext":{},"bus":{"value":"d7dad224-2f15-4e59-9df5-d16a9fd7fcb7"},"dynamic_injector":null,"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"3e285443-b653-485d-9145-63ad8e5a4e72"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"3e285443-b653-485d-9145-63ad8e5a4e72"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}]},{"base_power":100.0,"services":[],"bus":{"value":"50290f85-efed-4e89-aedd-70a97520ad6c"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"448d6196-7e35-45d5-9784-c1f66d9d114a"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"448d6196-7e35-45d5-9784-c1f66d9d114a"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Bacon","active_power":0.97,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.97,"internal":{"uuid":{"value":"7f9732e9-7577-43d1-977e-3b9520a5b69a"},"ext":null,"units_info":null},"max_reactive_power":0.2,"ext":{},"reactive_power":0.2},{"base_power":100.0,"services":[],"bus":{"value":"7ae0f683-1403-4dc3-b4d7-08e0c281096e"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"bd2af97e-a6fb-4a8a-a05b-a2c8922544d9"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"bd2af97e-a6fb-4a8a-a05b-a2c8922544d9"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Adams","active_power":0.97,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.97,"internal":{"uuid":{"value":"cec4eea4-1473-40c7-826a-7a840cc01583"},"ext":null,"units_info":null},"max_reactive_power":0.2,"ext":{},"reactive_power":0.2},{"base_power":100.0,"services":[],"bus":{"value":"b44d0ace-6daf-4e5e-b401-4dc31047d30c"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"1b43ceb0-1473-4696-88ad-ad35e7de432e"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"1b43ceb0-1473-4696-88ad-ad35e7de432e"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Bajer","active_power":1.36,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.36,"internal":{"uuid":{"value":"064b0aeb-4695-486c-beca-6d78b94361e0"},"ext":null,"units_info":null},"max_reactive_power":0.28,"ext":{},"reactive_power":0.28},{"base_power":100.0,"services":[],"bus":{"value":"8bda3f6a-76d3-4867-a515-9faf7dd9594a"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"cb40044c-6ca9-425a-b5e0-526e1ec6e2c7"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"cb40044c-6ca9-425a-b5e0-526e1ec6e2c7"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Adler","active_power":1.8,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.8,"internal":{"uuid":{"value":"917e9ea4-72c4-475e-a67a-0699f849943a"},"ext":null,"units_info":null},"max_reactive_power":0.37,"ext":{},"reactive_power":0.37},{"base_power":100.0,"services":[],"bus":{"value":"a3bf399e-3fda-477b-9082-c5166a72bc71"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"dba24306-c089-4b4f-8709-a0e681cc3a1e"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"dba24306-c089-4b4f-8709-a0e681cc3a1e"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Cabell","active_power":1.08,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.08,"internal":{"uuid":{"value":"c250d466-b166-41a1-9a45-3b376ba62124"},"ext":null,"units_info":null},"max_reactive_power":0.22,"ext":{},"reactive_power":0.22},{"base_power":100.0,"services":[],"bus":{"value":"641a1bc5-7300-499c-8dd6-f75b00346caa"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"df14d0f5-e265-432e-b5eb-e9a51122c657"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"df14d0f5-e265-432e-b5eb-e9a51122c657"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Bailey","active_power":0.74,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.74,"internal":{"uuid":{"value":"48b93a39-1467-4b9c-80f6-46a048530480"},"ext":null,"units_info":null},"max_reactive_power":0.15,"ext":{},"reactive_power":0.15},{"base_power":100.0,"services":[],"bus":{"value":"736e8533-e80a-45ed-b719-ed593b52e071"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"282cc37c-53a7-4f39-81c9-74751f1112db"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"282cc37c-53a7-4f39-81c9-74751f1112db"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Alder","active_power":1.25,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.25,"internal":{"uuid":{"value":"b9102aff-03f3-4d8c-a156-3239a6607126"},"ext":null,"units_info":null},"max_reactive_power":0.25,"ext":{},"reactive_power":0.25},{"base_power":100.0,"services":[],"bus":{"value":"39241fb2-2f85-4d2c-82a6-bb7a3afc0493"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"1f6494cc-01cb-4bea-981a-0c8cd2f5c1a9"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"1f6494cc-01cb-4bea-981a-0c8cd2f5c1a9"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Allen","active_power":1.95,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.95,"internal":{"uuid":{"value":"b69acfd1-8d10-4a63-bb66-83a9e63d0d3d"},"ext":null,"units_info":null},"max_reactive_power":0.4,"ext":{},"reactive_power":0.4},{"base_power":100.0,"services":[],"bus":{"value":"dcfad80f-ad3b-4109-8cd3-9b58a747e5cc"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"34113d6f-302f-4e3d-9d06-9dbfb1f38e07"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"34113d6f-302f-4e3d-9d06-9dbfb1f38e07"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Barton","active_power":3.17,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":3.17,"internal":{"uuid":{"value":"1674b892-519d-4812-b1d3-1cb11457112f"},"ext":null,"units_info":null},"max_reactive_power":0.64,"ext":{},"reactive_power":0.64},{"base_power":100.0,"services":[],"bus":{"value":"cf0865e3-e927-4e3d-9e72-5a383e6ea5d1"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"b154224c-980f-4f6e-99b2-572257e61a08"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"b154224c-980f-4f6e-99b2-572257e61a08"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Bach","active_power":1.08,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.08,"internal":{"uuid":{"value":"153c71f5-8d50-4a80-961f-9e7de05da5a5"},"ext":null,"units_info":null},"max_reactive_power":0.22,"ext":{},"reactive_power":0.22},{"base_power":100.0,"services":[],"bus":{"value":"755f3ba4-6743-4525-be76-5bd5b84c9c9f"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"2b3b0c43-bb2f-4270-be95-b6a540f19b7d"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"2b3b0c43-bb2f-4270-be95-b6a540f19b7d"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Caesar","active_power":1.8,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.8,"internal":{"uuid":{"value":"e90469a7-0192-4f27-8bf9-9ad67ba40517"},"ext":null,"units_info":null},"max_reactive_power":0.37,"ext":{},"reactive_power":0.37},{"base_power":100.0,"services":[],"bus":{"value":"bed5979f-04a2-41d1-a5cb-2cec3a2eb58d"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"2f106fb2-7aa5-4fc8-b195-7b20420f7f67"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"2f106fb2-7aa5-4fc8-b195-7b20420f7f67"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Carew","active_power":1.25,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.25,"internal":{"uuid":{"value":"0c9cdcea-794d-4b92-a3a1-3887424925e0"},"ext":null,"units_info":null},"max_reactive_power":0.25,"ext":{},"reactive_power":0.25},{"base_power":100.0,"services":[],"bus":{"value":"249c430d-30f4-44a8-be0a-645fd6373308"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"3ff4296b-c265-4d74-a0ef-945bb0849fca"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"3ff4296b-c265-4d74-a0ef-945bb0849fca"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Bain","active_power":0.71,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.71,"internal":{"uuid":{"value":"7d6a9fb6-2234-4fd6-af5f-ac5d1919202b"},"ext":null,"units_info":null},"max_reactive_power":0.14,"ext":{},"reactive_power":0.14},{"base_power":100.0,"services":[],"bus":{"value":"657eb7a1-3bf7-4e34-a990-02b4aed96447"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"f10c4f44-59c5-4537-831e-3849ce69fd81"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"f10c4f44-59c5-4537-831e-3849ce69fd81"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Chase","active_power":3.17,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":3.17,"internal":{"uuid":{"value":"7141f95c-e267-4496-b1a7-41add84d3758"},"ext":null,"units_info":null},"max_reactive_power":0.64,"ext":{},"reactive_power":0.64},{"base_power":100.0,"services":[],"bus":{"value":"d5e86284-9814-474a-b96a-7718de7b02f1"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"efe815c4-6aeb-43a3-b84b-126c762d621a"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"efe815c4-6aeb-43a3-b84b-126c762d621a"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Carrel","active_power":1.71,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.71,"internal":{"uuid":{"value":"f9b28227-7197-433f-8ab1-03dac4598a8f"},"ext":null,"units_info":null},"max_reactive_power":0.35,"ext":{},"reactive_power":0.35},{"base_power":100.0,"services":[],"bus":{"value":"40950320-5f66-421e-9afd-417fc12b8159"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"d6d44524-7177-4cb1-b11b-76b62982736e"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"d6d44524-7177-4cb1-b11b-76b62982736e"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Ali","active_power":1.75,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.75,"internal":{"uuid":{"value":"ded968c4-02c6-4dee-be89-404d9877cb24"},"ext":null,"units_info":null},"max_reactive_power":0.36,"ext":{},"reactive_power":0.36},{"base_power":100.0,"services":[],"bus":{"value":"7afbca38-9add-4107-9a7c-818aa25d363b"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"dfeb04cd-d5ec-4e0a-a7f4-26ebb37fc249"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"dfeb04cd-d5ec-4e0a-a7f4-26ebb37fc249"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Caruso","active_power":1.95,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.95,"internal":{"uuid":{"value":"b3583d12-ba1d-4c79-a561-f9969bd02d19"},"ext":null,"units_info":null},"max_reactive_power":0.4,"ext":{},"reactive_power":0.4},{"base_power":100.0,"services":[],"bus":{"value":"5e8c4cb3-3911-43d9-8dda-734b341a40a2"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"1d8fa694-0950-4a3f-bba6-ec59896caae4"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"1d8fa694-0950-4a3f-bba6-ec59896caae4"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Asser","active_power":1.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.0,"internal":{"uuid":{"value":"7e5c9689-8749-4d99-b7d4-940a71fb8327"},"ext":null,"units_info":null},"max_reactive_power":0.2,"ext":{},"reactive_power":0.2},{"base_power":100.0,"services":[],"bus":{"value":"0e8c5517-4630-4e50-bb56-4abcb36b2a83"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"e945a452-7666-4284-b8db-e4dc50afa77a"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"e945a452-7666-4284-b8db-e4dc50afa77a"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Chifa","active_power":1.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.0,"internal":{"uuid":{"value":"f0f57a96-a860-4936-809f-6ab10519424e"},"ext":null,"units_info":null},"max_reactive_power":0.2,"ext":{},"reactive_power":0.2},{"base_power":100.0,"services":[],"bus":{"value":"b020f685-db97-4b9e-a359-9b66f6974857"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"7e2ffec4-b9b7-4942-bf09-a838385f80ce"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"7e2ffec4-b9b7-4942-bf09-a838385f80ce"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Alger","active_power":1.71,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.71,"internal":{"uuid":{"value":"ffc20845-fde9-445b-8855-2d93392996fb"},"ext":null,"units_info":null},"max_reactive_power":0.35,"ext":{},"reactive_power":0.35},{"base_power":100.0,"services":[],"bus":{"value":"5c02ba83-3a6a-46b5-908e-474fb734d83d"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"55ffbce7-617e-4b13-bbb7-99583da04528"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"55ffbce7-617e-4b13-bbb7-99583da04528"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Agricola","active_power":0.74,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.74,"internal":{"uuid":{"value":"b7fb4606-579d-44f2-a95a-1ac5d213c420"},"ext":null,"units_info":null},"max_reactive_power":0.15,"ext":{},"reactive_power":0.15},{"base_power":100.0,"services":[],"bus":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"32fd93f3-bded-4835-89fd-5fe166acd458"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"32fd93f3-bded-4835-89fd-5fe166acd458"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Astor","active_power":3.33,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":3.33,"internal":{"uuid":{"value":"ee2539cb-bda9-4b3f-9609-840e800ae3e3"},"ext":null,"units_info":null},"max_reactive_power":0.68,"ext":{},"reactive_power":0.68},{"base_power":100.0,"services":[],"bus":{"value":"51b05554-134e-4576-abef-3059e0837cf2"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"a80b5c76-008e-4fb0-a9ba-6f15e92ae27b"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"a80b5c76-008e-4fb0-a9ba-6f15e92ae27b"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Aiken","active_power":0.71,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.71,"internal":{"uuid":{"value":"6be64047-2d9b-4004-9420-606c615eae1a"},"ext":null,"units_info":null},"max_reactive_power":0.14,"ext":{},"reactive_power":0.14},{"base_power":100.0,"services":[],"bus":{"value":"d771a793-3387-41ac-9554-164478428e91"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"4dafc24b-86c1-4f13-965c-1faeb4ec7210"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"4dafc24b-86c1-4f13-965c-1faeb4ec7210"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Clay","active_power":1.81,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.81,"internal":{"uuid":{"value":"97829c7f-8cbb-481f-ae12-1471ca6fde9f"},"ext":null,"units_info":null},"max_reactive_power":0.37,"ext":{},"reactive_power":0.37},{"base_power":100.0,"services":[],"bus":{"value":"45ac7ff2-133f-436a-8874-f504f8e890b3"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"7ddc1d9d-eae3-42ce-824f-3ac2322ee023"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"7ddc1d9d-eae3-42ce-824f-3ac2322ee023"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Barlow","active_power":2.65,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":2.65,"internal":{"uuid":{"value":"975ccc54-39b5-4237-94ec-78100c9fab5c"},"ext":null,"units_info":null},"max_reactive_power":0.54,"ext":{},"reactive_power":0.54},{"base_power":100.0,"services":[],"bus":{"value":"15566e3d-f34f-49a8-af5f-1e60b8282fd4"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"3267bede-9848-4122-9535-72f11e1081d8"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"3267bede-9848-4122-9535-72f11e1081d8"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Caine","active_power":0.74,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.74,"internal":{"uuid":{"value":"ceb4f9ec-d128-4d9c-ba61-9e0320150b93"},"ext":null,"units_info":null},"max_reactive_power":0.15,"ext":{},"reactive_power":0.15},{"base_power":100.0,"services":[],"bus":{"value":"2e0e1eee-efa1-4b51-b5f4-a513ed0054aa"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"ba8a4147-9e50-402d-9111-f27236c4a5cf"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"ba8a4147-9e50-402d-9111-f27236c4a5cf"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Banks","active_power":1.95,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.95,"internal":{"uuid":{"value":"30d4a402-b254-47a3-b4f1-ff5533b17f4f"},"ext":null,"units_info":null},"max_reactive_power":0.4,"ext":{},"reactive_power":0.4},{"base_power":100.0,"services":[],"bus":{"value":"534363d0-5d67-4e13-9e82-bd37d557d825"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"12abee95-4331-4f50-8a88-c64d8c0d1d75"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"12abee95-4331-4f50-8a88-c64d8c0d1d75"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Basov","active_power":1.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.0,"internal":{"uuid":{"value":"5c54def5-f4ca-4784-821c-7df4d62ef02b"},"ext":null,"units_info":null},"max_reactive_power":0.2,"ext":{},"reactive_power":0.2},{"base_power":100.0,"services":[],"bus":{"value":"e8af8eeb-c00c-46d4-9c2d-3aa1b1867484"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"ce7bdac7-dc75-4552-bbaa-5bbd4d88fc00"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"ce7bdac7-dc75-4552-bbaa-5bbd4d88fc00"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Balzac","active_power":1.75,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.75,"internal":{"uuid":{"value":"3054db61-63d8-4100-a2b4-1113d468eeb3"},"ext":null,"units_info":null},"max_reactive_power":0.36,"ext":{},"reactive_power":0.36},{"base_power":100.0,"services":[],"bus":{"value":"13e2805d-b97e-4bc2-a696-03f07d2416c2"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"cfee5a00-f542-4a13-99b9-a511e7f6d989"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"cfee5a00-f542-4a13-99b9-a511e7f6d989"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Camus","active_power":1.36,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.36,"internal":{"uuid":{"value":"21129505-0ab9-41ef-92bd-526ddbc511a0"},"ext":null,"units_info":null},"max_reactive_power":0.28,"ext":{},"reactive_power":0.28},{"base_power":100.0,"services":[],"bus":{"value":"f1f78c2d-91b0-4dfe-be16-26100aad4f5a"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"f0c91479-773a-4705-b445-0ecef50b0a45"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"f0c91479-773a-4705-b445-0ecef50b0a45"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Chain","active_power":1.94,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.94,"internal":{"uuid":{"value":"b803aa07-bed4-4e2b-a81d-6f8a65810681"},"ext":null,"units_info":null},"max_reactive_power":0.39,"ext":{},"reactive_power":0.39},{"base_power":100.0,"services":[],"bus":{"value":"d7dad224-2f15-4e59-9df5-d16a9fd7fcb7"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"8f59bea8-2cd5-4c0a-82a7-dc68489a3291"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"8f59bea8-2cd5-4c0a-82a7-dc68489a3291"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Alber","active_power":1.36,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.36,"internal":{"uuid":{"value":"59831b55-41fb-429b-a209-ae9735e50152"},"ext":null,"units_info":null},"max_reactive_power":0.28,"ext":{},"reactive_power":0.28},{"base_power":100.0,"services":[],"bus":{"value":"af951a07-2566-44f2-be2e-105749c2302f"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"6b0ec68e-0e37-4a71-85fc-505a848ac461"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"6b0ec68e-0e37-4a71-85fc-505a848ac461"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Clark","active_power":3.33,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":3.33,"internal":{"uuid":{"value":"a66b9011-cc27-48a1-9f6c-130158452e68"},"ext":null,"units_info":null},"max_reactive_power":0.68,"ext":{},"reactive_power":0.68},{"base_power":100.0,"services":[],"bus":{"value":"477fbe6a-e760-4745-8a8b-0fbc102e9cd1"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"acbbeda2-c756-432e-b233-90c59b8e6bd0"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"acbbeda2-c756-432e-b233-90c59b8e6bd0"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Attar","active_power":1.81,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.81,"internal":{"uuid":{"value":"ce73cb6d-7047-4f8f-9e7f-922502ec0626"},"ext":null,"units_info":null},"max_reactive_power":0.37,"ext":{},"reactive_power":0.37},{"base_power":100.0,"services":[],"bus":{"value":"907e4e88-4ae1-4055-bf7a-8bba429fa3c9"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"1674f895-c8b9-4b50-abe5-33b06e4fae9d"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"1674f895-c8b9-4b50-abe5-33b06e4fae9d"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Arthur","active_power":3.17,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":3.17,"internal":{"uuid":{"value":"54840b4a-d425-4068-a458-b86250310210"},"ext":null,"units_info":null},"max_reactive_power":0.64,"ext":{},"reactive_power":0.64},{"base_power":100.0,"services":[],"bus":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"791d9b11-706e-4558-81e6-838109b19ec2"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"791d9b11-706e-4558-81e6-838109b19ec2"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Cecil","active_power":2.65,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":2.65,"internal":{"uuid":{"value":"22388a57-5c6d-49da-9bca-a41bda4b8c7e"},"ext":null,"units_info":null},"max_reactive_power":0.54,"ext":{},"reactive_power":0.54},{"base_power":100.0,"services":[],"bus":{"value":"90c81bbc-1b9c-4e8e-b325-39cbed79de89"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"9890e2b0-44cc-4a92-b957-c7017e58274f"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"9890e2b0-44cc-4a92-b957-c7017e58274f"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Beethoven","active_power":1.28,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.28,"internal":{"uuid":{"value":"d7cbbb54-2a5d-422f-806b-974662f10e52"},"ext":null,"units_info":null},"max_reactive_power":0.26,"ext":{},"reactive_power":0.26},{"base_power":100.0,"services":[],"bus":{"value":"fab2cdd8-84f3-4b4b-973c-a3f104e30fb9"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"2de13a4a-bcc1-407f-ba87-c02e35fdbdc4"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"2de13a4a-bcc1-407f-ba87-c02e35fdbdc4"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Attila","active_power":1.28,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.28,"internal":{"uuid":{"value":"a5b391ea-ec50-4a74-ae6d-ce37701fc641"},"ext":null,"units_info":null},"max_reactive_power":0.26,"ext":{},"reactive_power":0.26},{"base_power":100.0,"services":[],"bus":{"value":"afd07468-171d-40b1-93df-ce3d4e92af2a"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"54d48b58-4a9c-4873-ada2-b762e9d76e6d"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"54d48b58-4a9c-4873-ada2-b762e9d76e6d"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Abel","active_power":1.08,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.08,"internal":{"uuid":{"value":"074f3c36-5861-4988-9de6-5c13f3b20e02"},"ext":null,"units_info":null},"max_reactive_power":0.22,"ext":{},"reactive_power":0.22},{"base_power":100.0,"services":[],"bus":{"value":"4830b7aa-d6ab-425c-b7cf-24d1e0ad83b5"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"e320163d-2c5d-4635-bb7e-f564bb7da7ea"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"e320163d-2c5d-4635-bb7e-f564bb7da7ea"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Balch","active_power":1.71,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.71,"internal":{"uuid":{"value":"b20779f1-e72a-4519-841c-76d23a59a5af"},"ext":null,"units_info":null},"max_reactive_power":0.35,"ext":{},"reactive_power":0.35},{"base_power":100.0,"services":[],"bus":{"value":"77aa3a1a-6662-453e-bdef-392468c40c88"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"69895b6c-a4ea-44f2-baec-f1ae2c0da3f7"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"69895b6c-a4ea-44f2-baec-f1ae2c0da3f7"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Carter","active_power":1.75,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.75,"internal":{"uuid":{"value":"de6c607b-3053-496d-93f3-c09e4890df1e"},"ext":null,"units_info":null},"max_reactive_power":0.36,"ext":{},"reactive_power":0.36},{"base_power":100.0,"services":[],"bus":{"value":"7060bd84-1950-425c-abed-355c9ad4ee97"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"64e52169-5af8-4f9b-93ff-d9e81615e8aa"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"64e52169-5af8-4f9b-93ff-d9e81615e8aa"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Clive","active_power":1.28,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.28,"internal":{"uuid":{"value":"4bb2c372-ac98-43f2-9919-27ff33d3b468"},"ext":null,"units_info":null},"max_reactive_power":0.26,"ext":{},"reactive_power":0.26},{"base_power":100.0,"services":[],"bus":{"value":"67ce8e58-8bbc-41d0-a10f-2c538fe9e937"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"fa99c966-4105-4734-b119-f95a12b43481"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"fa99c966-4105-4734-b119-f95a12b43481"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Calvin","active_power":0.71,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.71,"internal":{"uuid":{"value":"364e29e4-6c32-454f-af62-094621863ef6"},"ext":null,"units_info":null},"max_reactive_power":0.14,"ext":{},"reactive_power":0.14},{"base_power":100.0,"services":[],"bus":{"value":"8f167815-24eb-4f8a-8363-e5356a10d37d"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"73131ad2-104f-410d-8c23-5958c21f1c13"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"73131ad2-104f-410d-8c23-5958c21f1c13"},"ext":null,"units_info":null},"time_series_uuid":{"value":"99256fb6-ba10-4af2-85fd-2b29f23d9069"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Cabot","active_power":0.97,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.97,"internal":{"uuid":{"value":"4f64a824-3694-4cc3-8bab-b64cd82dcdd2"},"ext":null,"units_info":null},"max_reactive_power":0.2,"ext":{},"reactive_power":0.2},{"base_power":100.0,"services":[],"bus":{"value":"12996cf4-757c-4779-9a38-ed2c56964376"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"00ca37d6-1780-48ad-936d-0fa3d910f480"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"00ca37d6-1780-48ad-936d-0fa3d910f480"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Bayle","active_power":3.33,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":3.33,"internal":{"uuid":{"value":"9254887b-888f-4b6d-8cd2-c0f5c8a00b9e"},"ext":null,"units_info":null},"max_reactive_power":0.68,"ext":{},"reactive_power":0.68},{"base_power":100.0,"services":[],"bus":{"value":"c205c35a-daf7-486f-9102-0846480469fc"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"9997136b-5503-402d-8934-a8447a6cffa3"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"9997136b-5503-402d-8934-a8447a6cffa3"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Bede","active_power":1.81,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.81,"internal":{"uuid":{"value":"51190b2a-9f66-4748-920b-e891d30f6fd4"},"ext":null,"units_info":null},"max_reactive_power":0.37,"ext":{},"reactive_power":0.37},{"base_power":100.0,"services":[],"bus":{"value":"b3fadd0d-6cf7-4810-bc52-cec7161f1736"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"2257ed70-6c3d-415e-98c2-ecf7188be36b"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"2257ed70-6c3d-415e-98c2-ecf7188be36b"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Arnold","active_power":1.94,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.94,"internal":{"uuid":{"value":"ba5e0702-c0c4-49a1-9092-aeb93444ad9a"},"ext":null,"units_info":null},"max_reactive_power":0.39,"ext":{},"reactive_power":0.39},{"base_power":100.0,"services":[],"bus":{"value":"3942b312-c3e4-4800-98c8-d5ad4381cfc6"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"dfb1767e-2302-4ecb-bd15-850001b04aaf"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"dfb1767e-2302-4ecb-bd15-850001b04aaf"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Baker","active_power":1.25,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.25,"internal":{"uuid":{"value":"290fcd71-1729-4a4c-b09e-f03e228316e2"},"ext":null,"units_info":null},"max_reactive_power":0.25,"ext":{},"reactive_power":0.25},{"base_power":100.0,"services":[],"bus":{"value":"a971e28e-77fc-4f66-bad5-1ad2b7839255"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"77287bea-0631-446c-af60-6dccdc3c9b3c"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"77287bea-0631-446c-af60-6dccdc3c9b3c"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Barry","active_power":1.94,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.94,"internal":{"uuid":{"value":"9f40a756-6270-419f-b9a6-362429593c62"},"ext":null,"units_info":null},"max_reactive_power":0.39,"ext":{},"reactive_power":0.39},{"base_power":100.0,"services":[],"bus":{"value":"57289903-07af-401b-843a-3b3c79d00ff9"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"cbf362af-356f-4dab-9041-7ce7d9cb3606"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"cbf362af-356f-4dab-9041-7ce7d9cb3606"},"ext":null,"units_info":null},"time_series_uuid":{"value":"71ff536c-f4ce-4bbf-ba05-e25ffe71a61d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Arne","active_power":2.65,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":2.65,"internal":{"uuid":{"value":"be64d4a8-6c13-4581-9d89-b2302e576758"},"ext":null,"units_info":null},"max_reactive_power":0.54,"ext":{},"reactive_power":0.54},{"base_power":100.0,"services":[],"bus":{"value":"e8fa3994-d691-4317-abf0-869d957acde3"},"available":true,"time_series_container":[{"horizon":12,"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"c559fca5-5cd3-4b80-99bf-c342a7ae9dd6"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":105408,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":300000,"type":"Millisecond"},"internal":{"uuid":{"value":"c559fca5-5cd3-4b80-99bf-c342a7ae9dd6"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2dd685b3-ecf9-4591-a212-74a8d34a21fe"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Baffin","active_power":1.8,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.8,"internal":{"uuid":{"value":"50619521-857c-4e30-bf55-bcdbbf7de788"},"ext":null,"units_info":null},"max_reactive_power":0.37,"ext":{},"reactive_power":0.37},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"B15","reactive_power_flow":0.0,"arc":{"value":"d3279730-d11c-41c9-80cd-b56bb2c13886"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"24cc8361-c27f-4903-b27c-e02e57ef84cf"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.03},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"B14","reactive_power_flow":0.0,"arc":{"value":"ded393ee-bd10-4713-b90f-1b636d2d2049"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"6af068da-7b1c-43c0-b1d8-d293864e9751"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.03},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"A17","reactive_power_flow":0.0,"arc":{"value":"2862ea45-d7f2-4300-a7f8-c235688eef75"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"5a2c9614-b29b-4a8b-a2d4-d06ad7d9381c"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"C16","reactive_power_flow":0.0,"arc":{"value":"9ffc26f1-2e1b-42e5-85da-51eb05d058d7"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"a3e403b3-81e2-4cf0-abf4-0d8d19437e7a"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"B17","reactive_power_flow":0.0,"arc":{"value":"c4750d15-9b5a-46eb-ab37-21064e033aa5"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"1eb10a24-dfb1-4c6f-a0bf-3de3c7ae3ba4"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"A14","reactive_power_flow":0.0,"arc":{"value":"cac4ff22-2970-4e37-bfe2-e3c404fb2530"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"fa58fa3c-4be2-4ddd-8121-41f190126278"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.03},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"C15","reactive_power_flow":0.0,"arc":{"value":"94f8b722-4a82-41b0-85a5-b14c3dca1486"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"f66bdc58-a421-4f13-9b25-9e7f81fb38a5"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.03},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"B7","reactive_power_flow":0.0,"arc":{"value":"0bcdac67-d480-4c3a-8279-c5721d509a23"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"d73ade77-aedb-4af2-bdc5-4da9b836f9cd"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"A7","reactive_power_flow":0.0,"arc":{"value":"a4a3952c-60a2-4bbd-b368-4ee038a60dfe"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"6da51df3-dc7e-453b-a26a-451e05f1fdd3"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"A16","reactive_power_flow":0.0,"arc":{"value":"f28d97c3-6669-4472-95ba-a82bc3ea71c7"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"834f694c-03c4-431b-ad87-b0b4526ae3a5"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"C17","reactive_power_flow":0.0,"arc":{"value":"ac7f45e5-26ce-44ee-94ea-784f75842826"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"04befaf0-3feb-476a-9cd4-9eb6e0a5fc8d"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"A15","reactive_power_flow":0.0,"arc":{"value":"77dbb4ec-b8fd-45d7-81b8-f6c95507ec9b"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"22dc03df-2be8-4fb5-b35b-48889dbe4f49"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.03},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"B16","reactive_power_flow":0.0,"arc":{"value":"cb092e2a-3aa5-4c64-aaef-60413a86d4e4"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"ea095abd-a2f7-4a2d-9273-e67344ec42e0"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"C7","reactive_power_flow":0.0,"arc":{"value":"4e7ff517-a8b3-4658-a129-8d448a9643b9"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"ef67dda2-745e-4304-b132-42a69056d1bd"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"C14","reactive_power_flow":0.0,"arc":{"value":"749cd218-c024-45ad-a945-b82619aa74c6"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"96d4a56c-3dae-44e4-b413-7589640d7725"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.03},{"number":202,"base_voltage":138.0,"bustype":"PV","angle":-0.1877810214196211,"name":"Bacon","magnitude":1.04844,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"50290f85-efed-4e89-aedd-70a97520ad6c"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"53ce5d60-9f65-49b9-9692-904b6fc7256b"}},{"number":321,"base_voltage":230.0,"bustype":"PV","angle":0.21539492271297458,"name":"Cobb","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"5a9e620b-fdfe-4823-9e40-235dd7f249ac"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"6d760d95-9e3b-4479-9d19-ced8b01ec0cc"}},{"number":322,"base_voltage":230.0,"bustype":"PV","angle":0.3153659860038082,"name":"Cole","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"92f52df2-a61a-4fc2-a4fb-f83d826ac0a0"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"6d760d95-9e3b-4479-9d19-ced8b01ec0cc"}},{"number":102,"base_voltage":138.0,"bustype":"PV","angle":-0.1364470483941135,"name":"Adams","magnitude":1.04783,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"7ae0f683-1403-4dc3-b4d7-08e0c281096e"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"75b06801-17ca-491b-8a32-6eb25a0fc121"}},{"number":117,"base_voltage":230.0,"bustype":"PQ","angle":0.19956391373276003,"name":"Aston","magnitude":1.04783,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"0f10391c-45e3-462b-9e02-81bf6393e83a"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"2d7132ba-521c-4f02-8a46-23b5fb0f8c50"}},{"number":324,"base_voltage":230.0,"bustype":"PQ","angle":0.02279504722859714,"name":"Curie","magnitude":1.01046,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"110505ae-7250-4875-907c-58b9b3a0aa63"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"7263b605-51dc-4150-b631-023e3ce6f6f9"}},{"number":121,"base_voltage":230.0,"bustype":"PV","angle":0.22840303616101354,"name":"Attlee","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"1a5364ac-e357-4c46-8236-2e8a814e67f2"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"2d7132ba-521c-4f02-8a46-23b5fb0f8c50"}},{"number":206,"base_voltage":138.0,"bustype":"PQ","angle":-0.28198796032281825,"name":"Bajer","magnitude":1.03259,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"b44d0ace-6daf-4e5e-b401-4dc31047d30c"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"53ce5d60-9f65-49b9-9692-904b6fc7256b"}},{"number":217,"base_voltage":230.0,"bustype":"PQ","angle":0.15390994022494278,"name":"Bates","magnitude":1.04847,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"9f9fb6eb-9002-454f-80ce-a92be3521435"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"14d1045e-2170-4c00-a4c5-8ae61ae3504e"}},{"number":103,"base_voltage":138.0,"bustype":"PQ","angle":-0.1258539470320591,"name":"Adler","magnitude":1.01085,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"8bda3f6a-76d3-4867-a515-9faf7dd9594a"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"760ec33f-0e16-40b1-83d3-611ca18b57c2"}},{"number":301,"base_voltage":138.0,"bustype":"PV","angle":-0.1631570436678591,"name":"Cabell","magnitude":1.0486,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"a3bf399e-3fda-477b-9082-c5166a72bc71"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"e7805c2b-9630-4b34-87e8-d0b5a623bb40"}},{"number":204,"base_voltage":138.0,"bustype":"PQ","angle":-0.23535398444000616,"name":"Bailey","magnitude":1.0189,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"641a1bc5-7300-499c-8dd6-f75b00346caa"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"b19b9db7-c9de-489c-88cd-e8a4fec6c962"}},{"number":107,"base_voltage":138.0,"bustype":"PV","angle":-0.19681606735842017,"name":"Alder","magnitude":1.03745,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"736e8533-e80a-45ed-b719-ed593b52e071"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"75b06801-17ca-491b-8a32-6eb25a0fc121"}},{"number":311,"base_voltage":230.0,"bustype":"PQ","angle":-0.10019394183631328,"name":"Cary","magnitude":1.0283,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"5a179bcc-0632-4473-a17c-37b80445bb5c"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"30db3b98-0f3a-471f-b08f-a27ac385236e"}},{"number":110,"base_voltage":138.0,"bustype":"PQ","angle":-0.18536496213608536,"name":"Allen","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"39241fb2-2f85-4d2c-82a6-bb7a3afc0493"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"2b12ed8b-dc64-43c6-a49b-2a9fc5aee5fb"}},{"number":317,"base_voltage":230.0,"bustype":"PQ","angle":0.18053999941894702,"name":"Chuhsi","magnitude":1.04785,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"4fa9d853-0d34-4c9c-b143-7d2020007e2e"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"6d760d95-9e3b-4479-9d19-ced8b01ec0cc"}},{"number":215,"base_voltage":230.0,"bustype":"PV","angle":0.08087000542408246,"name":"Barton","magnitude":1.04327,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"dcfad80f-ad3b-4109-8cd3-9b58a747e5cc"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"2a819bf6-ce0f-4bf0-b620-d4d182bbbce8"}},{"number":323,"base_voltage":230.0,"bustype":"PV","angle":0.15046692920953353,"name":"Comte","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"6c610478-0521-4753-b30d-a3dfc942bbfd"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"dec913ba-7834-4fdd-b6aa-ab87ad7f903c"}},{"number":201,"base_voltage":138.0,"bustype":"PV","angle":-0.18657098464921346,"name":"Bach","magnitude":1.04841,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"cf0865e3-e927-4e3d-9e72-5a383e6ea5d1"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"b19b9db7-c9de-489c-88cd-e8a4fec6c962"}},{"number":303,"base_voltage":138.0,"bustype":"PQ","angle":-0.14969497008137647,"name":"Caesar","magnitude":1.01045,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"755f3ba4-6743-4525-be76-5bd5b84c9c9f"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"e7805c2b-9630-4b34-87e8-d0b5a623bb40"}},{"number":307,"base_voltage":138.0,"bustype":"PV","angle":-0.21900304187562247,"name":"Carew","magnitude":1.03804,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"bed5979f-04a2-41d1-a5cb-2cec3a2eb58d"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"1fe6c315-d60a-4d51-b6c3-d41a599e8a93"}},{"number":205,"base_voltage":138.0,"bustype":"PQ","angle":-0.23757194885344055,"name":"Bain","magnitude":1.03603,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"249c430d-30f4-44a8-be0a-645fd6373308"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"b19b9db7-c9de-489c-88cd-e8a4fec6c962"}},{"number":315,"base_voltage":230.0,"bustype":"PV","angle":0.12306107116301779,"name":"Chase","magnitude":1.043,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"657eb7a1-3bf7-4e34-a990-02b4aed96447"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"7263b605-51dc-4150-b631-023e3ce6f6f9"}},{"number":222,"base_voltage":230.0,"bustype":"PV","angle":0.28679302628648384,"name":"Bell","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"0b2611cb-8f81-4c83-b76c-52a86b2fc6bd"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"14d1045e-2170-4c00-a4c5-8ae61ae3504e"}},{"number":308,"base_voltage":138.0,"bustype":"PQ","angle":-0.26499107140227146,"name":"Carrel","magnitude":1.01056,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"d5e86284-9814-474a-b96a-7718de7b02f1"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"1fe6c315-d60a-4d51-b6c3-d41a599e8a93"}},{"number":109,"base_voltage":138.0,"bustype":"PQ","angle":-0.15385496235350493,"name":"Ali","magnitude":1.0261,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"40950320-5f66-421e-9afd-417fc12b8159"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"2b12ed8b-dc64-43c6-a49b-2a9fc5aee5fb"}},{"number":310,"base_voltage":138.0,"bustype":"PQ","angle":-0.2146959183475509,"name":"Caruso","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"7afbca38-9add-4107-9a7c-818aa25d363b"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"30db3b98-0f3a-471f-b08f-a27ac385236e"}},{"number":124,"base_voltage":230.0,"bustype":"PQ","angle":0.04159800285910765,"name":"Avery","magnitude":1.01155,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"f46ea643-ff48-458c-9955-7cce10eacbd5"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"0e74f99c-7f25-4c7f-a3b4-d92ca485fb69"}},{"number":116,"base_voltage":230.0,"bustype":"PV","angle":0.13210903253828157,"name":"Asser","magnitude":1.04565,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"5e8c4cb3-3911-43d9-8dda-734b341a40a2"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"0e74f99c-7f25-4c7f-a3b4-d92ca485fb69"}},{"number":122,"base_voltage":230.0,"bustype":"PV","angle":0.33073605352857105,"name":"Aubrey","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"b6249035-3f9d-4bd7-a943-43f5c36148af"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"2d7132ba-521c-4f02-8a46-23b5fb0f8c50"}},{"number":211,"base_voltage":230.0,"bustype":"PQ","angle":-0.12100996022607405,"name":"Bardeen","magnitude":1.02735,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"d12bd072-de66-4021-ba4a-9b59e1ccdb0b"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"fd4ae8b4-1756-41ed-8b2a-baaf330664e5"}},{"number":316,"base_voltage":230.0,"bustype":"PV","angle":0.11516991401597582,"name":"Chifa","magnitude":1.04558,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"0e8c5517-4630-4e50-bb56-4abcb36b2a83"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"7263b605-51dc-4150-b631-023e3ce6f6f9"}},{"number":108,"base_voltage":138.0,"bustype":"PQ","angle":-0.23997701256268875,"name":"Alger","magnitude":1.01024,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"b020f685-db97-4b9e-a359-9b66f6974857"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"75b06801-17ca-491b-8a32-6eb25a0fc121"}},{"number":223,"base_voltage":230.0,"bustype":"PV","angle":0.125340994764898,"name":"Bloch","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"62f071cb-9649-4b48-95a6-8c49d1b8ebf8"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"c100b893-3531-43fc-b391-be81839f096e"}},{"number":104,"base_voltage":138.0,"bustype":"PQ","angle":-0.18441393222667365,"name":"Agricola","magnitude":1.01765,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"5c02ba83-3a6a-46b5-908e-474fb734d83d"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"760ec33f-0e16-40b1-83d3-611ca18b57c2"}},{"number":118,"base_voltage":230.0,"bustype":"PV","angle":0.21859498389650622,"name":"Astor","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"34a160fc-1b71-4459-80b0-046de118aad4"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"2d7132ba-521c-4f02-8a46-23b5fb0f8c50"}},{"number":105,"base_voltage":138.0,"bustype":"PQ","angle":-0.18690504066804514,"name":"Aiken","magnitude":1.03568,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"51b05554-134e-4576-abef-3059e0837cf2"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"760ec33f-0e16-40b1-83d3-611ca18b57c2"}},{"number":319,"base_voltage":230.0,"bustype":"PQ","angle":0.10324303203954738,"name":"Clay","magnitude":1.03953,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"d771a793-3387-41ac-9554-164478428e91"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"dec913ba-7834-4fdd-b6aa-ab87ad7f903c"}},{"number":213,"base_voltage":230.0,"bustype":"PV","angle":-0.05611408078086969,"name":"Barlow","magnitude":1.03752,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"45ac7ff2-133f-436a-8874-f504f8e890b3"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"09add49f-878e-45a3-b549-bc067a56042e"}},{"number":304,"base_voltage":138.0,"bustype":"PQ","angle":-0.21271793670626568,"name":"Caine","magnitude":1.01785,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"15566e3d-f34f-49a8-af5f-1e60b8282fd4"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"e7805c2b-9630-4b34-87e8-d0b5a623bb40"}},{"number":224,"base_voltage":230.0,"bustype":"PQ","angle":-0.01675603348377156,"name":"Bordet","magnitude":1.01456,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"f926d92c-a010-4f0e-a09b-9704b5976805"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"2a819bf6-ce0f-4bf0-b620-d4d182bbbce8"}},{"number":210,"base_voltage":138.0,"bustype":"PQ","angle":-0.23526793970788284,"name":"Banks","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"2e0e1eee-efa1-4b51-b5f4-a513ed0054aa"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"fd4ae8b4-1756-41ed-8b2a-baaf330664e5"}},{"number":325,"base_voltage":230.0,"bustype":"PQ","angle":0.15696304468545644,"name":"Curtiss","magnitude":1.04986,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"b3c2b7c8-07d5-4323-8da8-67d0c0b50eb4"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"dec913ba-7834-4fdd-b6aa-ab87ad7f903c"}},{"number":216,"base_voltage":230.0,"bustype":"PV","angle":0.0820320456400603,"name":"Basov","magnitude":1.04556,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"534363d0-5d67-4e13-9e82-bd37d557d825"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"2a819bf6-ce0f-4bf0-b620-d4d182bbbce8"}},{"number":209,"base_voltage":138.0,"bustype":"PQ","angle":-0.204623972300142,"name":"Balzac","magnitude":1.02781,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"e8af8eeb-c00c-46d4-9c2d-3aa1b1867484"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"fd4ae8b4-1756-41ed-8b2a-baaf330664e5"}},{"number":306,"base_voltage":138.0,"bustype":"PQ","angle":-0.26078796949761873,"name":"Camus","magnitude":1.0326,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"13e2805d-b97e-4bc2-a696-03f07d2416c2"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"1fe6c315-d60a-4d51-b6c3-d41a599e8a93"}},{"number":314,"base_voltage":230.0,"bustype":"PV","angle":-0.0559889406735017,"name":"Chain","magnitude":1.04631,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"f1f78c2d-91b0-4dfe-be16-26100aad4f5a"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"7263b605-51dc-4150-b631-023e3ce6f6f9"}},{"number":312,"base_voltage":230.0,"bustype":"PQ","angle":-0.0723620489193857,"name":"Caxton","magnitude":1.019,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"d2c7f0e8-d7b7-4b39-affb-b186b3b0dbfe"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"30db3b98-0f3a-471f-b08f-a27ac385236e"}},{"number":106,"base_voltage":138.0,"bustype":"PQ","angle":-0.23176995082103577,"name":"Alber","magnitude":1.03242,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"d7dad224-2f15-4e59-9df5-d16a9fd7fcb7"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"75b06801-17ca-491b-8a32-6eb25a0fc121"}},{"number":318,"base_voltage":230.0,"bustype":"PV","angle":0.19796606480255924,"name":"Clark","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"af951a07-2566-44f2-be2e-105749c2302f"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"6d760d95-9e3b-4479-9d19-ced8b01ec0cc"}},{"number":119,"base_voltage":230.0,"bustype":"PQ","angle":0.11620000734050288,"name":"Attar","magnitude":1.03962,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"477fbe6a-e760-4745-8a8b-0fbc102e9cd1"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"25266637-94b5-49c3-85ab-53d37710a553"}},{"number":111,"base_voltage":230.0,"bustype":"PQ","angle":-0.0683600089445627,"name":"Anna","magnitude":1.02764,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"45c03e81-5110-40c2-b744-25667a1b8a59"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"2b12ed8b-dc64-43c6-a49b-2a9fc5aee5fb"}},{"number":115,"base_voltage":230.0,"bustype":"PV","angle":0.13892297247099264,"name":"Arthur","magnitude":1.04335,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"907e4e88-4ae1-4055-bf7a-8bba429fa3c9"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"0e74f99c-7f25-4c7f-a3b4-d92ca485fb69"}},{"number":313,"base_voltage":230.0,"bustype":"PV","angle":-0.04215197036369065,"name":"Cecil","magnitude":1.03802,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"d475a657-f36a-48a0-b083-2d252ff44916"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"8f38dc3b-419f-4cb8-a1e3-801b5bb11127"}},{"number":220,"base_voltage":230.0,"bustype":"PQ","angle":0.09886400094629359,"name":"Beethoven","magnitude":1.0438,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"90c81bbc-1b9c-4e8e-b325-39cbed79de89"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"c100b893-3531-43fc-b391-be81839f096e"}},{"number":123,"base_voltage":230.0,"bustype":"PV","angle":0.15805998412033487,"name":"Austen","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"d003942b-96e7-4e0c-8575-3f734035ce4a"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"25266637-94b5-49c3-85ab-53d37710a553"}},{"number":120,"base_voltage":230.0,"bustype":"PQ","angle":0.13509895607987307,"name":"Attila","magnitude":1.04399,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"fab2cdd8-84f3-4b4b-973c-a3f104e30fb9"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"25266637-94b5-49c3-85ab-53d37710a553"}},{"number":101,"base_voltage":138.0,"bustype":"PV","angle":-0.13511501310899143,"name":"Abel","magnitude":1.04777,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"afd07468-171d-40b1-93df-ce3d4e92af2a"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"760ec33f-0e16-40b1-83d3-611ca18b57c2"}},{"number":208,"base_voltage":138.0,"bustype":"PQ","angle":-0.2831550619936269,"name":"Balch","magnitude":1.01203,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"4830b7aa-d6ab-425c-b7cf-24d1e0ad83b5"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"53ce5d60-9f65-49b9-9692-904b6fc7256b"}},{"number":309,"base_voltage":138.0,"bustype":"PQ","angle":-0.18232006072305607,"name":"Carter","magnitude":1.02579,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"77aa3a1a-6662-453e-bdef-392468c40c88"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"30db3b98-0f3a-471f-b08f-a27ac385236e"}},{"number":320,"base_voltage":230.0,"bustype":"PQ","angle":0.1256129170623587,"name":"Clive","magnitude":1.04389,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"7060bd84-1950-425c-abed-355c9ad4ee97"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"dec913ba-7834-4fdd-b6aa-ab87ad7f903c"}},{"number":221,"base_voltage":230.0,"bustype":"PV","angle":0.1855649768683639,"name":"Behring","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"9f63753a-68f9-4987-929c-3aae17e152b7"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"14d1045e-2170-4c00-a4c5-8ae61ae3504e"}},{"number":305,"base_voltage":138.0,"bustype":"PQ","angle":-0.2155490352859257,"name":"Calvin","magnitude":1.03609,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"67ce8e58-8bbc-41d0-a10f-2c538fe9e937"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"e7805c2b-9630-4b34-87e8-d0b5a623bb40"}},{"number":302,"base_voltage":138.0,"bustype":"PV","angle":-0.1646020017555852,"name":"Cabot","magnitude":1.04864,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"8f167815-24eb-4f8a-8363-e5356a10d37d"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"1fe6c315-d60a-4d51-b6c3-d41a599e8a93"}},{"number":218,"base_voltage":230.0,"bustype":"PV","angle":0.17444094634785287,"name":"Bayle","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"12996cf4-757c-4779-9a38-ed2c56964376"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"14d1045e-2170-4c00-a4c5-8ae61ae3504e"}},{"number":219,"base_voltage":230.0,"bustype":"PQ","angle":0.07351902768053274,"name":"Bede","magnitude":1.03946,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"c205c35a-daf7-486f-9102-0846480469fc"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"c100b893-3531-43fc-b391-be81839f096e"}},{"number":114,"base_voltage":230.0,"bustype":"PV","angle":-0.03020396990331307,"name":"Arnold","magnitude":1.04401,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"b3fadd0d-6cf7-4810-bc52-cec7161f1736"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"0e74f99c-7f25-4c7f-a3b4-d92ca485fb69"}},{"number":207,"base_voltage":138.0,"bustype":"PV","angle":-0.23502708427110763,"name":"Baker","magnitude":1.03973,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"3942b312-c3e4-4800-98c8-d5ad4381cfc6"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"53ce5d60-9f65-49b9-9692-904b6fc7256b"}},{"number":214,"base_voltage":230.0,"bustype":"PV","angle":-0.08177199158151313,"name":"Barry","magnitude":1.04335,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"a971e28e-77fc-4f66-bad5-1ad2b7839255"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"2a819bf6-ce0f-4bf0-b620-d4d182bbbce8"}},{"number":212,"base_voltage":230.0,"bustype":"PQ","angle":-0.09168807972671891,"name":"Barkla","magnitude":1.01921,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"8659ba8b-af91-421e-bcf4-90a4c716dde0"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"fd4ae8b4-1756-41ed-8b2a-baaf330664e5"}},{"number":113,"base_voltage":230.0,"bustype":"REF","angle":0.0,"name":"Arne","magnitude":1.03943,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"57289903-07af-401b-843a-3b3c79d00ff9"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"2e67e873-b9a7-48d5-acb3-ec3114d23d90"}},{"number":203,"base_voltage":138.0,"bustype":"PQ","angle":-0.18281503609892163,"name":"Baffin","magnitude":1.01886,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"e8fa3994-d691-4317-abf0-869d957acde3"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"b19b9db7-c9de-489c-88cd-e8a4fec6c962"}},{"number":112,"base_voltage":230.0,"bustype":"PQ","angle":-0.042310969858547334,"name":"Archer","magnitude":1.02024,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"32f4caa2-daad-423a-8a9f-c74c67610306"},"ext":null,"units_info":null},"area":{"value":"bfc719be-dd32-455b-b9f0-bb3c78e42f79"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"2b12ed8b-dc64-43c6-a49b-2a9fc5aee5fb"}},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"11.0","internal":{"uuid":{"value":"760ec33f-0e16-40b1-83d3-611ca18b57c2"},"ext":null,"units_info":null},"peak_active_power":4.33,"peak_reactive_power":0.88,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"21.0","internal":{"uuid":{"value":"b19b9db7-c9de-489c-88cd-e8a4fec6c962"},"ext":null,"units_info":null},"peak_active_power":4.33,"peak_reactive_power":0.88,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"25.0","internal":{"uuid":{"value":"c100b893-3531-43fc-b391-be81839f096e"},"ext":null,"units_info":null},"peak_active_power":3.09,"peak_reactive_power":0.63,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"32.0","internal":{"uuid":{"value":"1fe6c315-d60a-4d51-b6c3-d41a599e8a93"},"ext":null,"units_info":null},"peak_active_power":5.29,"peak_reactive_power":1.08,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"33.0","internal":{"uuid":{"value":"30db3b98-0f3a-471f-b08f-a27ac385236e"},"ext":null,"units_info":null},"peak_active_power":3.7,"peak_reactive_power":0.76,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"16.0","internal":{"uuid":{"value":"0e74f99c-7f25-4c7f-a3b4-d92ca485fb69"},"ext":null,"units_info":null},"peak_active_power":6.109999999999999,"peak_reactive_power":1.23,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"22.0","internal":{"uuid":{"value":"53ce5d60-9f65-49b9-9692-904b6fc7256b"},"ext":null,"units_info":null},"peak_active_power":5.29,"peak_reactive_power":1.08,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"34.0","internal":{"uuid":{"value":"8f38dc3b-419f-4cb8-a1e3-801b5bb11127"},"ext":null,"units_info":null},"peak_active_power":2.65,"peak_reactive_power":0.54,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"26.0","internal":{"uuid":{"value":"2a819bf6-ce0f-4bf0-b620-d4d182bbbce8"},"ext":null,"units_info":null},"peak_active_power":6.109999999999999,"peak_reactive_power":1.23,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"24.0","internal":{"uuid":{"value":"09add49f-878e-45a3-b549-bc067a56042e"},"ext":null,"units_info":null},"peak_active_power":2.65,"peak_reactive_power":0.54,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"27.0","internal":{"uuid":{"value":"14d1045e-2170-4c00-a4c5-8ae61ae3504e"},"ext":null,"units_info":null},"peak_active_power":3.33,"peak_reactive_power":0.68,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"35.0","internal":{"uuid":{"value":"dec913ba-7834-4fdd-b6aa-ab87ad7f903c"},"ext":null,"units_info":null},"peak_active_power":3.09,"peak_reactive_power":0.63,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"12.0","internal":{"uuid":{"value":"75b06801-17ca-491b-8a32-6eb25a0fc121"},"ext":null,"units_info":null},"peak_active_power":5.29,"peak_reactive_power":1.08,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"13.0","internal":{"uuid":{"value":"2b12ed8b-dc64-43c6-a49b-2a9fc5aee5fb"},"ext":null,"units_info":null},"peak_active_power":3.7,"peak_reactive_power":0.76,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"17.0","internal":{"uuid":{"value":"2d7132ba-521c-4f02-8a46-23b5fb0f8c50"},"ext":null,"units_info":null},"peak_active_power":3.33,"peak_reactive_power":0.68,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"23.0","internal":{"uuid":{"value":"fd4ae8b4-1756-41ed-8b2a-baaf330664e5"},"ext":null,"units_info":null},"peak_active_power":3.7,"peak_reactive_power":0.76,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"36.0","internal":{"uuid":{"value":"7263b605-51dc-4150-b631-023e3ce6f6f9"},"ext":null,"units_info":null},"peak_active_power":6.109999999999999,"peak_reactive_power":1.23,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"14.0","internal":{"uuid":{"value":"2e67e873-b9a7-48d5-acb3-ec3114d23d90"},"ext":null,"units_info":null},"peak_active_power":2.65,"peak_reactive_power":0.54,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"15.0","internal":{"uuid":{"value":"25266637-94b5-49c3-85ab-53d37710a553"},"ext":null,"units_info":null},"peak_active_power":3.09,"peak_reactive_power":0.63,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"31.0","internal":{"uuid":{"value":"e7805c2b-9630-4b34-87e8-d0b5a623bb40"},"ext":null,"units_info":null},"peak_active_power":4.33,"peak_reactive_power":0.88,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"37.0","internal":{"uuid":{"value":"6d760d95-9e3b-4479-9d19-ced8b01ec0cc"},"ext":null,"units_info":null},"peak_active_power":3.33,"peak_reactive_power":0.68,"time_series_container":[]}],"time_series_storage_file":"system-246c37d4-8d88-439c-8f67-103faad17fcb_time_series_storage.h5","time_series_storage_type":"InfrastructureSystems.Hdf5TimeSeriesStorage","time_series_params":{"__metadata__":{"module":"InfrastructureSystems","type":"TimeSeriesParameters"},"resolution":{"value":300000,"type":"Millisecond"},"forecast_params":{"initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":15,"type":"Minute"},"horizon":12,"count":35133,"__metadata__":{"module":"InfrastructureSystems","type":"ForecastParameters"}}}},"units_settings":{"base_value":100.0,"unit_system":"SYSTEM_BASE"},"frequency":60.0,"runchecks":true,"metadata":{"name":null,"description":null,"__metadata__":{"module":"PowerSystems","type":"SystemMetadata"}},"data_format_version":"3.0.0"} \ No newline at end of file diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb_metadata.json b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb_metadata.json new file mode 100644 index 0000000000..3b05670f8c --- /dev/null +++ b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb_metadata.json @@ -0,0 +1,74 @@ +{ + "name": "", + "description": "", + "frequency": 60, + "time_series_resolution_milliseconds": 300000, + "component_counts": [ + { + "type": "ACBus", + "count": 73 + }, + { + "type": "Arc", + "count": 109 + }, + { + "type": "Area", + "count": 1 + }, + { + "type": "FixedAdmittance", + "count": 3 + }, + { + "type": "HydroDispatch", + "count": 1 + }, + { + "type": "Line", + "count": 105 + }, + { + "type": "LoadZone", + "count": 21 + }, + { + "type": "PowerLoad", + "count": 51 + }, + { + "type": "RenewableDispatch", + "count": 29 + }, + { + "type": "RenewableFix", + "count": 31 + }, + { + "type": "TapTransformer", + "count": 15 + }, + { + "type": "ThermalStandard", + "count": 54 + }, + { + "type": "TwoTerminalHVDCLine", + "count": 1 + }, + { + "type": "VariableReserve", + "count": 4 + } + ], + "time_series_counts": [ + { + "type": "DeterministicSingleTimeSeries", + "count": 122 + }, + { + "type": "SingleTimeSeries", + "count": 122 + } + ] +} \ No newline at end of file diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb_time_series_storage.h5 b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb_time_series_storage.h5 new file mode 100644 index 0000000000..392681651e Binary files /dev/null and b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb_time_series_storage.h5 differ diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb_validation_descriptors.json b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb_validation_descriptors.json new file mode 100644 index 0000000000..ba401f09a3 --- /dev/null +++ b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/ED/system-246c37d4-8d88-439c-8f67-103faad17fcb_validation_descriptors.json @@ -0,0 +1 @@ +{"struct_validation_descriptors":[{"fields":[{"name":"variable","data_type":"VariableCost","null_value":"VariableCost((0.0, 0.0))","comment":"variable cost"},{"name":"fixed","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"fixed cost","valid_range":{"max":null,"min":0}}],"docstring":"Data Structure Operational Cost Data in two parts: fixed and variable cost.","struct_name":"TwoPartCost","supertype":"OperationalCost"},{"fields":[{"name":"variable","data_type":"VariableCost","null_value":"VariableCost((0.0, 0.0))","comment":"variable cost"},{"name":"fixed","data_type":"Float64","null_value":"0.0","comment":"fixed cost"},{"name":"start_up","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"start-up cost","valid_range":{"max":null,"min":0}},{"name":"shut_down","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"shut-down cost","valid_range":{"max":null,"min":0}}],"docstring":"Data Structure Operational Cost Data in Three parts fixed, variable cost and start - stop costs.","struct_name":"ThreePartCost","supertype":"OperationalCost"},{"fields":[{"name":"variable","default":"VariableCost((0.0, 0.0))","data_type":"VariableCost","null_value":"VariableCost((0.0, 0.0))","comment":"variable cost"},{"name":"fixed","default":"0.0","data_type":"Float64","null_value":"0.0","comment":"fixed cost"},{"name":"start_up","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"start-up cost","valid_range":{"max":null,"min":0}},{"name":"shut_down","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"shut-down cost","valid_range":{"max":null,"min":0}},{"name":"energy_shortage_cost","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Cost incurred by the model for being short of the energy target.","valid_range":{"max":null,"min":0}},{"name":"energy_surplus_cost","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Cost incurred by the model for surplus energy stored.","valid_range":{"max":null,"min":0}}],"docstring":"Data Structure for Operational Cost Data like variable cost and start - stop costs and energy storage cost.","struct_name":"StorageManagementCost","supertype":"OperationalCost"},{"fields":[{"name":"no_load","data_type":"Float64","null_value":"0.0","comment":"no load cost"},{"name":"start_up","data_type":"NamedTuple{(:hot, :warm, :cold), NTuple{3, Float64}}","null_value":"(hot = START_COST, warm = START_COST, cold = START_COST)","comment":"start-up cost at different stages of the thermal cycle. Warm is also refered as intermediate in some markets"},{"name":"shut_down","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"shut-down cost","valid_range":{"max":null,"min":0}},{"name":"variable","default":"nothing","data_type":"Union{Nothing, IS.TimeSeriesKey}","null_value":"nothing","comment":"Variable Cost TimeSeriesKey"},{"name":"ancillary_services","default":"Vector{Service}()","data_type":"Vector{Service}","null_value":"Vector{Service}()","comment":"Bids for the ancillary services"}],"docstring":"Data Structure Operational Cost to reflect market bids of energy and ancilliary services.\nCompatible with most US Market bidding mechanisms","struct_name":"MarketBidCost","supertype":"OperationalCost"},{"fields":[{"name":"variable","data_type":"VariableCost","null_value":"VariableCost((0.0, 0.0))","comment":"variable cost"},{"name":"no_load","data_type":"Float64","null_value":"0.0","comment":"no load cost"},{"name":"fixed","data_type":"Float64","null_value":"0.0","comment":"fixed cost"},{"name":"start_up","data_type":"NamedTuple{(:hot, :warm, :cold), NTuple{3, Float64}}","null_value":"(hot = START_COST, warm = START_COST, cold = START_COST)","comment":"start-up cost"},{"name":"shut_down","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"shut-down cost","valid_range":{"max":null,"min":0}}],"docstring":"Data Structure Operational Cost Data which includes fixed, variable cost, multiple start up cost and stop costs.","struct_name":"MultiStartCost","supertype":"OperationalCost"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"peak_active_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"peak_reactive_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"load_response","default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"A collection of buses for control purposes.","struct_name":"Area","supertype":"AggregationTopology"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"peak_active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"peak_reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"A collection of buses for electricity price analysis.","struct_name":"LoadZone","supertype":"AggregationTopology"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"violation_penalty","default":"INFINITE_COST","data_type":"Float64","null_value":"0.0","comment":"Penalty for violating the flow limits in the interface"},{"name":"direction_mapping","default":"Dict{String, Int}()","data_type":"Dict{String, Int}","null_value":"Dict{String, Int}()","comment":"Map to set of multiplier to the flow in the line for cases when the line has a reverse direction with respect to the interface"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"A collection of branches that make up an interface or corridor for the transfer of power.","struct_name":"TransmissionInterface","supertype":"Service"},{"inner_constructor_check":"check_bus_params","fields":[{"name":"number","data_type":"Int","null_value":"0","comment":"number associated with the bus"},{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init","comment":"the name of the bus"},{"name":"bustype","data_type":"Union{Nothing, ACBusTypes}","null_value":"nothing","comment":"bus type"},{"name":"angle","data_type":"Union{Nothing, Float64}","null_value":"0.0","validation_action":"error","comment":"angle of the bus in radians","valid_range":{"max":1.571,"min":-1.571}},{"name":"magnitude","data_type":"Union{Nothing, Float64}","null_value":"0.0","validation_action":"warn","comment":"voltage as a multiple of basevoltage","valid_range":"voltage_limits"},{"name":"voltage_limits","data_type":"Union{Nothing, MinMax}","null_value":"(min=0.0, max=0.0)","comment":"limits on the voltage variation as multiples of basevoltage"},{"name":"base_voltage","data_type":"Union{Nothing, Float64}","null_value":"nothing","validation_action":"error","comment":"the base voltage in kV","valid_range":{"max":null,"min":0}},{"name":"area","default":"nothing","data_type":"Union{Nothing, Area}","null_value":"nothing","comment":"the area containing the bus"},{"name":"load_zone","default":"nothing","data_type":"Union{Nothing, LoadZone}","null_value":"nothing","comment":"the load zone containing the bus"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"A power-system bus.","struct_name":"ACBus","supertype":"Bus"},{"fields":[{"name":"number","data_type":"Int","null_value":"0","comment":"number associated with the DC bus"},{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init","comment":"the name of the DC bus"},{"name":"magnitude","data_type":"Union{Nothing, Float64}","null_value":"0.0","validation_action":"warn","comment":"voltage as a multiple of basevoltage","valid_range":"voltage_limits"},{"name":"voltage_limits","data_type":"Union{Nothing, MinMax}","null_value":"(min=0.0, max=0.0)","comment":"limits on the voltage variation as multiples of basevoltage"},{"name":"base_voltage","data_type":"Union{Nothing, Float64}","null_value":"nothing","validation_action":"error","comment":"the base voltage in kV","valid_range":{"max":null,"min":0}},{"name":"area","default":"nothing","data_type":"Union{Nothing, Area}","null_value":"nothing","comment":"the area containing the DC bus"},{"name":"load_zone","default":"nothing","data_type":"Union{Nothing, LoadZone}","null_value":"nothing","comment":"the load zone containing the DC bus"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"A power-system DC bus.","struct_name":"DCBus","supertype":"Bus"},{"fields":[{"name":"from","data_type":"Bus","null_value":"ACBus(nothing)","comment":"The initial bus"},{"name":"to","data_type":"Bus","null_value":"ACBus(nothing)","comment":"The terminal bus"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"A topological Arc.","struct_name":"Arc","supertype":"Topology","custom_code":"get_name(arc::Arc) = (get_name ∘ get_from)(arc) * \" -> \" * (get_name ∘ get_to)(arc)"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(ACBus(nothing), ACBus(nothing))"},{"name":"r","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":0}},{"name":"x","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":0}},{"name":"b","data_type":"FromTo","null_value":"(from=0.0, to=0.0)","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":100,"min":0}},{"name":"rate","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"angle_limits","data_type":"MinMax","null_value":"(min=-1.571, max=1.571)","validation_action":"error","valid_range":{"max":1.571,"min":-1.571}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"Line","supertype":"ACBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(ACBus(nothing), ACBus(nothing))"},{"name":"r","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":0}},{"name":"x","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":0}},{"name":"b","data_type":"FromTo","null_value":"(from=0.0, to=0.0)","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":2,"min":0}},{"name":"flow_limits","needs_conversion":true,"data_type":"FromTo_ToFrom","null_value":"(from_to=0.0, to_from=0.0)","comment":"throw warning above max SIL"},{"name":"rate","needs_conversion":true,"data_type":"Float64","null_value":"0.0","comment":"compare to SIL (warn) (theoretical limit)"},{"name":"angle_limits","data_type":"MinMax","null_value":"(min=-1.571, max=1.571)","validation_action":"error","valid_range":{"max":1.571,"min":-1.571}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"MonitoredLine","supertype":"ACBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(ACBus(nothing), ACBus(nothing))"},{"name":"r","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":0}},{"name":"x","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":-2}},{"name":"primary_shunt","Comment":"System per-unit value","data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":{"max":2,"min":0}},{"name":"tap","data_type":"Float64","null_value":"1.0","validation_action":"error","valid_range":{"max":2,"min":0}},{"name":"α","data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":{"max":1.571,"min":-1.571}},{"name":"rate","needs_conversion":true,"data_type":"Union{Nothing, Float64}","null_value":"0.0","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"phase_angle_limits","default":"(min=-1.571, max=1.571)","data_type":"MinMax","null_value":"(min=-1.571, max=1.571)","validation_action":"error","valid_range":{"max":1.571,"min":-1.571}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"PhaseShiftingTransformer","supertype":"ACBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(ACBus(nothing), ACBus(nothing))"},{"name":"r","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":2,"min":-2}},{"name":"x","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":-2}},{"name":"primary_shunt","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":2,"min":0}},{"name":"tap","data_type":"Float64","null_value":"1.0","validation_action":"error","valid_range":{"max":2,"min":0}},{"name":"rate","needs_conversion":true,"data_type":"Union{Nothing, Float64}","null_value":"0.0","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"TapTransformer","supertype":"ACBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(ACBus(nothing), ACBus(nothing))"},{"name":"r","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":-2}},{"name":"x","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":-2}},{"name":"primary_shunt","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":2,"min":0}},{"name":"rate","needs_conversion":true,"data_type":"Union{Nothing, Float64}","null_value":"nothing","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"The 2-W transformer model uses an equivalent circuit assuming the impedance is on the High Voltage Side of the transformer. The model allocates the iron losses and magnetizing susceptance to the primary side.","struct_name":"Transformer2W","supertype":"ACBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(ACBus(nothing), ACBus(nothing))"},{"name":"active_power_limits_from","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"active_power_limits_to","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"reactive_power_limits_from","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"reactive_power_limits_to","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"loss","data_type":"NamedTuple{(:l0, :l1), Tuple{Float64, Float64}}","null_value":"(l0=0.0, l1=0.0)"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"a High voltage DC line.","struct_name":"TwoTerminalHVDCLine","supertype":"ACBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(ACBus(nothing), ACBus(nothing))"},{"name":"rectifier_tap_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"rectifier_xrc","data_type":"Float64","null_value":"0.0"},{"name":"rectifier_firing_angle","data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"inverter_tap_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"inverter_xrc","data_type":"Float64","null_value":"0.0"},{"name":"inverter_firing_angle","data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"As implemented in Milano's Book, Page 397.","struct_name":"TwoTerminalVSCDCLine","supertype":"ACBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(DCBus(nothing), DCBus(nothing))"},{"name":"r","data_type":"Float64","null_value":"0.0","comment":"Series Resistance system per-unit value"},{"name":"l","data_type":"Float64","null_value":"0.0","comment":"Series Inductance system per-unit value"},{"name":"c","data_type":"Float64","null_value":"0.0","comment":"Shunt capacitance system per-unit value"},{"name":"active_power_limits_from","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"active_power_limits_to","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"a HVDC T-Model DC line.","struct_name":"TModelHVDCLine","supertype":"DCBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"max_active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"max_reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"operation_cost","data_type":"TwoPartCost","null_value":"TwoPartCost(nothing)","comment":"Operation Cost of Generation [`TwoPartCost`](@ref)"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"InterruptiblePowerLoad","supertype":"ControllableLoad"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"Y","data_type":"Complex{Float64}","null_value":"0.0","comment":"System per-unit value"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection model for admittance"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"FixedAdmittance","supertype":"ElectricLoad"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"Y","data_type":"Complex{Float64}","null_value":"0.0","comment":"Initial impedance at N = 0"},{"name":"number_of_steps","default":"0","data_type":"Int","null_value":"0","comment":"Number of steps for adjustable shunt"},{"name":"Y_increase","default":"0","data_type":"Complex{Float64}","null_value":"0","comment":"Admittance increment for each of step increase"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection model for admittance"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"SwitchedAdmittance","supertype":"ElectricLoad"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"max_active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"max_reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data structure for a static power load.","struct_name":"PowerLoad","supertype":"StaticLoad"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"constant_active_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"constant_reactive_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"impedance_active_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"impedance_reactive_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"current_active_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"current_reactive_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"max_constant_active_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"max_constant_reactive_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"max_impedance_active_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"max_impedance_reactive_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"max_current_active_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"max_current_reactive_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data structure for a standard load.","struct_name":"StandardLoad","supertype":"StaticLoad"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"active_power_coefficient","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Coefficient relating voltage dependence for power P = P0 * V^α","valid_range":{"max":null,"min":0}},{"name":"reactive_power_coefficient","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Coefficient relating voltage dependence for power Q = Q0 * V^β","valid_range":{"max":null,"min":0}},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"max_active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"max_reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data structure for a static exponential load.","struct_name":"ExponentialLoad","supertype":"StaticLoad"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"R_s","data_type":"Float64","null_value":0,"comment":"Armature stator resistance","valid_range":{"max":null,"min":0}},{"name":"R_r","data_type":"Float64","null_value":0,"comment":"Rotor resistance","valid_range":{"max":null,"min":0}},{"name":"X_ls","data_type":"Float64","null_value":0,"comment":"Stator Leakage Reactance","valid_range":{"max":null,"min":0}},{"name":"X_lr","data_type":"Float64","null_value":0,"comment":"Rotor Leakage Reactance","valid_range":{"max":null,"min":0}},{"name":"X_m","data_type":"Float64","null_value":0,"comment":"Stator-Rotor Mutual Reactance","valid_range":{"max":null,"min":0}},{"name":"H","data_type":"Float64","null_value":0,"comment":"Motor Inertia Constant [s]","valid_range":{"max":null,"min":0}},{"name":"A","data_type":"Float64","null_value":"0.0","comment":"Torque-Speed Quadratic Term","valid_range":{"max":1,"min":0}},{"name":"B","data_type":"Float64","null_value":"0.0","comment":"Torque-Speed Linear Term","valid_range":{"max":1,"min":0}},{"name":"base_power","data_type":"Float64","null_value":0,"comment":"Base power","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"C","data_type":"Float64","comment":"Torque-Speed Constant Term","internal_default":"PowerSystems.calculate_IM_torque_params(A, B)"},{"name":"τ_ref","data_type":"Float64","comment":"Reference torque parameter","internal_default":"1.0"},{"name":"B_shunt","data_type":"Float64","comment":"Susceptance Initialization Corrector Term","internal_default":"0.0"},{"name":"X_ad","data_type":"Float64","comment":"Equivalent d-axis reactance","internal_default":"(1.0 / X_m + 1.0 / X_ls + 1.0 / X_lr)^(-1)"},{"name":"X_aq","data_type":"Float64","comment":"Equivalent q-axis reactance","internal_default":"X_ad"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tψ_qs: stator flux in the q-axis,\n\tψ_ds: stator flux in the d-axis,\n\tψ_qr: rotor flux in the q-axis,\n\tψ_dr: rotor flux in the d-axis, \n\tωr: Rotor speed [pu],","internal_default":"[:ψ_qs, :ψ_ds, :ψ_qr, :ψ_dr, :ωr]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SingleCageInductionMachine has 5 states","internal_default":5},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 5-states three-phase single cage induction machine with quadratic torque-speed relationship.","struct_name":"SingleCageInductionMachine","supertype":"DynamicInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"R_s","data_type":"Float64","null_value":0,"comment":"Armature stator resistance","valid_range":{"max":null,"min":0}},{"name":"R_r","data_type":"Float64","null_value":0,"comment":"Rotor resistance","valid_range":{"max":null,"min":0}},{"name":"X_ls","data_type":"Float64","null_value":0,"comment":"Stator Leakage Reactance","valid_range":{"max":null,"min":0}},{"name":"X_lr","data_type":"Float64","null_value":0,"comment":"Rotor Leakage Reactance","valid_range":{"max":null,"min":0}},{"name":"X_m","data_type":"Float64","null_value":0,"comment":"Stator-Rotor Mutual Reactance","valid_range":{"max":null,"min":0}},{"name":"H","data_type":"Float64","null_value":0,"comment":"Motor Inertia Constant [s]","valid_range":{"max":null,"min":0}},{"name":"A","data_type":"Float64","null_value":"0.0","comment":"Torque-Speed Quadratic Term","valid_range":{"max":1,"min":0}},{"name":"B","data_type":"Float64","null_value":"0.0","comment":"Torque-Speed Linear Term","valid_range":{"max":1,"min":0}},{"name":"base_power","data_type":"Float64","null_value":0,"comment":"Base power","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"C","data_type":"Float64","comment":"Torque-Speed Constant Term","internal_default":"PowerSystems.calculate_IM_torque_params(A, B)"},{"name":"τ_ref","data_type":"Float64","comment":"Reference torque parameter","internal_default":"1.0"},{"name":"B_shunt","data_type":"Float64","comment":"Susceptance Initialization Corrector Term","internal_default":"0.0"},{"name":"X_ss","data_type":"Float64","comment":"Stator self reactance","internal_default":"X_ls + X_m"},{"name":"X_rr","data_type":"Float64","comment":"Rotor self reactance","internal_default":"X_lr + X_m"},{"name":"X_p","data_type":"Float64","comment":"Transient reactance","internal_default":"X_ss - X_m^2 / X_rr"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tψ_qr: rotor flux in the q-axis,\n\tψ_dr: rotor flux in the d-axis, \n\tωr: Rotor speed [pu],","internal_default":"[:ψ_qr, :ψ_dr, :ωr]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SimplifiedSingleCageInductionMachine has 3 states","internal_default":3},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 3-states three-phase single cage induction machine with quadratic torque-speed relationship.","struct_name":"SimplifiedSingleCageInductionMachine","supertype":"DynamicInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"a","data_type":"Float64","null_value":0,"comment":"Active power static exponential coefficient","valid_range":{"max":null,"min":0}},{"name":"b","data_type":"Float64","null_value":0,"comment":"Reactive power static exponential coefficient","valid_range":{"max":null,"min":0}},{"name":"α","data_type":"Float64","null_value":0,"comment":"Active power transient exponential coefficient","valid_range":{"max":null,"min":0}},{"name":"β","data_type":"Float64","null_value":0,"comment":"Reactive power transient exponential coefficient","valid_range":{"max":null,"min":0}},{"name":"T_p","data_type":"Float64","null_value":0,"comment":"Active Power Time Constant","valid_range":{"max":null,"min":0}},{"name":"T_q","data_type":"Float64","null_value":0,"comment":"Reactive Power Time Constant","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"base_power","data_type":"Float64","comment":"Base Power","internal_default":"100.0"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tx_p: Integrator state of the active power,\n\tx_q: Integrator state of the reactive power,","internal_default":"[:x_p, :x_q]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"DynamicExponentialLoad has 2 states","internal_default":2},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 2-states of a generic dynamic load model based on VOLTAGE STABILITY ANALYSIS USING GENERIC DYNAMIC LOAD MODELS by W. Xu and Y. Mansour, IEEE Transactions on Power Systems, 1994.","struct_name":"DynamicExponentialLoad","supertype":"DynamicInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"r_load","data_type":"Float64","null_value":0,"comment":"DC-side resistor","valid_range":{"max":null,"min":0}},{"name":"c_dc","data_type":"Float64","null_value":0,"comment":"DC-side capacitor","valid_range":{"max":null,"min":0}},{"name":"rf","data_type":"Float64","null_value":0,"comment":"Converter side filter resistance","valid_range":{"max":null,"min":0}},{"name":"lf","data_type":"Float64","null_value":0,"comment":"Converter side filter inductance","valid_range":{"max":null,"min":0}},{"name":"cf","data_type":"Float64","null_value":0,"comment":"AC Converter filter capacitance","valid_range":{"max":null,"min":0}},{"name":"rg","data_type":"Float64","null_value":0,"comment":"Network side filter resistance","valid_range":{"max":null,"min":0}},{"name":"lg","data_type":"Float64","null_value":0,"comment":"Network side filter inductance","valid_range":{"max":null,"min":0}},{"name":"kp_pll","data_type":"Float64","null_value":0,"comment":"Proportional constant for PI-PLL block","valid_range":{"max":null,"min":0}},{"name":"ki_pll","data_type":"Float64","null_value":0,"comment":"Integral constant for PI-PLL block","valid_range":{"max":null,"min":0}},{"name":"kpv","data_type":"Float64","null_value":0,"comment":"Proportional constant for Voltage Control block","valid_range":{"max":null,"min":0}},{"name":"kiv","data_type":"Float64","null_value":0,"comment":"Integral constant for Voltage Control block","valid_range":{"max":null,"min":0}},{"name":"kpc","data_type":"Float64","null_value":0,"comment":"Proportional constant for Current Control block","valid_range":{"max":null,"min":0}},{"name":"kic","data_type":"Float64","null_value":0,"comment":"Integral constant for Current Control block","valid_range":{"max":null,"min":0}},{"name":"base_power","data_type":"Float64","null_value":0,"comment":"Base power","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"P_ref","data_type":"Float64","comment":"Reference active power parameter","internal_default":"1.0"},{"name":"Q_ref","data_type":"Float64","comment":"Reference reactive power parameter","internal_default":"1.0"},{"name":"V_ref","data_type":"Float64","comment":"Reference voltage parameter","internal_default":"1.0"},{"name":"ω_ref","data_type":"Float64","comment":"Reference frequency parameter","internal_default":"1.0"},{"name":"is_filter_differential","data_type":"Int","comment":"Boolean to decide if filter states are differential or algebraic","internal_default":"1"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tθ_pll: PLL deviation angle, \n\tϵ_pll: PLL integrator state, \n\tη: DC-voltage controller integrator state, \n\tv_dc: DC voltage at the capacitor, \n\tγd: d-axis Current controller integrator state, \n\tγq: q-axis Current controller integrator state, \n\tir_cnv: Real current out of the converter,\n\tii_cnv: Imaginary current out of the converter,\n\tvr_filter: Real voltage at the filter's capacitor,\n\tvi_filter: Imaginary voltage at the filter's capacitor,\n\tir_filter: Real current out of the filter,\n\tii_filter: Imaginary current out of the filter","internal_default":"[:θ_pll, :ϵ_pll, :η, :v_dc, :γd, :γq, :ir_cnv, :ii_cnv, :vr_filter, :vi_filter, :ir_filter, :ii_filter]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ActiveConstantPowerLoad has 12 states","internal_default":12},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 12-states active power load based on the paper Dynamic Stability of a Microgrid With an Active Load from N. Bottrell, M. Prodanovic and T. Green in IEEE Transactions on Power Electronics, 2013.","struct_name":"ActiveConstantPowerLoad","supertype":"DynamicInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"dc_bus","data_type":"DCBus","null_value":"DCBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Active Power on the DCSide","valid_range":"active_power_limits"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the converter. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the converter in MVA","valid_range":{"max":null,"min":0}},{"name":"operation_cost","default":"TwoPartCost(0.0, 0.0)","data_type":"OperationalCost","null_value":"TwoPartCost(nothing)","comment":"Operation Cost of Generation [`OperationalCost`](@ref)"},{"name":"efficiency","default":"1.0","data_type":"Float64","null_value":"0.0","comment":"Conversion efficiency from AC Power to DC Power"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Interconnecting Power Converter (IPC) for transforming power from an ACBus to a DCBus","struct_name":"InterconnectingConverter","supertype":"StaticInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"K","data_type":"Float64","null_value":0,"comment":"Gain in pu","valid_range":{"max":null,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"comment":"Time constant in s","valid_range":{"max":null,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"comment":"Time constant in s","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"comment":"Time constant in s","valid_range":{"max":null,"min":"eps()"}},{"name":"T4","data_type":"Float64","null_value":0,"comment":"Time constant in s","valid_range":{"max":null,"min":0}},{"name":"T5","data_type":"Float64","null_value":0,"comment":"Time constant in s","valid_range":{"max":null,"min":0}},{"name":"Rmin","data_type":"Float64","null_value":0,"comment":"Reactor minimum Mvar","valid_range":{"max":null,"min":0}},{"name":"Vmax","data_type":"Float64","null_value":0,"comment":"Maximum voltage in pu","valid_range":{"max":null,"min":0}},{"name":"Vmin","data_type":"Float64","null_value":0,"comment":"Minimum voltage in pu","valid_range":{"max":null,"min":0}},{"name":"CBase","data_type":"Float64","null_value":0,"comment":"Capacitor Mvar","valid_range":{"max":null,"min":0}},{"name":"base_power","data_type":"Float64","null_value":0,"comment":"Base power","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"R_th","data_type":"Float64","comment":"Source Thevenin resistance","internal_default":"0.0"},{"name":"X_th","data_type":"Float64","comment":"Source Thevenin reactance","internal_default":"0.0"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tthy: thyristor,\n\tvr1: regulator output 1,\n\tvr2: regulator output 2","internal_default":"[:thy, :vr1, :vr2]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"CSVGN1 has 3 states","internal_default":3},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of static shunt compensator: CSVGN1 in PSSE","struct_name":"CSVGN1","supertype":"DynamicInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"reactive_power_limits"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the unit. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.HY","comment":"Prime mover technology according to EIA 923"},{"name":"active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"nothing","validation_action":"warn"},{"name":"ramp_limits","needs_conversion":true,"data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"ramp up and ramp down limits in MW (in component base per unit) per minute","valid_range":{"max":null,"min":0}},{"name":"time_limits","data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"Minimum up and Minimum down time limits in hours","valid_range":{"max":null,"min":0}},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"storage_capacity","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Maximum storage capacity in the reservoir (units can be p.u-hr or m^3).","valid_range":{"max":null,"min":0}},{"name":"inflow","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Baseline inflow into the reservoir (units can be p.u. or m^3/hr)","valid_range":{"max":null,"min":0}},{"name":"initial_storage","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Initial storage capacity in the reservoir (units can be p.u-hr or m^3).","valid_range":{"max":null,"min":0}},{"name":"operation_cost","default":"TwoPartCost(0.0, 0.0)","data_type":"OperationalCost","null_value":"TwoPartCost(nothing)","comment":"Operation Cost of Generation [`OperationalCost`](@ref)"},{"name":"storage_target","default":"1.0","data_type":"Float64","null_value":"0.0","comment":"Storage target at the end of simulation as ratio of storage capacity."},{"name":"conversion_factor","default":"1.0","data_type":"Float64","null_value":"0.0","comment":"Conversion factor from flow/volume to energy: m^3 -> p.u-hr."},{"name":"time_at_status","default":"INFINITE_TIME","data_type":"Float64","null_value":"INFINITE_TIME"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"HydroEnergyReservoir","supertype":"HydroGen"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"reactive_power_limits"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the unit. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.HY","comment":"Prime mover technology according to EIA 923"},{"name":"active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"warn","valid_range":{"max":null,"min":0}},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"nothing","validation_action":"warn"},{"name":"ramp_limits","needs_conversion":true,"data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"ramp up and ramp down limits in MW (in component base per unit) per minute","valid_range":{"max":null,"min":0}},{"name":"time_limits","data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"Minimum up and Minimum down time limits in hours","valid_range":{"max":null,"min":0}},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"operation_cost","default":"TwoPartCost(0.0, 0.0)","data_type":"OperationalCost","null_value":"TwoPartCost(nothing)","comment":"Operation Cost of Generation [`OperationalCost`](@ref)"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"HydroDispatch","supertype":"HydroGen"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the unit. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.HY","comment":"Prime mover technology according to EIA 923"},{"name":"active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"warn","valid_range":{"max":null,"min":0}},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"nothing","validation_action":"warn"},{"name":"ramp_limits","needs_conversion":true,"data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"ramp up and ramp down limits in MW (in component base per unit) per minute","valid_range":{"max":null,"min":0}},{"name":"time_limits","data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"Minimum up and Minimum down time limits in hours","valid_range":{"max":null,"min":0}},{"name":"rating_pump","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Withdrawl of the pump. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"active_power_limits_pump","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"reactive_power_limits_pump","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"nothing","validation_action":"warn"},{"name":"ramp_limits_pump","needs_conversion":true,"data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"ramp up and ramp down limits in MW (in component base per unit) per minute of pump","valid_range":{"max":null,"min":0}},{"name":"time_limits_pump","data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"Minimum up and Minimum down time limits of pump in hours","valid_range":{"max":null,"min":0}},{"name":"storage_capacity","needs_conversion":true,"data_type":"UpDown","null_value":"(up=0.0, down=0.0)","validation_action":"error","comment":"Maximum storage capacity in the upper and lower reservoirs (units can be p.u-hr or m^3).","valid_range":{"max":null,"min":0}},{"name":"inflow","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Baseline inflow into the upper reservoir (units can be p.u. or m^3/hr)","valid_range":{"max":null,"min":0}},{"name":"outflow","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Baseline outflow from the lower reservoir (units can be p.u. or m^3/hr)","valid_range":{"max":null,"min":0}},{"name":"initial_storage","needs_conversion":true,"data_type":"UpDown","null_value":"(up=0.0, down=0.0)","validation_action":"error","comment":"Initial storage capacity in the upper and lower reservoir (units can be p.u-hr or m^3).","valid_range":{"max":null,"min":0}},{"name":"storage_target","default":"(up=1.0, down=1.0)","data_type":"UpDown","null_value":"(up=0.0, down=0.0)","comment":"Storage target of upper reservoir at the end of simulation as ratio of storage capacity."},{"name":"operation_cost","default":"TwoPartCost(0.0, 0.0)","data_type":"OperationalCost","null_value":"TwoPartCost(nothing)","comment":"Operation Cost of Generation [`OperationalCost`](@ref)"},{"name":"pump_efficiency","default":"1.0","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Efficiency of pump","valid_range":{"max":1,"min":0}},{"name":"conversion_factor","default":"1.0","data_type":"Float64","null_value":"0.0","comment":"Conversion factor from flow/volume to energy: m^3 -> p.u-hr."},{"name":"time_at_status","default":"INFINITE_TIME","data_type":"Float64","null_value":"INFINITE_TIME"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"HydroPumpedStorage","supertype":"HydroGen"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the unit. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.OT","comment":"Prime mover technology according to EIA 923"},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"nothing"},{"name":"power_factor","data_type":"Float64","null_value":"1.0","validation_action":"error","valid_range":{"max":1,"min":0}},{"name":"operation_cost","data_type":"TwoPartCost","null_value":"TwoPartCost(nothing)","comment":"Operation Cost of Generation [`TwoPartCost`](@ref)"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"RenewableDispatch","supertype":"RenewableGen"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the unit. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.OT","comment":"Prime mover technology according to EIA 923"},{"name":"power_factor","data_type":"Float64","null_value":"1.0","validation_action":"error","valid_range":{"max":1,"min":0}},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for fixed renewable generation technologies.","struct_name":"RenewableFix","supertype":"RenewableGen"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"status","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"active_power_limits"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"reactive_power_limits"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the unit. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"warn","valid_range":{"max":null,"min":0}},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"nothing"},{"name":"ramp_limits","needs_conversion":true,"data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"ramp up and ramp down limits in MW (in component base per unit) per minute","valid_range":{"max":null,"min":0}},{"name":"operation_cost","data_type":"OperationalCost","null_value":"ThreePartCost(nothing)"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"time_limits","default":"nothing","data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"Minimum up and Minimum down time limits in hours","valid_range":{"max":null,"min":0}},{"name":"must_run","default":"false","data_type":"Bool","null_value":"false"},{"name":"prime_mover_type","default":"PrimeMovers.OT","data_type":"PrimeMovers","null_value":"PrimeMovers.OT","comment":"Prime mover technology according to EIA 923"},{"name":"fuel","default":"ThermalFuels.OTHER","data_type":"ThermalFuels","null_value":"ThermalFuels.OTHER","comment":"Prime mover fuel according to EIA 923"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"time_at_status","default":"INFINITE_TIME","data_type":"Float64","null_value":"INFINITE_TIME"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for thermal generation technologies.","struct_name":"ThermalStandard","supertype":"ThermalGen"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"status","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"active_power_limits"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"reactive_power_limits"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the unit. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.OT","comment":"Prime mover technology according to EIA 923"},{"name":"fuel","data_type":"ThermalFuels","null_value":"ThermalFuels.OTHER","comment":"Prime mover fuel according to EIA 923"},{"name":"active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"nothing"},{"name":"ramp_limits","needs_conversion":true,"data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"power_trajectory","needs_conversion":true,"data_type":"Union{Nothing, StartUpShutDown}","null_value":"nothing","validation_action":"error","comment":"Power trajectory the unit will take during the start-up and shut-down ramp process","valid_range":{"max":null,"min":0}},{"name":"time_limits","data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"Minimum up and Minimum down time limits in hours","valid_range":{"max":null,"min":0}},{"name":"start_time_limits","data_type":"Union{Nothing, NamedTuple{(:hot, :warm, :cold), Tuple{Float64, Float64, Float64}}}","null_value":"nothing","comment":" Time limits for start-up based on turbine temperature in hours"},{"name":"start_types","data_type":"Int","null_value":"1","validation_action":"error","comment":" Number of start-up based on turbine temperature","valid_range":{"max":3,"min":1}},{"name":"operation_cost","data_type":"OperationalCost","null_value":"MultiStartCost(nothing)"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"time_at_status","default":"INFINITE_TIME","data_type":"Float64","null_value":"INFINITE_TIME"},{"name":"must_run","default":"false","data_type":"Bool","null_value":"false"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for thermal generation technologies.","struct_name":"ThermalMultiStart","supertype":"ThermalGen"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.BA","comment":"Prime mover technology according to EIA 923"},{"name":"initial_energy","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"State of Charge of the Battery p.u.-hr","valid_range":{"max":null,"min":0}},{"name":"state_of_charge_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"error","comment":"Maximum and Minimum storage capacity in p.u.-hr","valid_range":{"max":null,"min":0}},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"input_active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"output_active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"efficiency","data_type":"NamedTuple{(:in, :out), Tuple{Float64, Float64}}","null_value":"(in=0.0, out=0.0)","validation_action":"warn","valid_range":{"max":1,"min":0}},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"reactive_power_limits"},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"(min=0.0, max=0.0)"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"operation_cost","default":"StorageManagementCost()","data_type":"Union{StorageManagementCost, MarketBidCost}","null_value":"StorageManagementCost()"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data structure for a generic battery","struct_name":"GenericBattery","supertype":"Storage"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.BA","comment":"Prime mover technology according to EIA 923"},{"name":"initial_energy","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"State of Charge of the Battery p.u.-hr","valid_range":{"max":null,"min":0}},{"name":"state_of_charge_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"error","comment":"Maximum and Minimum storage capacity in p.u.-hr","valid_range":{"max":null,"min":0}},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"input_active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"output_active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"efficiency","data_type":"NamedTuple{(:in, :out), Tuple{Float64, Float64}}","null_value":"(in=0.0, out=0.0)","validation_action":"warn","valid_range":{"max":1,"min":0}},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"reactive_power_limits"},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"(min=0.0, max=0.0)"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"operation_cost","default":"Union{StorageManagementCost, MarketBidCost}","data_type":"StorageManagementCost","null_value":"StorageManagementCost()"},{"name":"storage_target","default":"0.0","data_type":"Float64","null_value":"0.0","comment":"Storage target at the end of simulation as ratio of storage capacity."},{"name":"cycle_limits","default":"1e4","data_type":"Int","null_value":"0","comment":"Storage Maximum number of cycles per year"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data structure for a battery compatible with energy management formulations.","struct_name":"BatteryEMS","supertype":"Storage"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"time_frame","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the saturation time_frame in minutes to provide reserve contribution","valid_range":{"max":null,"min":0}},{"name":"requirement","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the static value of required reserves in system p.u.","valid_range":{"max":null,"min":0}},{"name":"sustained_time","default":"3600.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the time in secounds reserve contribution must sustained at a specified level","valid_range":{"max":null,"min":0}},{"name":"max_output_fraction","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum fraction of the device's output that can be assigned to the service","valid_range":{"max":1,"min":0}},{"name":"max_participation_factor","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum limit of reserve contribution per device","valid_range":{"max":1,"min":0}},{"name":"deployed_fraction","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Fraction of ancillary services participation deployed from the assignment","valid_range":{"max":1,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for a proportional reserve product for system simulations.","parametric":"ReserveDirection","struct_name":"StaticReserve","supertype":"Reserve{T}"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"time_frame","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the saturation time_frame in minutes to provide reserve contribution","valid_range":{"max":null,"min":0}},{"name":"requirement","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the static value of required reserves in system p.u.","valid_range":{"max":null,"min":0}},{"name":"sustained_time","default":"3600.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the time in secounds reserve contribution must sustained at a specified level","valid_range":{"max":null,"min":0}},{"name":"max_output_fraction","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum fraction of the device's output that can be assigned to the service","valid_range":{"max":1,"min":0}},{"name":"max_participation_factor","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum limit of reserve contribution per device","valid_range":{"max":1,"min":0}},{"name":"deployed_fraction","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Fraction of ancillary services participation deployed from the assignment","valid_range":{"max":1,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for a non-spinning reserve product for system simulations.","struct_name":"StaticReserveNonSpinning","supertype":"ReserveNonSpinning"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"requirement","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the static value of required reserves in system p.u.","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"contributing_services","default":"Vector{Service}()","data_type":"Vector{Service}","exclude_setter":true,"null_value":"Vector{Service}()","comment":"Services that contribute for this requirement constraint"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for a group reserve product for system simulations.","parametric":"ReserveDirection","struct_name":"StaticReserveGroup","supertype":"Service"},{"fields":[{"name":"variable","data_type":"Union{Nothing, IS.TimeSeriesKey}","null_value":"nothing","comment":"Variable Cost TimeSeriesKey"},{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"time_frame","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the saturation time_frame in minutes to provide reserve contribution","valid_range":{"max":null,"min":0}},{"name":"sustained_time","default":"3600.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the time in secounds reserve contribution must sustained at a specified level","valid_range":{"max":null,"min":0}},{"name":"max_participation_factor","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum limit of reserve contribution per device","valid_range":{"max":1,"min":0}},{"name":"deployed_fraction","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Fraction of ancillary services participation deployed from the assignment","valid_range":{"max":1,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for a operating reserve with demand curve product for system simulations.","parametric":"ReserveDirection","struct_name":"ReserveDemandCurve","supertype":"Reserve{T}"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"time_frame","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the saturation time_frame in minutes to provide reserve contribution","valid_range":{"max":null,"min":0}},{"name":"requirement","data_type":"Float64","null_value":"0.0","comment":"the required quantity of the product should be scaled by a TimeSeriesData"},{"name":"sustained_time","default":"3600.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the time in secounds reserve contribution must sustained at a specified level","valid_range":{"max":null,"min":0}},{"name":"max_output_fraction","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum fraction of the device's output that can be assigned to the service","valid_range":{"max":1,"min":0}},{"name":"max_participation_factor","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum limit of reserve contribution per device","valid_range":{"max":1,"min":0}},{"name":"deployed_fraction","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Fraction of ancillary services participation deployed from the assignment","valid_range":{"max":1,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for the procurement products for system simulations.","parametric":"ReserveDirection","struct_name":"VariableReserve","supertype":"Reserve{T}"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"time_frame","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the saturation time_frame in minutes to provide reserve contribution","valid_range":{"max":null,"min":0}},{"name":"requirement","needs_conversion":true,"data_type":"Float64","null_value":"0.0","comment":"the required quantity of the product should be scaled by a TimeSeriesData"},{"name":"sustained_time","default":"14400.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the time in secounds reserve contribution must sustained at a specified level","valid_range":{"max":null,"min":0}},{"name":"max_output_fraction","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum fraction of the device's output that can be assigned to the service","valid_range":{"max":1,"min":0}},{"name":"max_participation_factor","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum limit of reserve contribution per device","valid_range":{"max":1,"min":0}},{"name":"deployed_fraction","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Fraction of ancillary services participation deployed from the assignment","valid_range":{"max":1,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for the procurement products for system simulations.","struct_name":"VariableReserveNonSpinning","supertype":"ReserveNonSpinning"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bias","data_type":"Float64","null_value":"0.0"},{"name":"K_p","data_type":"Float64","null_value":"0.0","comment":"PID Proportional Constant"},{"name":"K_i","data_type":"Float64","null_value":"0.0","comment":"PID Integral Constant"},{"name":"K_d","data_type":"Float64","null_value":"0.0","comment":"PID Derrivative Constant"},{"name":"delta_t","data_type":"Float64","null_value":"0.0","comment":"PID Discretization period [Seconds]"},{"name":"area","default":"nothing","data_type":"Union{Nothing, Area}","null_value":"Area(nothing)","comment":"the area controlled by the AGC"},{"name":"initial_ace","default":"0.0","data_type":"Float64","null_value":"0.0","comment":"PID Discretization period [Seconds]"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"AGC","supertype":"Service"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"requirement","data_type":"Float64","null_value":"0.0"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"Transfer","supertype":"Service"},{"fields":[{"name":"Vf","data_type":"Float64","null_value":0,"comment":"Fixed voltage field applied to the rotor winding","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"Fixed AVR has no states","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"null_value":0,"comment":"Fixed AVR has no states","internal_default":0},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"Fixed AVR has no states","internal_default":"Vector{StateTypes}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a AVR that returns a fixed voltage to the rotor winding","struct_name":"AVRFixed","supertype":"AVR"},{"fields":[{"name":"Kv","data_type":"Float64","null_value":0,"comment":"Proportional Gain","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVf: field voltage","internal_default":"[:Vf]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"Fixed AVR has 1 states","internal_default":1},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"Simple AVR has 1 differential states","internal_default":"[StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a simple proportional AVR in the derivative of EMF\ni.e. an integrator controller on EMF","struct_name":"AVRSimple","supertype":"AVR"},{"fields":[{"name":"Ta_Tb","data_type":"Float64","null_value":0,"comment":"Ratio of lead and lag time constants","valid_range":{"max":null,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"comment":"Lag time constant","valid_range":{"max":null,"min":"eps()"}},{"name":"K","data_type":"Float64","null_value":0,"comment":"Gain","valid_range":{"max":null,"min":0}},{"name":"Te","data_type":"Float64","null_value":0,"comment":"Field circuit time constant in s","valid_range":{"max":null,"min":0}},{"name":"V_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Field voltage limits"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\tVf: Voltage field,\tVr: Lead-lag state","internal_default":"[:Vf, :Vr]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SEXS has 2 states","internal_default":2},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"SEXS has 2 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of Simplified Excitation System Model - SEXS in PSSE","struct_name":"SEXS","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage Measurement Time Constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Gain","valid_range":{"max":500,"min":10}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Time Constant in s","valid_range":{"max":1,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage regulator limits (regulator output) (Vi_min, Vi_max)"},{"name":"Ke","data_type":"Float64","null_value":0,"comment":"Exciter constant related to self-excited field","valid_range":{"max":null,"min":0}},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter time constant, integration rate associated with exciter control","valid_range":{"max":1,"min":"eps()"}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Excitation control system stabilizer gain","valid_range":{"max":0.3,"min":"eps()"}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Excitation control system stabilizer time constant","valid_range":{"max":null,"min":"eps()"}},{"name":"switch","data_type":"Int","null_value":0,"validation_action":"error","comment":"Switch","valid_range":{"max":1,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(V) = B(V - A)^2/V"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVt: Terminal Voltage,\n\tVr1: input lead lag,\n\tVr2: Regulator Output,\n\tVf: Exciter Output, \n\tVr3: Rate feedback integrator","internal_default":"[:Vt, :Vr1, :Vr2, :Vf, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The ESDC1A has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"ESDC1A has 5 differential states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Self-excited shunt fields with the voltage regulator operating in a mode commonly termed buck-boost. \nParameters of IEEE Std 421.5 Type DC1A Excitacion System. This model corresponds to ESDC1A in PSSE and PSLF","struct_name":"ESDC1A","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage Measurement Time Constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Gain","valid_range":{"max":500,"min":10}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Time Constant in s","valid_range":{"max":1,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage regulator limits (regulator output) (Vi_min, Vi_max)"},{"name":"Ke","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter constant related to self-excited field","valid_range":{"max":1,"min":-1}},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter time constant, integration rate associated with exciter control","valid_range":{"max":2,"min":"eps()"}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Excitation control system stabilizer gain","valid_range":{"max":0.3,"min":0}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Excitation control system stabilizer time constant. Appropiate Data: 5.0 <= Tf/Kf <= 15.0","valid_range":{"max":1.5,"min":"eps()"}},{"name":"switch","data_type":"Int","null_value":0,"validation_action":"error","comment":"Switch","valid_range":{"max":1,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(V) = B(V - A)^2/V"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVt: Terminal Voltage,\n\tVr1: input lead lag,\n\tVr2: Regulator Output,\n\tVf: Exciter Output, \n\tVr3: Rate feedback integrator","internal_default":"[:Vt, :Vr1, :Vr2, :Vf, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The ESDC2A has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"ESDC2A has 5 differential states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Is used to represent field-controlled dc commutator exciters with continuously acting voltage regulators having power supplies derived from the generator or auxiliaries bus.\nParameters of IEEE Std 421.5 Type DC2A Excitacion System. This model corresponds to ESDC2A in PSSE and PSLF","struct_name":"ESDC2A","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage Measurement Time Constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Gain","valid_range":{"max":500,"min":10}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Time Constant in s","valid_range":{"max":1,"min":0}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage regulator limits (regulator output) (Vi_min, Vi_max)"},{"name":"Ke","data_type":"Float64","null_value":0,"comment":"Exciter constant related to self-excited field","valid_range":{"max":1,"min":-1}},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter time constant, integration rate associated with exciter control","valid_range":{"max":1,"min":"eps()"}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Excitation control system stabilizer gain","valid_range":{"max":0.3,"min":"eps()"}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Excitation control system stabilizer time constant. Appropiate Data: 5 <= Tf/Kf <= 15","valid_range":{"max":null,"min":"eps()"}},{"name":"switch","data_type":"Int","null_value":0,"validation_action":"error","comment":"Switch","valid_range":{"max":1,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(V) = B(V - A)^2/V"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVt: Terminal Voltage,\n\tVr: Regulator Output,\n\tVf: Exciter Output, \n\tVr3: Rate feedback integrator","internal_default":"[:Vt, :Vr1, :Vf, :Vr2]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The IEEET1 has 4 states","internal_default":4},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"IEEET1 I has 4 differential states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"1968 IEEE type 1 excitation system model","struct_name":"IEEET1","supertype":"AVR"},{"fields":[{"name":"Ka","data_type":"Float64","null_value":0,"comment":"Amplifier Gain","valid_range":{"max":null,"min":0}},{"name":"Ke","data_type":"Float64","null_value":0,"comment":"Field circuit integral deviation","valid_range":{"max":null,"min":0}},{"name":"Kf","data_type":"Float64","null_value":0,"comment":"Stabilizer Gain in s * pu/pu","valid_range":{"max":null,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"comment":"Amplifier Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Te","data_type":"Float64","null_value":0,"comment":"Field Circuit Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Tf","data_type":"Float64","null_value":0,"comment":"Stabilizer Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Tr","data_type":"Float64","null_value":0,"comment":"Voltage Measurement Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for pi controler `(Va_min, Va_max)`"},{"name":"Ae","data_type":"Float64","null_value":0,"comment":"1st ceiling coefficient","valid_range":{"max":null,"min":0}},{"name":"Be","data_type":"Float64","null_value":0,"comment":"2nd ceiling coefficient","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVf: Voltage field,\n\tVr1: Amplifier State,\n\tVr2: Stabilizing Feedback State,\n\tVm: Measured voltage","internal_default":"[:Vf, :Vr1, :Vr2, :Vm]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The AVR Type I has 4 states","internal_default":4},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"AVR Type I has 4 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of an Automatic Voltage Regulator Type I - Resembles IEEE Type DC1","struct_name":"AVRTypeI","supertype":"AVR"},{"fields":[{"name":"K0","data_type":"Float64","null_value":0,"comment":"Regulator Gain","valid_range":{"max":null,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"comment":"First Pole in s","valid_range":{"max":null,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"comment":"First zero in s","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"comment":"First Pole in s","valid_range":{"max":null,"min":0}},{"name":"T4","data_type":"Float64","null_value":0,"comment":"First zero in s","valid_range":{"max":null,"min":0}},{"name":"Te","data_type":"Float64","null_value":0,"comment":"Field Circuit Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Tr","data_type":"Float64","null_value":0,"comment":"Voltage Measurement Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for pi controler `(Va_min, Va_max)`"},{"name":"Ae","data_type":"Float64","null_value":0,"comment":"1st ceiling coefficient","valid_range":{"max":null,"min":0}},{"name":"Be","data_type":"Float64","null_value":0,"comment":"2nd ceiling coefficient","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVf: Voltage field,\n\tVr1: First Lead-Lag state,\n\tVr2: Second lead-lag state,\n\tVm: Measured voltage","internal_default":"[:Vf, :Vr1, :Vr2, :Vm]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"AVR Type II has 4 states","internal_default":4},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"AVR Type II has 4 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of an Automatic Voltage Regulator Type II - Typical static exciter model","struct_name":"AVRTypeII","supertype":"AVR"},{"fields":[{"name":"Ta_Tb","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Lead input constant ratio","valid_range":{"max":0.3,"min":0.05}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Lag input constant in s","valid_range":{"max":20,"min":5}},{"name":"K","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator Gain","valid_range":{"max":100,"min":20}},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator Time Constant","valid_range":{"max":1,"min":0}},{"name":"Efd_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Field Voltage regulator limits (regulator output) (Efd_min, Efd_max)"},{"name":"switch","data_type":"Int","null_value":0,"validation_action":"error","comment":"Switch","valid_range":{"max":1,"min":0}},{"name":"rc_rfd","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Field current capability. Set = 0 for negative current capability. Typical value 10","valid_range":{"max":10,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVr1: First integrator,\n\tVr2: Second integrator","internal_default":"[:Vr1, :Vr2]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SCRX has 2 states","internal_default":2},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"SCRX has 2 differential states","internal_default":"[StateTypes.Differential, StateTypes.Hybrid]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"This exciter is based on an IEEE type SCRX solid state exciter. The output field voltage is varied by a control system to maintain the system voltage at Vref. Please note that this exciter model has no initialization capabilities - this means that it will respond to whatever inputs it receives regardless of the state of the machine model.","struct_name":"SCRX","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator denominator (lag) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator numerator (lead) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator output gain","valid_range":{"max":1000,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"comment":"Regulator output time constant in s","valid_range":{"max":10,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for regulator output `(Va_min, Va_max)`"},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter field time constant in s","valid_range":{"max":2,"min":"eps()"}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rate feedback excitation system stabilizer gain","valid_range":{"max":0.3,"min":0}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Rate feedback time constant","valid_range":{"max":1.5,"min":"eps()"}},{"name":"Kc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rectifier loading factor proportional to commutating reactance","valid_range":{"max":1,"min":0}},{"name":"Kd","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Demagnetizing factor, function of exciter alternator reactances","valid_range":{"max":1,"min":0}},{"name":"Ke","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field proportional constant","valid_range":{"max":1,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for exciter field voltage: `(Vr_min, Vr_max)`"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(x) = B(x - A)^2/x"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVr1: Lead-lag state,\n\tVr2: Regulator output state,\n\tVe: Integrator output state,\n\tVr3: Feedback output state","internal_default":"[:Vm, :Vr1, :Vr2, :Ve, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ESAC1A has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"ESAC1A has 5 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"This excitation systems consists of an alternator main exciter feeding its output via non-controlled rectifiers.\nThe exciter does not employ self-excitation, and the voltage regulator power is taken from a source that is not affected by external transients.\nParameters of IEEE Std 421.5 Type AC1A Excitacion System. This model corresponds to ESAC1A in PSSE and PSLF","struct_name":"ESAC1A","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator denominator (lag) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator numerator (lead) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator output gain","valid_range":{"max":1000,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"comment":"Regulator output time constant in s","valid_range":{"max":10,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for regulator output `(Va_min, Va_max)`"},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter field time constant in s","valid_range":{"max":2,"min":"eps()"}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rate feedback excitation system stabilizer gain","valid_range":{"max":0.3,"min":0}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Rate feedback time constant","valid_range":{"max":1.5,"min":"eps()"}},{"name":"Kc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rectifier loading factor proportional to commutating reactance","valid_range":{"max":1,"min":0}},{"name":"Kd","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Demagnetizing factor, function of exciter alternator reactances","valid_range":{"max":1,"min":0}},{"name":"Ke","data_type":"Float64","null_value":0,"comment":"Exciter field proportional constant","valid_range":{"max":1,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for exciter field voltage: `(Vr_min, Vr_max)`"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(x) = B(x - A)^2/x"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVr1: Lead-lag state,\n\tVr2: Regulator output state,\n\tVe: Integrator output state,\n\tVr3: Feedback output state","internal_default":"[:Vm, :Vr1, :Vr2, :Ve, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"EXAC1A has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"EXAC1A has 5 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Modified ESAC1A. This excitation systems consists of an alternator main exciter feeding its output via non-controlled rectifiers.\nThe exciter does not employ self-excitation, and the voltage regulator power is taken from a source that is not affected by external transients.\nParameters of IEEE Std 421.5 Type AC1A Excitacion System. EXAC1A in PSSE and PSLF","struct_name":"EXAC1A","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator denominator (lag) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator numerator (lead) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"comment":"Regulator output gain","valid_range":{"max":1000,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator output time constant in s","valid_range":{"max":10,"min":0}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for regulator output `(Vr_min, Vr_max)`"},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter field time constant in s","valid_range":{"max":2,"min":"eps()"}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rate feedback excitation system stabilizer gain","valid_range":{"max":0.3,"min":0}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Rate feedback time constant","valid_range":{"max":1.5,"min":"eps()"}},{"name":"Kc","data_type":"Float64","null_value":0,"comment":"Rectifier loading factor proportional to commutating reactance","valid_range":{"max":1,"min":0}},{"name":"Kd","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Demagnetizing factor, function of exciter alternator reactances","valid_range":{"max":1,"min":0}},{"name":"Ke","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field proportional constant","valid_range":{"max":1,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(V) = B(V - A)^2/V"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVr1: Lead-lag state,\n\tVr2: Regulator output state,\n\tVe: Integrator output state,\n\tVr3: Feedback output state","internal_default":"[:Vm, :Vr1, :Vr2, :Ve, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"EXAC1 has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"EXAC1 has 5 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Modified ESAC1A. This excitation systems consists of an alternator main exciter feeding its output via non-controlled rectifiers.\nThe exciter does not employ self-excitation, and the voltage regulator power is taken from a source that is not affected by external transients.\nParameters of IEEE Std 421.5 Type AC1A. EXAC1 in PSSE and PSLF","struct_name":"EXAC1","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator denominator (lag) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator numerator (lead) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"comment":"Regulator output gain","valid_range":{"max":1000,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator output time constant in s","valid_range":{"max":10,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for regulator output `(Va_min, Va_max)`"},{"name":"Kb","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Second Stage regulator gain","valid_range":{"max":500,"min":"eps()"}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for exciter field voltage `(Vr_min, Vr_max)`"},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter field time constant","valid_range":{"max":2,"min":"eps()"}},{"name":"Kl","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field current limiter gain","valid_range":{"max":1.1,"min":0}},{"name":"Kh","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field current regulator feedback gain","valid_range":{"max":1.1,"min":0}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rate feedback excitation system stabilizer gain","valid_range":{"max":0.3,"min":0}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Rate feedback time constant","valid_range":{"max":null,"min":"eps()"}},{"name":"Kc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rectifier loading factor proportional to commutating reactance","valid_range":{"max":1,"min":0}},{"name":"Kd","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Demagnetizing factor, function of exciter alternator reactances","valid_range":{"max":1,"min":0}},{"name":"Ke","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field proportional constant","valid_range":{"max":1,"min":0}},{"name":"V_lr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Maximum exciter field current","valid_range":{"max":null,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(V) = B(V - A)^2/V"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVr1: Lead-lag state,\n\tVr2: Regulator output state,\n\tVe: Integrator output state,\n\tVr3: Feedback output state","internal_default":"[:Vm, :Vr1, :Vr2, :Ve, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"EXAC2 has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"EXAC2 has 5 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Modified AC2. This excitation systems consists of an alternator main exciter feeding its output via non-controlled rectifiers.\nThe exciter does not employ self-excitation, and the voltage regulator power is taken from a source that is not affected by external transients.\nParameters of IEEE Std 421.5 Type AC2A Excitacion System. The alternator main exciter is used, feeding its output via non-controlled rectifiers. The Type AC2C model is similar to that of Type AC1C except for the inclusion of exciter time constant compensation and exciter field current limiting elements. EXAC2 in PSSE and PSLF.","struct_name":"EXAC2","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator output gain","valid_range":{"max":1000,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator output lag time constant in s","valid_range":{"max":10,"min":0}},{"name":"Tk","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage Regulator lead time constant","valid_range":{"max":10,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator denominator (lag) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator numerator (lead) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for regulator output `(Va_min, Va_max)`"},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for exciter field voltage `(Vr_min, Vr_max)`"},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter field time constant","valid_range":{"max":2,"min":"eps()"}},{"name":"VFE_lim","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field current limiter reference","valid_range":{"max":20,"min":-5}},{"name":"Kh","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field current regulator feedback gain","valid_range":{"max":100,"min":0}},{"name":"VH_max","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field current limiter maximum output","valid_range":{"max":100,"min":0}},{"name":"Th","data_type":"Float64","null_value":0,"comment":"Exciter field current limiter denominator (lag) time constant","valid_range":{"max":1,"min":0}},{"name":"Tj","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field current limiter numerator (lead) time constant","valid_range":{"max":1,"min":0}},{"name":"Kc","data_type":"Float64","null_value":0,"comment":"Rectifier loading factor proportional to commutating reactance","valid_range":{"max":1,"min":0}},{"name":"Kd","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Demagnetizing factor, function of exciter alternator reactances","valid_range":{"max":2,"min":0}},{"name":"Ke","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field proportional constant","valid_range":{"max":2,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(V) = B(V - A)^2/V"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVr1: Lead-lag state,\n\tVr2: Regulator output state,\n\tVe: Integrator output state,\n\tVr3: Feedback output state","internal_default":"[:Vm, :Vr1, :Vr2, :Ve, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ESAC6A has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"ESAC6A has 5 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Hybrid]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Modified AC6A. Used to represent field-controlled alternator-rectifier excitation systems with system-supplied electronic voltage regulators. \nParameters of IEEE Std 421.5 Type AC6A Excitacion System. ESAC6A in PSSE and PSLF.","struct_name":"ESAC6A","supertype":"AVR"},{"fields":[{"name":"UEL_flags","data_type":"Int","null_value":1,"validation_action":"warn","comment":"Code input for Underexcitization limiter (UEL) entry. Not supported.","valid_range":{"max":3,"min":1}},{"name":"PSS_flags","data_type":"Int","null_value":1,"comment":"Code input for Power System Stabilizer (PSS) or (VOS) entry.","valid_range":{"max":2,"min":1}},{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.1,"min":0}},{"name":"Vi_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Voltage error limits (regulator input) (Vi_min, Vi_max)"},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"First regulator denominator (lead) time constant in s","valid_range":{"max":10,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"comment":"First regulator denominator (lag) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Tc1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Second regulator denominator (lead) time constant in s","valid_range":{"max":10,"min":0}},{"name":"Tb1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Second regulator denominator (lead) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator gain","valid_range":{"max":1000,"min":50}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for regulator output `(Va_min, Va_max)`"},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for exciter output `(Vr_min, Vr_max)`"},{"name":"Kc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rectifier loading factor proportional to commutating reactance","valid_range":{"max":0.3,"min":0}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rate feedback gain","valid_range":{"max":0.3,"min":0}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Rate feedback time constant in s","valid_range":{"max":1.5,"min":"eps()"}},{"name":"K_lr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter output current limiter gain","valid_range":{"max":5,"min":0}},{"name":"I_lr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter output current limit reference","valid_range":{"max":5,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVr1: First Lead-lag state,\n\tVr2: Second lead-lag state,\n\tVa: Regulator output state,\n\tVr3: Feedback output state","internal_default":"[:Vm, :Vr1, :Vr2, :Va, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ST1A has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"ST1A has 5 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"This excitation system supplies power through a transformer from the generator terminals and its regulated by a controlled rectifier (via thyristors).\nParameters of IEEE Std 421.5 Type ST1A Excitacion System. ESST1A in PSSE and PSLF","struct_name":"ESST1A","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator gain","valid_range":{"max":500,"min":1}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator time constant in s","valid_range":{"max":10,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for pi controler `(Vr_min, Vr_max)`"},{"name":"Ta_2","data_type":"Float64","null_value":0,"comment":"Voltage regulator time constant in s","valid_range":{"max":null,"min":0}},{"name":"Ta_3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator time constant in s","valid_range":{"max":null,"min":0}},{"name":"Ta_4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator time constant in s","valid_range":{"max":null,"min":0}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage regulator limits (regulator output) (Vi_min, Vi_max)"},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rate feedback gain","valid_range":{"max":0.3,"min":0}},{"name":"Tf_1","validation_actions":"error","data_type":"Float64","null_value":0,"comment":"Rate Feedback time constant in s","valid_range":{"max":15,"min":"eps()"}},{"name":"Tf_2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rate Feedback time constant in s","valid_range":{"max":5,"min":0}},{"name":"Efd_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Field Voltage regulator limits (regulator output) (Efd_min, Efd_max)"},{"name":"Ke","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter constant","valid_range":{"max":1,"min":0}},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter time constant","valid_range":{"max":2,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"Kp","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Potential source gain","valid_range":{"max":5,"min":0}},{"name":"Ki","data_type":"Float64","null_value":0,"comment":"current source gain","valid_range":{"max":1.1,"min":0}},{"name":"Kc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter regulation factor","valid_range":{"max":2,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(V) = B(V - A)^2/V"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVr1: First Lead-lag state,\n\tVr2: Second regulator lead-lag state,\n\tVr2: Third regulator lead-lag state \n\tVf: Exciter output \n\tVr3: First feedback integrator,\n\tVr4: second feedback integrator","internal_default":"[:Vm, :Vr1, :Vr2, :Vf, :Vr3, :Vr4]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"EXPIC1 has 6 states","internal_default":6},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"EXPIC has 6 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Hybrid]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Generic Proportional/Integral Excitation System","struct_name":"EXPIC1","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"K_pr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator propotional gain","valid_range":{"max":75,"min":0}},{"name":"K_ir","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator integral gain","valid_range":{"max":75,"min":0}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage regulator limits (Vi_min, Vi_max)"},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator time constant in s","valid_range":{"max":1,"min":0}},{"name":"K_pm","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator proportional gain output","valid_range":{"max":1.2,"min":0}},{"name":"K_im","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator integral gain output","valid_range":{"max":18,"min":0}},{"name":"Vm_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for inner loop output `(Vm_min, Vm_max)`"},{"name":"Kg","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Feedback gain constant of the inner loop field regulator","valid_range":{"max":1.1,"min":0}},{"name":"Kp","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Potential circuit (voltage) gain coefficient","valid_range":{"max":10,"min":0}},{"name":"Ki","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Compound circuit (current) gain coefficient","valid_range":{"max":1.1,"min":0}},{"name":"VB_max","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Maximum available exciter voltage","valid_range":{"max":20,"min":1}},{"name":"Kc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rectifier loading factor proportional to commutating reactance","valid_range":{"max":1,"min":0}},{"name":"Xl","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Reactance associated with potential source","valid_range":{"max":0.5,"min":0}},{"name":"θp","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Potential circuit phase angle (degrees)","valid_range":{"max":90,"min":-90}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"θp_rad","default":"θp*π*inv(180)","data_type":"Float64","null_value":0,"comment":"Potential circuit phase angle (radians)"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVt: Sensed Terminal Voltage,\n\tVr1: Regulator Integrator,\n\tVr2: Regulator Output,\n\tVm: Output integrator","internal_default":"[:Vt, :Vr1, :Vr2, :Vm]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ST4B has 4 states","internal_default":4},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"ST4B has 4 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"In these excitation systems, voltage (and also current in compounded systems) is transformed to an appropriate level. Rectifiers, either controlled or non-controlled, provide the necessary direct current for the generator field.\nParameters of IEEE Std 421.5 Type ST4B Excitacion System. ESST4B in PSSE and PSLF","struct_name":"ESST4B","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage Measurement Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Vi_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage input limits (Vi_min, Vi_max)"},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Numerator lead-lag (lead) time constant in s","valid_range":{"max":null,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Denominator lead-lag (lag) time constant in s","valid_range":{"max":null,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Gain","valid_range":{"max":null,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage regulator limits (regulator output) (Vr_min, Vr_max)"},{"name":"Kc","data_type":"Float64","null_value":0,"comment":"Current field constant limiter multiplier","valid_range":{"max":null,"min":0}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Excitation control system stabilizer gain","valid_range":{"max":0.3,"min":"eps()"}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Excitation control system stabilizer time constant","valid_range":{"max":null,"min":"eps()"}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed Terminal Voltage,\n\tVrll: Lead-Lag state,\n\tVr: Regulator Output, \n\tVfb: Feedback state","internal_default":"[:Vm, :Vrll, :Vr, :Vfb]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The EXST1 has 4 states","internal_default":4},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"IEEE Type ST1 Excitation System (PTI version)","struct_name":"EXST1","supertype":"AVR"},{"fields":[{"name":"Iflim","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"OEL Field current limit","valid_range":{"max":null,"min":0}},{"name":"d","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"OEL parameter d","valid_range":{"max":null,"min":0}},{"name":"f","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"OEL parameter f","valid_range":{"max":null,"min":0}},{"name":"Spar","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"OEL parameter Spar","valid_range":{"max":null,"min":0}},{"name":"K1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"OEL delay time constant","valid_range":{"max":null,"min":0}},{"name":"K2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"OEL parameter K2","valid_range":{"max":null,"min":0}},{"name":"Oel_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Oel integrator limits (Oel_min, Oel_max)"},{"name":"G","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"AVR Exciter Gain","valid_range":{"max":null,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Numerator lead-lag (lag) time constant in s","valid_range":{"max":null,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Denominator lead-lag (lag) time constant in s","valid_range":{"max":null,"min":0}},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"E_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage regulator limits (regulator output) (E_min, E_max)"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVll: Lead-lag internal state,\n\tVex: Exciter Output, \n\toel: OEL integrator state","internal_default":"[:Vll, :Vex, :oel]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The EX4VSA has 3 states","internal_default":3},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"IEEE Excitation System for Voltage Security Assesment","struct_name":"EX4VSA","supertype":"AVR"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"eq_p","data_type":"Float64","null_value":0,"comment":"Fixed EMF behind the impedance","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"BaseMachine has no states","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"BaseMachine has no states","internal_default":0},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a Classic Machine: GENCLS in PSSE and PSLF","struct_name":"BaseMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Armature resistance","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Td0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in d-axis per unit. Note: Xd_pp = Xq_pp","valid_range":{"max":null,"min":0}},{"name":"Xl","data_type":"Float64","null_value":0,"comment":"Stator leakage reactance","valid_range":{"max":null,"min":0}},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Saturation factor at 1 and 1.2 pu flux: S(1.0) = B(|ψ_pp|-A)^2"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"γ_d1","data_type":"Float64","comment":"γ_d1 parameter","internal_default":"(Xd_pp - Xl) / (Xd_p - Xl)"},{"name":"γ_q1","data_type":"Float64","comment":"γ_q1 parameter","internal_default":"(Xd_pp - Xl) / (Xq_p - Xl)"},{"name":"γ_d2","data_type":"Float64","comment":"γ_d2 parameter","internal_default":"(Xd_p - Xd_pp) / (Xd_p - Xl)^2"},{"name":"γ_q2","data_type":"Float64","comment":"γ_q2 parameter","internal_default":"(Xq_p - Xd_pp) / (Xq_p - Xl)^2"},{"name":"γ_qd","data_type":"Float64","comment":"γ_qd parameter","internal_default":"(Xq - Xl) / (Xd - Xl)"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\teq_p: q-axis generator voltage behind the transient reactance,\n\ted_p: d-axis generator voltage behind the transient reactance,\n\tψ_kd: flux linkage in the first equivalent damping circuit in the d-axis,\n\tψ_kq: flux linkage in the first equivalent damping circuit in the d-axis","internal_default":"[:eq_p, :ed_p, :ψ_kd, :ψ_kq]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"RoundRotorMachine has 4 states","internal_default":4},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 4-states round-rotor synchronous machine with quadratic/exponential saturation:\nIEEE Std 1110 §5.3.2 (Model 2.2). GENROU or GENROE model in PSSE and PSLF.","struct_name":"RoundRotorMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Armature resistance","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Td0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in d-axis per unit. Note: Xd_pp = Xq_pp","valid_range":{"max":null,"min":0}},{"name":"Xl","data_type":"Float64","null_value":0,"comment":"Stator leakage reactance","valid_range":{"max":null,"min":0}},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Saturation factor at 1 and 1.2 pu flux: Se(eq_p) = B(eq_p-A)^2"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"γ_d1","data_type":"Float64","comment":"γ_d1 parameter","internal_default":"(Xd_pp - Xl) / (Xd_p - Xl)"},{"name":"γ_q1","data_type":"Float64","comment":"γ_q1 parameter","internal_default":"(Xd_p - Xd_pp) / (Xd_p - Xl)"},{"name":"γ_d2","data_type":"Float64","comment":"γ_d2 parameter","internal_default":"(Xd_p - Xd_pp) / (Xd_p - Xl)^2"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\teq_p: q-axis generator voltage behind the transient reactance,\n\tψ_kd: flux linkage in the first equivalent damping circuit in the d-axis,\n\tψq_pp: phasonf of the subtransient flux linkage in the q-axis","internal_default":"[:eq_p, :ψ_kd, :ψq_pp]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SalientPoleMachine has 3 states","internal_default":3},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 3-states salient-pole synchronous machine with quadratic/exponential saturation:\nIEEE Std 1110 §5.3.1 (Model 2.1). GENSAL or GENSAE model in PSSE and PSLF.","struct_name":"SalientPoleMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Td0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tψq: q-axis stator flux,\n\tψd: d-axis stator flux,\n\teq_p: q-axis transient voltage,\n\ted_p: d-axis transient voltage,\n\teq_pp: q-axis subtransient voltage,\n\ted_pp: d-axis subtransient voltage","internal_default":"[:ψq, :ψd, :eq_p, :ed_p, :eq_pp, :ed_pp]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"AndersonFouadMachine has 6 states","internal_default":6},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 6-states synchronous machine: Anderson-Fouad model","struct_name":"AndersonFouadMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"R_f","data_type":"Float64","null_value":0,"comment":"Field rotor winding resistance in per unit","valid_range":{"max":null,"min":0}},{"name":"R_1d","data_type":"Float64","null_value":0,"comment":" Damping rotor winding resistance on d-axis in per unit. This value is denoted as RD in Machowski.","valid_range":{"max":null,"min":0}},{"name":"R_1q","data_type":"Float64","null_value":0,"comment":"Damping rotor winding resistance on q-axis in per unit. This value is denoted as RQ in Machowski.","valid_range":{"max":null,"min":0}},{"name":"L_d","data_type":"Float64","null_value":1,"comment":"Inductance of fictitious damping that represent the effect of the three-phase stator winding in the d-axis of the rotor, in per unit. This value is denoted as L_ad + L_l in Kundur (and Ld in Machowski).","valid_range":{"max":null,"min":0}},{"name":"L_q","data_type":"Float64","null_value":1,"comment":"Inductance of fictitious damping that represent the effect of the three-phase stator winding in the q-axis of the rotor, in per unit. This value is denoted as L_aq + L_l in Kundur.","valid_range":{"max":null,"min":0}},{"name":"L_ad","data_type":"Float64","null_value":2,"comment":"Mutual inductance between stator winding and rotor field (and damping) winding inductance on d-axis, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_aq","data_type":"Float64","null_value":2,"comment":"Mutual inductance between stator winding and rotor damping winding inductance on q-axis, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_f1d","data_type":"Float64","null_value":1,"comment":"Mutual inductance between rotor field winding and rotor damping winding inductance on d-axis, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_ff","data_type":"Float64","null_value":2,"comment":"Field rotor winding inductance, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_1d","data_type":"Float64","null_value":1,"comment":"Inductance of the d-axis rotor damping circuit, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_1q","data_type":"Float64","null_value":1,"comment":"Inductance of the q-axis rotor damping circuit, in per unit","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"inv_d_fluxlink","data_type":"Array{Float64,2}","comment":"Equations 3.127, 3.130, 3.131 From Kundur","internal_default":"inv([[-L_d L_ad L_ad]; [-L_ad L_ff L_f1d]; [-L_ad L_f1d L_1d]])"},{"name":"inv_q_fluxlink","data_type":"Array{Float64,2}","comment":"Equations 3.128, 3.132 From Kundur","internal_default":"inv([[-L_q L_aq]; [-L_aq L_1q]])"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tψd: d-axis stator flux,\n\tψq: q-axis stator flux,\n\tψf: field rotor flux,\n\tψ1d: d-axis rotor damping flux,\n\tψ1q: q-axis rotor damping flux","internal_default":"[:ψd, :ψq, :ψf, :ψ1d, :ψ1q]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"FullMachine has 5 states","internal_default":5},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameter of a full order flux stator-rotor model without zero sequence flux in the stator.\n The derivative of stator fluxes (ψd and ψq) is NOT neglected. Only one q-axis damping circuit is considered. All parameters are in machine per unit.\n Refer to Chapter 3 of Power System Stability and Control by P. Kundur or Chapter 11 of Power System Dynamics: Stability and Control, by J. Machowski, J. Bialek and J. Bumby, for more details.\n Note that the models are somewhat different (but equivalent) due to the different Park Transformation used in both books.","struct_name":"FullMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xl","data_type":"Float64","null_value":0,"comment":"Stator Leakage Reactance","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Td0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"γ_d1","data_type":"Float64","comment":"","internal_default":"(Xd_pp-Xl)/(Xd_p-Xl)"},{"name":"γ_q1","data_type":"Float64","comment":"","internal_default":"(Xq_pp-Xl)/(Xq_p-Xl)"},{"name":"γ_d2","data_type":"Float64","comment":"","internal_default":"(Xd_p - Xd_pp) / (Xd_p - Xl)^2"},{"name":"γ_q2","data_type":"Float64","comment":"","internal_default":"(Xq_p - Xq_pp) / (Xq_p - Xl)^2"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tψq: q-axis stator flux,\n\tψd: d-axis stator flux,\n\teq_p: q-axis transient voltage,\n\ted_p: d-axis transient voltage\n\tψd_pp: subtransient flux linkage in the d-axis\n\tψq_pp: subtransient flux linkage in the q-axis","internal_default":"[:ψq, :ψd, :eq_p, :ed_p, :ψd_pp, :ψq_pp]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SauerPaiMachine has 6 states","internal_default":6},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of synchronous machine: Sauer Pai model","struct_name":"SauerPaiMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Td0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"T_AA","data_type":"Float64","null_value":0,"comment":"Time constant of d-axis additional leakage","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"γd","data_type":"Float64","comment":"","internal_default":"((Td0_pp*Xd_pp)/(Td0_p*Xd_p) )*(Xd-Xd_p)"},{"name":"γq","data_type":"Float64","comment":"","internal_default":"((Tq0_pp*Xq_pp)/(Tq0_p*Xq_p) )*(Xq-Xq_p)"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tψq: q-axis stator flux,\n\tψd: d-axis stator flux,\n\teq_p: q-axis transient voltage,\n\ted_p: d-axis transient voltage,\n\teq_pp: q-axis subtransient voltage,\n\ted_pp: d-axis subtransient voltage","internal_default":"[:ψq, :ψd, :eq_p, :ed_p, :eq_pp, :ed_pp]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"MarconatoMachine has 6 states","internal_default":6},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 6-states synchronous machine: Marconato model","struct_name":"MarconatoMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\teq_p: q-axis transient voltage,\n\ted_p: d-axis transient voltage","internal_default":"[:eq_p, :ed_p]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"OneDOneQMachine has 2 states","internal_default":2},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 4-states synchronous machine: Simplified Marconato model\n The derivative of stator fluxes (ψd and ψq) is neglected and ωψd = ψd and\n ωψq = ψq is assumed (i.e. ω=1.0). This is standard when\n transmission network dynamics is neglected.","struct_name":"OneDOneQMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Td0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\teq_p: q-axis transient voltage,\n\ted_p: d-axis transient voltage,\n\teq_pp: q-axis subtransient voltage,\n\ted_pp: d-axis subtransient voltage","internal_default":"[:eq_p, :ed_p, :eq_pp, :ed_pp]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SimpleAFMachine has 4 states","internal_default":4},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 4-states simplified Anderson-Fouad (SimpleAFMachine) model.\n The derivative of stator fluxes (ψd and ψq) is neglected and ωψd = ψd and\n ωψq = ψq is assumed (i.e. ω=1.0). This is standard when transmission network\n dynamics is neglected.\n If transmission dynamics is considered use the full order Anderson Fouad model.","struct_name":"SimpleAFMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"R_f","data_type":"Float64","null_value":0,"comment":"Field rotor winding resistance in per unit","valid_range":{"max":null,"min":0}},{"name":"R_1d","data_type":"Float64","null_value":0,"comment":" Damping rotor winding resistance on d-axis in per unit. This value is denoted as RD in Machowski.","valid_range":{"max":null,"min":0}},{"name":"R_1q","data_type":"Float64","null_value":0,"comment":"Damping rotor winding resistance on q-axis in per unit. This value is denoted as RQ in Machowski.","valid_range":{"max":null,"min":0}},{"name":"L_d","data_type":"Float64","null_value":1,"comment":"Inductance of fictitious damping that represent the effect of the three-phase stator winding in the d-axis of the rotor, in per unit. This value is denoted as L_ad + L_l in Kundur (and Ld in Machowski).","valid_range":{"max":null,"min":0}},{"name":"L_q","data_type":"Float64","null_value":1,"comment":"Inductance of fictitious damping that represent the effect of the three-phase stator winding in the q-axis of the rotor, in per unit. This value is denoted as L_aq + L_l in Kundur.","valid_range":{"max":null,"min":0}},{"name":"L_ad","data_type":"Float64","null_value":2,"comment":"Mutual inductance between stator winding and rotor field (and damping) winding inductance on d-axis, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_aq","data_type":"Float64","null_value":1,"comment":"Mutual inductance between stator winding and rotor damping winding inductance on q-axis, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_f1d","data_type":"Float64","null_value":1,"comment":"Mutual inductance between rotor field winding and rotor damping winding inductance on d-axis, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_ff","data_type":"Float64","null_value":2,"comment":"Field rotor winding inductance, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_1d","data_type":"Float64","null_value":1,"comment":"Inductance of the d-axis rotor damping circuit, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_1q","data_type":"Float64","null_value":2,"comment":"Inductance of the q-axis rotor damping circuit, in per unit","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"inv_d_fluxlink","data_type":"Array{Float64,2}","comment":"Equations 3.127, 3.130, 3.131 From Kundur","internal_default":"inv([[-L_d L_ad L_ad]; [-L_ad L_ff L_f1d]; [-L_ad L_f1d L_1d]])"},{"name":"inv_q_fluxlink","data_type":"Array{Float64,2}","comment":"Equations 3.128, 3.132 From Kundur","internal_default":"inv([[-L_q L_aq]; [-L_aq L_1q]])"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tψf: field rotor flux,\n\tψ1d: d-axis rotor damping flux,\n\tψ1q: q-axis rotor damping flux","internal_default":"[:ψf, :ψ1d, :ψ1q]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SimpleFullMachine has 3 states","internal_default":3},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameter of a full order flux stator-rotor model without zero sequence flux in the stator.\n The derivative of stator fluxes (ψd and ψq) is neglected. This is standard when\n transmission network dynamics is neglected. Only one q-axis damping circuit\n is considered. All per unit are in machine per unit.\n Refer to Chapter 3 of Power System Stability and Control by P. Kundur or Chapter 11 of Power System Dynamics: Stability and Control, by J. Machowski, J. Bialek and J. Bumby, for more details.\n Note that the models are somewhat different (but equivalent) due to the different Park Transformation used in both books.","struct_name":"SimpleFullMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Td0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"T_AA","data_type":"Float64","null_value":0,"comment":"Time constant of d-axis additional leakage","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"γd","data_type":"Float64","comment":"","internal_default":"((Td0_pp*Xd_pp)/(Td0_p*Xd_p) )*(Xd-Xd_p)"},{"name":"γq","data_type":"Float64","comment":"","internal_default":"((Tq0_pp*Xq_pp)/(Tq0_p*Xq_p) )*(Xq-Xq_p)"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\teq_p: q-axis transient voltage,\n\ted_p: d-axis transient voltage,\n\teq_pp: q-axis subtransient voltage,\n\ted_pp: d-axis subtransient voltage","internal_default":"[:eq_p, :ed_p, :eq_pp, :ed_pp]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SimpleMarconatoMachine has 4 states","internal_default":4},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 4-states synchronous machine: Simplified Marconato model\n The derivative of stator fluxes (ψd and ψq) is neglected and ωψd = ψd and\n ωψq = ψq is assumed (i.e. ω=1.0). This is standard when transmission network\n dynamics is neglected.","struct_name":"SimpleMarconatoMachine","supertype":"Machine"},{"fields":[{"name":"V_pss","data_type":"Float64","null_value":0,"comment":"Fixed voltage stabilization signal","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"PSSFixed has no states","internal_default":0},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a PSS that returns a fixed voltage to add to the reference for the AVR","struct_name":"PSSFixed","supertype":"PSS"},{"fields":[{"name":"K_ω","data_type":"Float64","null_value":0,"comment":"Proportional gain for frequency","valid_range":{"max":null,"min":0}},{"name":"K_p","data_type":"Float64","null_value":0,"comment":"Proportional gain for active power","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"PSSSimple has no states","internal_default":0},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a PSS that returns a proportional droop voltage to add to the reference for the AVR","struct_name":"PSSSimple","supertype":"PSS"},{"fields":[{"name":"input_code","data_type":"Int","null_value":1,"validation_action":"error","comment":"Code input for stabilizer","valid_range":{"max":6,"min":1}},{"name":"remote_bus_control","data_type":"Int","null_value":0,"comment":"Remote Bus number for control."},{"name":"A1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Filter coefficient","valid_range":{"max":null,"min":0}},{"name":"A2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Filter coefficient","valid_range":{"max":null,"min":0}},{"name":"A3","data_type":"Float64","null_value":0,"comment":"Filter coefficient","valid_range":{"max":null,"min":0}},{"name":"A4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Filter coefficient","valid_range":{"max":null,"min":0}},{"name":"A5","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Filter coefficient","valid_range":{"max":null,"min":0}},{"name":"A6","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Filter coefficient","valid_range":{"max":null,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant","valid_range":{"max":10,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant","valid_range":{"max":10,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant","valid_range":{"max":10,"min":0}},{"name":"T4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant","valid_range":{"max":10,"min":0}},{"name":"T5","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant","valid_range":{"max":10,"min":0}},{"name":"T6","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Time constant","valid_range":{"max":"2.0","min":"eps()"}},{"name":"Ks","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Proportional gain","valid_range":{"max":null,"min":0}},{"name":"Ls_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"PSS output limits for regulator output `(Ls_min, Ls_max)`"},{"name":"Vcu","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Cutoff limiter upper bound","valid_range":{"max":"1.25","min":0}},{"name":"Vcl","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Cutoff limiter lower bound","valid_range":{"max":"1.0","min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tx_p1: 1st filter integration,\n\tx_p2: 2nd filter integration, \n\tx_p3: 3rd filter integration, \n\tx_p4: 4rd filter integration, \n\tx_p5: T1/T2 lead-lag integrator, \n\tx_p6: T3/T4 lead-lag integrator, \n\t:x_p7 last integer,","internal_default":"[:x_p1, :x_p2, :x_p3, :x_p4, :x_p5, :x_p6, :x_p7]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"IEEEST has 7 states","internal_default":7},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"IEEEST has 7 differential states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"IEEE Stabilizing Model PSS. ","struct_name":"IEEEST","supertype":"PSS"},{"fields":[{"name":"KT","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"K/T for washout filter","valid_range":{"max":null,"min":0}},{"name":"T","data_type":"Float64","null_value":0.01,"validation_action":"warn","comment":"Time constant for washout filter","valid_range":{"max":null,"min":0.01}},{"name":"T1T3","data_type":"Float64","null_value":0,"comment":"Time constant division T1/T3","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0.01,"validation_action":"warn","comment":"Time constant","valid_range":{"max":null,"min":0.01}},{"name":"T2T4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant division T2/T4","valid_range":{"max":null,"min":0}},{"name":"T4","data_type":"Float64","null_value":0.01,"validation_action":"warn","comment":"Time constant","valid_range":{"max":null,"min":0.01}},{"name":"H_lim","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"PSS output limit","valid_range":{"max":0.5,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tx_p1: washout filter,\n\tx_p2: T1/T3 lead-lag block, \n\tx_p3: T2/T4 lead-lag block,","internal_default":"[:x_p1, :x_p2, :x_p3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"STAB1 has 3 states","internal_default":3},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"STAB1 has 3 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Speed-Sensitive Stabilizing Model","struct_name":"STAB1","supertype":"PSS"},{"fields":[{"name":"input_code_1","data_type":"Int","null_value":1,"validation_action":"error","comment":"First Input Code for stabilizer","valid_range":{"max":6,"min":1}},{"name":"remote_bus_control_1","data_type":"Int","null_value":0,"comment":"First Input Remote Bus number for control."},{"name":"input_code_2","data_type":"Int","null_value":1,"validation_action":"error","comment":"Second Input Code for stabilizer","valid_range":{"max":6,"min":1}},{"name":"remote_bus_control_2","data_type":"Int","null_value":0,"comment":"Second Input Remote Bus number for control."},{"name":"M_rtf","data_type":"Int","null_value":0,"validation_action":"error","comment":"M parameter for ramp tracking filter","valid_range":{"max":8,"min":0}},{"name":"N_rtf","data_type":"Int","null_value":0,"validation_action":"error","comment":"N parameter for ramp tracking filter","valid_range":{"max":8,"min":0}},{"name":"Tw1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first washout filter for first input","valid_range":{"max":null,"min":"eps()"}},{"name":"Tw2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second washout filter for first input","valid_range":{"max":null,"min":0}},{"name":"T6","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for low-pass filter for first input","valid_range":{"max":null,"min":0}},{"name":"Tw3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first washout filter for second input","valid_range":{"max":null,"min":"eps()"}},{"name":"Tw4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second washout filter for second input","valid_range":{"max":null,"min":0}},{"name":"T7","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for low-pass filter for second input","valid_range":{"max":null,"min":0}},{"name":"Ks2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain for low-pass filter for second input","valid_range":{"max":null,"min":0}},{"name":"Ks3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain for second input","valid_range":{"max":null,"min":0}},{"name":"T8","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for ramp tracking filter","valid_range":{"max":null,"min":0}},{"name":"T9","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for ramp tracking filter","valid_range":{"max":null,"min":"eps()"}},{"name":"Ks1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain before lead-lag blocks","valid_range":{"max":null,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second lead-lag block","valid_range":{"max":null,"min":0}},{"name":"Vst_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"PSS output limits `(Vst_min, Vst_max)`"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tx_p1: 1st washout 1st input, \n\tx_p2: 2nd washout 1st input, \n\tx_p3: transducer 1st input, \n\tx_p4: 1st washout 2nd input, \n\tx_p5: 2nd washout 2nd input, \n\tx_p6: transducer 2nd input, \n\tx_p7: ramp tracking filter state 1, \n\tx_p8: ramp tracking filter state 2, \n\tx_p9: ramp tracking filter state 3, \n\tx_p10: ramp tracking filter state 4, \n\tx_p11: ramp tracking filter state 5, \n\tx_p12: ramp tracking filter state 6, \n\tx_p13: ramp tracking filter state 7, \n\tx_p14: ramp tracking filter state 8, \n\tx_p15: 1st lead-lag, \n\tx_p16: 2nd lead-lag,","internal_default":"[:x_p1, :x_p2, :x_p3, :x_p4, :x_p5, :x_p6, :x_p7, :x_p8, :x_p9, :x_p10, :x_p11, :x_p12, :x_p13, :x_p14, :x_p15, :x_p16]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"IEEEST has 16 states","internal_default":16},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"IEEEST has 16 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"IEEE Dual-Input Stabilizer Model","struct_name":"PSS2A","supertype":"PSS"},{"fields":[{"name":"input_code_1","data_type":"Int","null_value":1,"validation_action":"error","comment":"First Input Code for stabilizer","valid_range":{"max":6,"min":1}},{"name":"remote_bus_control_1","data_type":"Int","null_value":0,"comment":"First Input Remote Bus number for control."},{"name":"input_code_2","data_type":"Int","null_value":1,"validation_action":"error","comment":"Second Input Code for stabilizer","valid_range":{"max":6,"min":1}},{"name":"remote_bus_control_2","data_type":"Int","null_value":0,"comment":"Second Input Remote Bus number for control."},{"name":"M_rtf","data_type":"Int","null_value":0,"validation_action":"error","comment":"M parameter for ramp tracking filter","valid_range":{"max":8,"min":0}},{"name":"N_rtf","data_type":"Int","null_value":0,"validation_action":"error","comment":"N parameter for ramp tracking filter","valid_range":{"max":8,"min":0}},{"name":"Tw1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first washout filter for first input","valid_range":{"max":null,"min":"eps()"}},{"name":"Tw2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second washout filter for first input","valid_range":{"max":null,"min":0}},{"name":"T6","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for low-pass filter for first input","valid_range":{"max":null,"min":0}},{"name":"Tw3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first washout filter for second input","valid_range":{"max":null,"min":"eps()"}},{"name":"Tw4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second washout filter for second input","valid_range":{"max":null,"min":0}},{"name":"T7","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for low-pass filter for second input","valid_range":{"max":null,"min":0}},{"name":"Ks2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain for low-pass filter for second input","valid_range":{"max":null,"min":0}},{"name":"Ks3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain for second input","valid_range":{"max":null,"min":0}},{"name":"T8","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for ramp tracking filter","valid_range":{"max":null,"min":0}},{"name":"T9","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for ramp tracking filter","valid_range":{"max":null,"min":"eps()"}},{"name":"Ks1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain before lead-lag blocks","valid_range":{"max":null,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T10","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for third lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T11","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for third lead-lag block","valid_range":{"max":null,"min":0}},{"name":"Vs1_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"First input limits `(Vs1_min, Vs1_max)`"},{"name":"Vs2_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Second input limits `(Vs2_min, Vs2_max)`"},{"name":"Vst_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"PSS output limits `(Vst_min, Vst_max)`"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tx_p1: 1st washout 1st input, \n\tx_p2: 2nd washout 1st input, \n\tx_p3: transducer 1st input, \n\tx_p4: 1st washout 2nd input, \n\tx_p5: 2nd washout 2nd input, \n\tx_p6: transducer 2nd input, \n\tx_p7: ramp tracking filter state 1, \n\tx_p8: ramp tracking filter state 2, \n\tx_p9: ramp tracking filter state 3, \n\tx_p10: ramp tracking filter state 4, \n\tx_p11: ramp tracking filter state 5, \n\tx_p12: ramp tracking filter state 6, \n\tx_p13: ramp tracking filter state 7, \n\tx_p14: ramp tracking filter state 8, \n\tx_p15: 1st lead-lag, \n\tx_p16: 2nd lead-lag, \n\tx_p17: 3rd lead-lag,","internal_default":"[:x_p1, :x_p2, :x_p3, :x_p4, :x_p5, :x_p6, :x_p7, :x_p8, :x_p9, :x_p10, :x_p11, :x_p12, :x_p13, :x_p14, :x_p15, :x_p16, :x_p17]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"IEEEST has 17 states","internal_default":17},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"IEEEST has 17 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"IEEE 421.5 2005 PSS2B IEEE Dual-Input Stabilizer Model","struct_name":"PSS2B","supertype":"PSS"},{"fields":[{"name":"input_code_1","data_type":"Int","null_value":1,"validation_action":"error","comment":"First Input Code for stabilizer","valid_range":{"max":7,"min":1}},{"name":"remote_bus_control_1","data_type":"Int","null_value":0,"comment":"First Input Remote Bus number for control."},{"name":"input_code_2","data_type":"Int","null_value":1,"validation_action":"error","comment":"Second Input Code for stabilizer","valid_range":{"max":6,"min":1}},{"name":"remote_bus_control_2","data_type":"Int","null_value":0,"comment":"Second Input Remote Bus number for control."},{"name":"M_rtf","data_type":"Int","null_value":0,"validation_action":"error","comment":"M parameter for ramp tracking filter","valid_range":{"max":8,"min":0}},{"name":"N_rtf","data_type":"Int","null_value":0,"validation_action":"error","comment":"N parameter for ramp tracking filter","valid_range":{"max":8,"min":0}},{"name":"Tw1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first washout filter for first input","valid_range":{"max":null,"min":"eps()"}},{"name":"Tw2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second washout filter for first input","valid_range":{"max":null,"min":0}},{"name":"T6","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for low-pass filter for first input","valid_range":{"max":null,"min":0}},{"name":"Tw3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first washout filter for second input","valid_range":{"max":null,"min":"eps()"}},{"name":"Tw4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second washout filter for second input","valid_range":{"max":null,"min":0}},{"name":"T7","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for low-pass filter for second input","valid_range":{"max":null,"min":0}},{"name":"Ks2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain for low-pass filter for second input","valid_range":{"max":null,"min":0}},{"name":"Ks3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain for second input","valid_range":{"max":null,"min":0}},{"name":"T8","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for ramp tracking filter","valid_range":{"max":null,"min":0}},{"name":"T9","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for ramp tracking filter","valid_range":{"max":null,"min":"eps()"}},{"name":"Ks1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain before lead-lag blocks","valid_range":{"max":null,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T10","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for third lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T11","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for third lead-lag block","valid_range":{"max":null,"min":0}},{"name":"Vs1_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"First input limits `(Vs1_min, Vs1_max)`"},{"name":"Vs2_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Second input limits `(Vs2_min, Vs2_max)`"},{"name":"Vst_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"PSS output limits `(Vst_min, Vst_max)`"},{"name":"T12","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for fourth lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T13","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for fourth lead-lag block","valid_range":{"max":null,"min":0}},{"name":"PSS_Hysteresis_param","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"PSS output hysteresis parameters `(PSSOFF, PSSON)`"},{"name":"Xcomp","data_type":"Float64","null_value":0,"comment":"Stator Leakage Reactance","valid_range":{"max":null,"min":0}},{"name":"Tcomp","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Time measured with compensated frequency","valid_range":{"max":null,"min":"eps()"}},{"name":"hysteresis_binary_logic","default":"1","data_type":"Int","null_value":0,"comment":"Hysteresis memory variable"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tx_p1: 1st washout 1st input, \n\tx_p2: 2nd washout 1st input, \n\tx_p3: transducer 1st input, \n\tx_p4: 1st washout 2nd input, \n\tx_p5: 2nd washout 2nd input, \n\tx_p6: transducer 2nd input, \n\tx_p7: ramp tracking filter state 1, \n\tx_p8: ramp tracking filter state 2, \n\tx_p9: ramp tracking filter state 3, \n\tx_p10: ramp tracking filter state 4, \n\tx_p11: ramp tracking filter state 5, \n\tx_p12: ramp tracking filter state 6, \n\tx_p13: ramp tracking filter state 7, \n\tx_p14: ramp tracking filter state 8, \n\tx_p15: 1st lead-lag, \n\tx_p16: 2nd lead-lag, \n\tx_p17: 3rd lead-lag, \n\tx_p18: 4th lead-lag, \n\tx_p19: washout block for compensated frequency,","internal_default":"[:x_p1, :x_p2, :x_p3, :x_p4, :x_p5, :x_p6, :x_p7, :x_p8, :x_p9, :x_p10, :x_p11, :x_p12, :x_p13, :x_p14, :x_p15, :x_p16, :x_p17, :x_p18, :x_p19]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"IEEEST has 19 states","internal_default":19},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"IEEEST has 19 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"IEEE 421.5 2016 PSS2C IEEE Dual-Input Stabilizer Model","struct_name":"PSS2C","supertype":"PSS"},{"fields":[{"name":"H","data_type":"Float64","null_value":0,"comment":"Rotor inertia constant in MWs/MVA","valid_range":{"max":null,"min":0}},{"name":"D","data_type":"Float64","null_value":0,"comment":"Rotor natural damping in pu","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tδ: rotor angle,\n\tω: rotor speed","internal_default":"[:δ, :ω]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SingleMass has 1 state","internal_default":2},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of single mass shaft model. Typically represents the rotor mass.","struct_name":"SingleMass","supertype":"Shaft"},{"fields":[{"name":"H","data_type":"Float64","null_value":0,"comment":"Rotor inertia constant in MWs/MVA","valid_range":{"max":null,"min":0}},{"name":"H_hp","data_type":"Float64","null_value":0,"comment":"High pressure turbine inertia constant in MWs/MVA","valid_range":{"max":null,"min":0}},{"name":"H_ip","data_type":"Float64","null_value":0,"comment":"Intermediate pressure turbine inertia constant in MWs/MVA","valid_range":{"max":null,"min":0}},{"name":"H_lp","data_type":"Float64","null_value":0,"comment":"Low pressure turbine inertia constant in MWs/MVA","valid_range":{"max":null,"min":0}},{"name":"H_ex","data_type":"Float64","null_value":0,"comment":" Exciter inertia constant in MWs/MVA","valid_range":{"max":null,"min":0}},{"name":"D","data_type":"Float64","null_value":0,"comment":"Rotor natural damping in pu","valid_range":{"max":null,"min":0}},{"name":"D_hp","data_type":"Float64","null_value":0,"comment":"High pressure turbine natural damping in pu","valid_range":{"max":null,"min":0}},{"name":"D_ip","data_type":"Float64","null_value":0,"comment":"Intermediate pressure turbine natural damping in pu","valid_range":{"max":null,"min":0}},{"name":"D_lp","data_type":"Float64","null_value":0,"comment":"Low pressure turbine natural damping in pu","valid_range":{"max":null,"min":0}},{"name":"D_ex","data_type":"Float64","null_value":0,"comment":"Exciter natural damping in pu","valid_range":{"max":null,"min":0}},{"name":"D_12","data_type":"Float64","null_value":0,"comment":"High-Intermediate pressure turbine damping","valid_range":{"max":null,"min":0}},{"name":"D_23","data_type":"Float64","null_value":0,"comment":"Intermediate-Low pressure turbine damping","valid_range":{"max":null,"min":0}},{"name":"D_34","data_type":"Float64","null_value":0,"comment":"Low pressure turbine-Rotor damping","valid_range":{"max":null,"min":0}},{"name":"D_45","data_type":"Float64","null_value":0,"comment":"Rotor-Exciter damping","valid_range":{"max":null,"min":0}},{"name":"K_hp","data_type":"Float64","null_value":0,"comment":"High pressure turbine angle coefficient","valid_range":{"max":null,"min":0}},{"name":"K_ip","data_type":"Float64","null_value":0,"comment":"Intermediate pressure turbine angle coefficient","valid_range":{"max":null,"min":0}},{"name":"K_lp","data_type":"Float64","null_value":0,"comment":"Low pressure turbine angle coefficient","valid_range":{"max":null,"min":0}},{"name":"K_ex","data_type":"Float64","null_value":0,"comment":"Exciter angle coefficient","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tδ: rotor angle,\n\tω: rotor speed,\n\tδ_hp: rotor angle of high pressure turbine,\n\tω_hp: rotor speed of high pressure turbine,\n\tδ_ip: rotor angle of intermediate pressure turbine,\n\tω_ip: rotor speed of intermediate pressure turbine,\n\tδ_lp: rotor angle of low pressure turbine,\n\tω_lp: rotor speed of low pressure turbine,\n\tδ_ex: rotor angle of exciter,\n\tω_lp: rotor speed of exciter","internal_default":"[:δ, :ω, :δ_hp, :ω_hp, :δ_ip, :ω_ip, :δ_lp, :ω_lp, :δ_ex, :ω_ex]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"FiveMassShaft has 10 states","internal_default":10},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 5 mass-spring shaft model.\n It contains a High-Pressure (HP) steam turbine, Intermediate-Pressure (IP)\n steam turbine, Low-Pressure (LP) steam turbine, the Rotor and an Exciter (EX) mover.","struct_name":"FiveMassShaft","supertype":"Shaft"},{"fields":[{"name":"efficiency","data_type":"Float64","null_value":0,"comment":" Efficiency factor that multiplies P_ref","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"TGFixed has no states","internal_default":0},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a fixed Turbine Governor that returns a fixed mechanical torque\n given by the product of P_ref*efficiency","struct_name":"TGFixed","supertype":"TurbineGov"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Speed droop parameter","valid_range":{"max":0.1,"min":"eps()"}},{"name":"T1","data_type":"Float64","null_value":0,"comment":"Governor time constant in s","valid_range":{"max":0.5,"min":"eps()"}},{"name":"T2","data_type":"Float64","null_value":0,"comment":"Combustion chamber time constant","valid_range":{"max":0.5,"min":"eps()"}},{"name":"T3","data_type":"Float64","null_value":0,"comment":"Load limit time constant (exhaust gas measurement time)","valid_range":{"max":5,"min":"eps()"}},{"name":"AT","data_type":"Float64","null_value":0,"comment":"Ambient temperature load limit","valid_range":{"max":1,"min":0}},{"name":"Kt","data_type":"Float64","null_value":0,"comment":"Load limit feedback gain","valid_range":{"max":5,"min":0}},{"name":"V_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Operational control limits on fuel valve opening (V_min, V_max)"},{"name":"D_turb","data_type":"Float64","null_value":0,"comment":"Speed damping coefficient of gas turbine rotor","valid_range":{"max":0.5,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Load Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the GAST model are:\n\tx_g1: Fuel valve opening,\n\tx_g2: Fuel flow,\n\tx_g3: Exhaust temperature load","internal_default":"[:x_g1, :x_g2, :x_g3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"GasTG has 3 states","internal_default":3},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"GAST has 3 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of Gas Turbine-Governor. GAST in PSSE and GAST_PTI in PowerWorld.","struct_name":"GasTG","supertype":"TurbineGov"},{"fields":[{"name":"T1","data_type":"Float64","null_value":0,"comment":"Governor mechanism time constant","valid_range":{"max":100,"min":"eps()"}},{"name":"T2","data_type":"Float64","null_value":0,"comment":"Turbine power time constant","valid_range":{"max":100,"min":"eps()"}},{"name":"T3","data_type":"Float64","null_value":0,"comment":"Turbine exhaust temperature time constant","valid_range":{"max":100,"min":"eps()"}},{"name":"K","data_type":"Float64","null_value":0,"comment":"Governor gain (reciprocal of droop)","valid_range":{"max":100,"min":"eps()"}},{"name":"T4","data_type":"Float64","null_value":0,"comment":"Governor lead time constant","valid_range":{"max":100,"min":"eps()"}},{"name":"T5","data_type":"Float64","null_value":0,"comment":"Governor lag time constant","valid_range":{"max":100,"min":"eps()"}},{"name":"T6","data_type":"Float64","null_value":0,"comment":"Actuator time constant","valid_range":{"max":100,"min":"eps()"}},{"name":"Td","data_type":"Float64","null_value":0,"comment":"Engine time delay","valid_range":{"max":100,"min":"eps()"}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Load Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the DEGOV model are:\n\tx_ecb1: Electric control box 1,\n\tx_ecb2: Electric control box 2,\n\tx_a1: Actuator 1,\n\tx_a2: Actuator 2,\n\tx_a3: Actuator 3,","internal_default":"[:x_ecb1, :x_ecb2, :x_a1, :x_a2, :x_a3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"DEGOV has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"DEGOV has 5 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters Woodward Diesel Governor Model. DEGOV in PowerWorld.","struct_name":"DEGOV","supertype":"TurbineGov"},{"fields":[{"name":"Rselect","data_type":"Int","null_value":1,"validation_action":"error","comment":"Feedback signal for governor droop","valid_range":{"max":1,"min":-2}},{"name":"fuel_flag","data_type":"Int","null_value":0,"validation_action":"error","comment":"Flag Switch for fuel source characteristic","valid_range":{"max":1,"min":0}},{"name":"R","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Speed droop parameter","valid_range":{"max":null,"min":"eps()"}},{"name":"Tpelec","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Electrical power transducer time constant, seconds","valid_range":{"max":null,"min":"eps()"}},{"name":"speed_error_signal","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Speed error signal limits"},{"name":"Kp_gov","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Governor proportional gain","valid_range":{"max":null,"min":0}},{"name":"Ki_gov","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Governor integral gain","valid_range":{"max":null,"min":0}},{"name":"Kd_gov","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Governor derivative gain","valid_range":{"max":null,"min":0}},{"name":"Td_gov","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Governor derivative time constant","valid_range":{"max":null,"min":0}},{"name":"valve_position_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Valve position limits"},{"name":"T_act","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Actuator time constant","valid_range":{"max":null,"min":0}},{"name":"K_turb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine gain","valid_range":{"max":null,"min":0}},{"name":"Wf_nl","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"No load fuel flow, pu","valid_range":{"max":null,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine lag time constant, sec","valid_range":{"max":null,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine lead time constant, sec","valid_range":{"max":null,"min":0}},{"name":"T_eng","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Transport lag time constant for diesel engine, sec","valid_range":{"max":null,"min":0}},{"name":"Tf_load","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Load limiter time constant","valid_range":{"max":null,"min":0}},{"name":"Kp_load","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Load limiter proportional gain for PI controller","valid_range":{"max":null,"min":0}},{"name":"Ki_load","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Load integral gain for PI controller","valid_range":{"max":null,"min":0}},{"name":"Ld_ref","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Load limiter integral gain for PI controller","valid_range":{"max":null,"min":0}},{"name":"Dm","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Mechanical damping coefficient, pu","valid_range":{"max":null,"min":0}},{"name":"R_open","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Maximum valve opening rate, pu/sec","valid_range":{"max":null,"min":0}},{"name":"R_close","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Maximum valve closing rate, pu/sec","valid_range":{"max":null,"min":0}},{"name":"Ki_mw","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Power controller (reset) gain","valid_range":{"max":null,"min":0}},{"name":"A_set","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Acceleration limiter setpoint, pu/sec","valid_range":{"max":null,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Acceleration limiter gain","valid_range":{"max":null,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Acceleration limiter time constant ","valid_range":{"max":null,"min":"eps()"}},{"name":"T_rate","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine rating","valid_range":{"max":null,"min":0}},{"name":"db","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Speed governor deadband","valid_range":{"max":null,"min":0}},{"name":"Tsa","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Temperature detection lead time constant","valid_range":{"max":null,"min":0}},{"name":"Tsb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Temperature detection lag time constant","valid_range":{"max":null,"min":0}},{"name":"R_lim","data_type":"UpDown","null_value":"(up = 0.0, down = 0.0)","comment":"Maximum rate of load increa"},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the GGOV1 model are:\n\tPe: Machine Electrical Power Measurement,\n\tx_g1: Governor differential control,\n\tx_g2: Governor integral control, \n\tx_g3: Turbine actuator, \n\tx_g4: Turbine Lead-Lag, \n\tx_g5: Turbine load limiter measurement, \n\tx_g6: Turbine Load Limiter Integral Control, \n\tx_g7: Supervisory Load Control, \n\tx_g8: Acceleration Control, \n\tx_g9 Temperature Detection Lead - Lag:","internal_default":"[:Pe, :x_g1, :x_g2, :x_g3, :x_g4, :x_g5, :x_g6, :x_g7, :x_g8, :x_g9]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"GeneralGovModel has 10 states","internal_default":10},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"GGOV1 has 10 differential states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Hybrid]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"GE General Governor/Turbine Model. The GeneralGovModel (GGOV1) model is a general purpose governor model used for a variety of prime movers controlled by proportional-integral-derivative (PID) governors including gas turbines.","struct_name":"GeneralGovModel","supertype":"TurbineGov"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Droop parameter","valid_range":{"max":0.1,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Governor time constant","valid_range":{"max":0.5,"min":"eps()"}},{"name":"valve_position_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Valve position limits"},{"name":"T2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Lead Lag Lead Time constant ","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Lead Lag Lag Time constant ","valid_range":{"max":10,"min":"eps()"}},{"name":"D_T","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine Damping","valid_range":{"max":0.5,"min":0}},{"name":"DB_h","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Deadband for overspeed","valid_range":{"max":null,"min":0}},{"name":"DB_l","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Deadband for underspeed","valid_range":{"max":0,"min":null}},{"name":"T_rate","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine Rate (MW). If zero, generator base is used.","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the SteamTurbineGov1 model are:\n\tx_g1: Valve Opening,\n\tx_g2: Lead-lag state","internal_default":"[:x_g1, :x_g2]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"TGOV1 has 2 states","internal_default":2},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"TGOV1 has 2 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Steam Turbine-Governor. This model considers both TGOV1 or TGOV1DU in PSS/E.","struct_name":"SteamTurbineGov1","supertype":"TurbineGov"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Permanent droop parameter","valid_range":{"max":0.1,"min":0}},{"name":"r","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Temporary Droop","valid_range":{"max":2,"min":0}},{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Governor time constant","valid_range":{"max":30,"min":"eps()"}},{"valiation_action":"error","name":"Tf","data_type":"Float64","null_value":0,"comment":"Filter Time constant","valid_range":{"max":0.1,"min":"eps()"}},{"name":"Tg","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Servo time constant","valid_range":{"max":1,"min":"eps()"}},{"name":"VELM","data_type":"Float64","null_value":0,"validation_action":"error","comment":"gate velocity limit","valid_range":{"max":0.3,"min":"eps()"}},{"name":"gate_position_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Gate position limits"},{"name":"Tw","data_type":"Float64","null_value":0,"validation_action":"error","comment":"water time constant","valid_range":{"max":3,"min":"eps()"}},{"name":"At","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine gain","valid_range":{"max":1.5,"min":0.8}},{"name":"D_T","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine Damping","valid_range":{"max":0.5,"min":0}},{"name":"q_nl","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"No-power flow","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the HydroTurbineGov model are:\n\tx_g1: filter_output,\n\tx_g2: desired gate, \n\tx_g3: gate opening, \n\tx_g4: turbine flow","internal_default":"[:x_g1, :x_g2, :x_g3, :x_g4]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"HYGOV has 4 states","internal_default":4},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"HYGOV has 4 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Hydro Turbine-Governor.","struct_name":"HydroTurbineGov","supertype":"TurbineGov"},{"fields":[{"name":"K","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Governor Gain","valid_range":{"max":30,"min":5}},{"name":"T1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Input Filter Lag","valid_range":{"max":5,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Input Filter Lead","valid_range":{"max":10,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Valve position Time Constant","valid_range":{"max":1,"min":"eps()"}},{"name":"U0","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Maximum Valve Opening Rate","valid_range":{"max":0.03,"min":0.01}},{"name":"U_c","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Maximum Valve closing rate","valid_range":{"max":0,"min":-0.3}},{"name":"valve_position_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Valve position limits in MW"},{"name":"T4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time Constant inlet steam","valid_range":{"max":1,"min":0}},{"name":"K1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of high presure shaft power","valid_range":{"max":1,"min":-2}},{"name":"K2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of low presure shaft power","valid_range":{"max":null,"min":0}},{"name":"T5","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second boiler pass","valid_range":{"max":10,"min":0}},{"name":"K3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of high presure shaft power second boiler pass","valid_range":{"max":0.5,"min":0}},{"name":"K4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of low presure shaft power second boiler pass","valid_range":{"max":0.5,"min":0}},{"name":"T6","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for third boiler pass","valid_range":{"max":10,"min":0}},{"name":"K5","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of high presure shaft power third boiler pass","valid_range":{"max":0.35,"min":0}},{"name":"K6","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of low presure shaft power third boiler pass","valid_range":{"max":0.55,"min":0}},{"name":"T7","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for fourth boiler pass","valid_range":{"max":10,"min":0}},{"name":"K7","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of high presure shaft power fourth boiler pass","valid_range":{"max":0.3,"min":0}},{"name":"K8","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of low presure shaft power fourth boiler pass","valid_range":{"max":0.3,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the IEEETurbineGov model are:\n\tx_g1: First Governor integrator,\n\tx_g2: Governor output,\n\tx_g3: First Turbine integrator, \n\tx_g4: Second Turbine Integrator, \n\tx_g5: Third Turbine Integrator, \n\tx_g6: Fourth Turbine Integrator, ","internal_default":"[:x_g1, :x_g2, :x_g3, :x_g4, :x_g5, :x_g6]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"IEEEG1 has 6 states","internal_default":6},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"IEEEG1 has 6 differential states","internal_default":"[StateTypes.Differential, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"IEEE Type 1 Speed-Governing Model","struct_name":"IEEETurbineGov1","supertype":"TurbineGov"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Droop parameter","valid_range":{"max":null,"min":0}},{"name":"Ts","data_type":"Float64","null_value":0,"comment":"Governor time constant","valid_range":{"max":null,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"comment":"Servo time constant","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"comment":"Transient gain time constant","valid_range":{"max":null,"min":0}},{"name":"T4","data_type":"Float64","null_value":0,"comment":"Power fraction time constant","valid_range":{"max":null,"min":0}},{"name":"T5","data_type":"Float64","null_value":0,"comment":"Reheat time constant","valid_range":{"max":null,"min":0}},{"name":"valve_position_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Valve position limits in MW"},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the TGTypeI model are:\n\tx_g1: Governor state,\n\tx_g2: Servo state,\n\tx_g3: Reheat state","internal_default":"[:x_g1, :x_g2, :x_g3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"TGTypeI has 3 states","internal_default":3},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a Turbine Governor Type I.","struct_name":"TGTypeI","supertype":"TurbineGov"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Droop parameter","valid_range":{"max":null,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"comment":"Transient gain time constant","valid_range":{"max":null,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"comment":"Power fraction time constant","valid_range":{"max":null,"min":0}},{"name":"τ_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Power into the governor limits"},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the TGTypeI model are:\n\tx_g1: lead-lag state","internal_default":"[:xg]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"TGTypeII has 1 state","internal_default":1},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a Turbine Governor Type II.","struct_name":"TGTypeII","supertype":"TurbineGov"},{"fields":[{"name":"rated_voltage","data_type":"Float64","null_value":0,"comment":"rated voltage","valid_range":{"max":null,"min":0}},{"name":"rated_current","data_type":"Float64","null_value":0,"comment":"rated VA","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"AverageConverter has no states","internal_default":0}],"docstring":"Parameters of an average converter model","struct_name":"AverageConverter","supertype":"Converter"},{"fields":[{"name":"T_g","data_type":"Float64","null_value":0,"comment":"Converter time constant (s)","valid_range":{"max":null,"min":0}},{"name":"Rrpwr","data_type":"Float64","null_value":0,"comment":"Low Voltage Power Logic (LVPL) ramp rate limit (pu/s)","valid_range":{"max":null,"min":0}},{"name":"Brkpt","data_type":"Float64","null_value":0,"comment":"LVPL characteristic voltage 2 (pu)","valid_range":{"max":null,"min":0}},{"name":"Zerox","data_type":"Float64","null_value":0,"comment":"LVPL characteristic voltage 1 (pu)","valid_range":{"max":null,"min":0}},{"name":"Lvpl1","data_type":"Float64","null_value":0,"comment":"LVPL gain (pu)","valid_range":{"max":null,"min":0}},{"name":"Vo_lim","data_type":"Float64","null_value":0,"comment":"Voltage limit for high voltage reactive current management (pu)","valid_range":{"max":null,"min":0}},{"name":"Lv_pnts","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage points for low voltage active current management (pu) (Lvpnt0, Lvpnt1)"},{"name":"Io_lim","data_type":"Float64","null_value":0,"comment":"Current limit (pu) for high voltage reactive current management (specified as a negative value)","valid_range":{"max":0,"min":null}},{"name":"T_fltr","data_type":"Float64","null_value":0,"comment":"Voltage filter time constant for low voltage active current management (s)","valid_range":{"max":null,"min":0}},{"name":"K_hv","data_type":"Float64","null_value":0,"comment":"Overvoltage compensation gain used in the high voltage reactive current management","valid_range":{"max":null,"min":0}},{"name":"Iqr_lims","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limit on rate of change for reactive current (pu/s) (Iqr_min, Iqr_max)"},{"name":"Accel","data_type":"Float64","null_value":0,"comment":"Acceleration factor","valid_range":{"max":1,"min":0}},{"name":"Lvpl_sw","data_type":"Int","null_value":0,"comment":"Low voltage power logic (LVPL) switch. (0: LVPL not present, 1: LVPL present)","valid_range":{"max":1,"min":0}},{"name":"Q_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Initial machine reactive power from power flow","valid_range":{"max":null,"min":0}},{"name":"R_source","default":"0.0","data_type":"Float64","null_value":0,"comment":"Output resistor used for the Thevenin Equivalent","valid_range":{"max":null,"min":0}},{"name":"X_source","default":"1.0e5","data_type":"Float64","null_value":0,"comment":"Output resistor used for the Thevenin Equivalent","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\tIp: Converter lag for Ipcmd,\tIq: Converter lag for Iqcmd,\tVmeas: Voltage filter for low voltage active current management","internal_default":"[:Ip, :Iq, :Vmeas]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"RenewableEnergyConverterTypeA has 3 states","internal_default":3}],"docstring":"Parameters of a renewable energy generator/converter model, this model corresponds to REGCA1 in PSSE","struct_name":"RenewableEnergyConverterTypeA","supertype":"Converter"},{"fields":[{"name":"T_g","data_type":"Float64","null_value":0,"comment":"Converter time constant (s)","valid_range":{"max":null,"min":0}},{"name":"Rrpwr","data_type":"Float64","null_value":0,"comment":"Low Voltage Power Logic (LVPL) ramp rate limit (pu/s)","valid_range":{"max":null,"min":0}},{"name":"Brkpt","data_type":"Float64","null_value":0,"comment":"LVPL characteristic voltage 2 (pu)","valid_range":{"max":null,"min":0}},{"name":"Zerox","data_type":"Float64","null_value":0,"comment":"LVPL characteristic voltage 1 (pu)","valid_range":{"max":null,"min":0}},{"name":"Lvpl1","data_type":"Float64","null_value":0,"comment":"LVPL gain (pu)","valid_range":{"max":null,"min":0}},{"name":"Vo_lim","data_type":"Float64","null_value":0,"comment":"Voltage limit for high voltage reactive current management (pu)","valid_range":{"max":null,"min":0}},{"name":"Lv_pnts","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage points for low voltage active current management (pu) (Lvpnt0, Lvpnt1)"},{"name":"Io_lim","data_type":"Float64","null_value":0,"comment":"Current limit (pu) for high voltage reactive current management (specified as a negative value)","valid_range":{"max":0,"min":null}},{"name":"T_fltr","data_type":"Float64","null_value":0,"comment":"Voltage filter time constant for low voltage active current management (s)","valid_range":{"max":null,"min":0}},{"name":"K_hv","data_type":"Float64","null_value":0,"comment":"Overvoltage compensation gain used in the high voltage reactive current management","valid_range":{"max":null,"min":0}},{"name":"Iqr_lims","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limit on rate of change for reactive current (pu/s) (Iqr_min, Iqr_max)"},{"name":"Accel","data_type":"Float64","null_value":0,"comment":"Acceleration factor","valid_range":{"max":1,"min":0}},{"name":"Lvpl_sw","data_type":"Int","null_value":0,"comment":"Low voltage power logic (LVPL) switch. (0: LVPL not present, 1: LVPL present)","valid_range":{"max":1,"min":0}},{"name":"Q_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Initial machine reactive power from power flow","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\tIp: Converter lag for Ipcmd,\tIq: Converter lag for Iqcmd,\tVmeas: Voltage filter for low voltage active current management","internal_default":"[:Ip, :Iq, :Vmeas]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"RenewableEnergyVoltageConverterTypeA has 3 states","internal_default":3}],"docstring":"Parameters of a renewable energy generator/converter model, this model corresponds to REGCA1 in PSSE, but to be interfaced using a Voltage Source instead of a Current Source.","struct_name":"RenewableEnergyVoltageConverterTypeA","supertype":"Converter"},{"fields":[{"name":"voltage","data_type":"Float64","null_value":0,"comment":"rated VA","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"FixedDCSource has no states","internal_default":0},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a Fixed DC Source that returns a fixed DC voltage","struct_name":"FixedDCSource","supertype":"DCSource"},{"fields":[{"name":"rated_voltage","data_type":"Float64","null_value":0,"comment":"rated voltage","valid_range":{"max":null,"min":0}},{"name":"rated_current","data_type":"Float64","null_value":0,"comment":"rated current","valid_range":{"max":null,"min":0}},{"name":"battery_voltage","data_type":"Float64","null_value":0,"comment":"battery voltage","valid_range":{"max":null,"min":0}},{"name":"battery_resistance","data_type":"Float64","null_value":0,"comment":"battery_resistance","valid_range":{"max":null,"min":0}},{"name":"dc_dc_inductor","data_type":"Float64","null_value":0,"comment":"DC/DC inductance","valid_range":{"max":null,"min":0}},{"name":"dc_link_capacitance","data_type":"Float64","null_value":0,"comment":"DC-link capacitor","valid_range":{"max":null,"min":0}},{"name":"fs","data_type":"Float64","null_value":0,"comment":"DC/DC converter switching frequency","valid_range":{"max":null,"min":0}},{"name":"kpv","data_type":"Float64","null_value":0,"comment":"voltage controller proportional gain","valid_range":{"max":null,"min":0}},{"name":"kiv","data_type":"Float64","null_value":0,"comment":"voltage controller integral gain","valid_range":{"max":null,"min":0}},{"name":"kpi","data_type":"Float64","null_value":0,"comment":"current controller proportional gain","valid_range":{"max":null,"min":0}},{"name":"kii","data_type":"Float64","null_value":0,"comment":"current controller integral gain","valid_range":{"max":null,"min":0}},{"name":"Vdc_ref","default":"1.1","data_type":"Float64","null_value":0,"comment":"Reference DC-Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ZeroOrderBESS model are:\n\tv_dc: DC-link votlage,\n\ti_b: Battery current,\n\t ν: integrator state of the voltage controller,\n\t ζ: integrator state of the PI current controller","internal_default":"[:v_dc, :i_b, :ν, :ζ]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ZeroOrderBESS has 4 states","internal_default":4}],"docstring":"Parameters for the DC-side with a Battery Energy Storage System from paper at https://arxiv.org/abs/2007.11776","struct_name":"ZeroOrderBESS","supertype":"DCSource"},{"fields":[{"name":"lf","data_type":"Float64","null_value":0,"comment":"Series inductance in p.u. of converter filter","valid_range":{"max":null,"min":0}},{"name":"rf","data_type":"Float64","null_value":0,"comment":"Series resistance in p.u. of converter filter","valid_range":{"max":null,"min":0}},{"name":"cf","data_type":"Float64","null_value":0,"comment":"Shunt capacitance in p.u. of converter filter","valid_range":{"max":null,"min":0}},{"name":"lg","data_type":"Float64","null_value":0,"comment":"Series inductance in p.u. of converter filter to the grid","valid_range":{"max":null,"min":0}},{"name":"rg","data_type":"Float64","null_value":0,"comment":"Series resistance in p.u. of converter filter to the grid","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the LCLFilter model are:\n\tir_cnv: Real current out of the converter,\n\tii_cnv: Imaginary current out of the converter,\n\tvr_filter: Real voltage at the filter's capacitor,\n\tvi_filter: Imaginary voltage at the filter's capacitor,\n\tir_filter: Real current out of the filter,\n\tii_filter: Imaginary current out of the filter","internal_default":"[:ir_cnv, :ii_cnv, :vr_filter, :vi_filter, :ir_filter, :ii_filter]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"LCLFilter has 6 states","internal_default":6}],"docstring":"Parameters of a LCL filter outside the converter, the states are in the grid's reference frame","struct_name":"LCLFilter","supertype":"Filter"},{"fields":[{"name":"lf","data_type":"Float64","null_value":0,"comment":"filter inductance","valid_range":{"max":null,"min":0}},{"name":"rf","data_type":"Float64","null_value":0,"comment":"filter resistance","valid_range":{"max":null,"min":0}},{"name":"cf","data_type":"Float64","null_value":0,"comment":"filter capacitance","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the LCFilter model are:\n\tir_filter: Real current out of the filter,\n\tii_filter: Imaginary current out of the filter","internal_default":"[:ir_filter, :ii_filter]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"LCFilter has two states","internal_default":2}],"docstring":"Parameters of a LCL filter outside the converter","struct_name":"LCFilter","supertype":"Filter"},{"fields":[{"name":"rf","data_type":"Float64","null_value":0,"comment":"Series resistance in p.u. of converter filter to the grid","valid_range":{"max":null,"min":0}},{"name":"lf","data_type":"Float64","null_value":0,"comment":"Series inductance in p.u. of converter filter to the grid","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"RLFilter has zero states","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"RLFilter has zero states","internal_default":0}],"docstring":"Parameters of RL series filter in algebraic representation","struct_name":"RLFilter","supertype":"Filter"},{"fields":[{"name":"ω_lp","data_type":"Float64","null_value":0,"comment":"PLL low-pass filter frequency (rad/sec)","valid_range":{"max":null,"min":0}},{"name":"kp_pll","data_type":"Float64","null_value":0,"comment":"PLL proportional gain","valid_range":{"max":null,"min":0}},{"name":"ki_pll","data_type":"Float64","null_value":0,"comment":"PLL integral gain","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the KauraPLL model are:\n\tvd_pll: d-axis of the measured voltage in the PLL synchronous reference frame (SRF),\n\tvq_pll: q-axis of the measured voltage in the PLL SRF,\n\tε_pll: Integrator state of the PI controller,\n\tθ_pll: Phase angle displacement in the PLL SRF","internal_default":"[:vd_pll, :vq_pll, :ε_pll, :θ_pll]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"KauraPLL has 4 states","internal_default":4}],"docstring":"Parameters of a Phase-Locked Loop (PLL) based on Kaura, Vikram, and Vladimir Blasko.\n\"Operation of a phase locked loop system under distorted utility conditions.\"\nIEEE Transactions on Industry applications 33.1 (1997): 58-63.","struct_name":"KauraPLL","supertype":"FrequencyEstimator"},{"fields":[{"name":"ω_lp","data_type":"Float64","null_value":0,"comment":"PLL low-pass filter frequency (rad/sec)","valid_range":{"max":null,"min":0}},{"name":"kp_pll","data_type":"Float64","null_value":0,"comment":"PLL proportional gain","valid_range":{"max":null,"min":0}},{"name":"ki_pll","data_type":"Float64","null_value":0,"comment":"PLL integral gain","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ReducedOrderPLL model are:\n\tvq_pll: q-axis of the measured voltage in the PLL synchronous reference frame (SRF),\n\tε_pll: Integrator state of the PI controller,\n\tθ_pll: Phase angle displacement in the PLL SRF","internal_default":"[:vq_pll, :ε_pll, :θ_pll]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ReducedOrderPLL has 3 states","internal_default":3}],"docstring":"Parameters of a Phase-Locked Loop (PLL) based on Purba, Dhople, Jafarpour, Bullo and Johnson.\n\"Reduced-order Structure-preserving Model for Parallel-connected Three-phase Grid-tied Inverters.\"\n2017 IEEE 18th Workshop on Control and Modeling for Power Electronics (COMPEL): 1-7.","struct_name":"ReducedOrderPLL","supertype":"FrequencyEstimator"},{"fields":[{"name":"frequency","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference used"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"FixedFrequency has no states","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"FixedFrequency has no states","internal_default":0}],"docstring":"Parameters of a Fixed Frequency Estimator (i.e. no PLL).","struct_name":"FixedFrequency","supertype":"FrequencyEstimator"},{"fields":[{"name":"Ta","data_type":"Float64","null_value":0,"comment":"VSM inertia constant","valid_range":{"max":null,"min":0}},{"name":"kd","data_type":"Float64","null_value":0,"comment":"VSM damping constant","valid_range":{"max":null,"min":0}},{"name":"kω","data_type":"Float64","null_value":0,"comment":"frequency droop gain","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the VirtualInertia model are:\n\tθ_oc: Phase angle displacement of the virtual synchronous generator model\n\tω_oc: Speed of the rotating reference frame of the virtual synchronous generator model","internal_default":"[:θ_oc, :ω_oc]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"VirtualInertia has two states","internal_default":2}],"docstring":"Parameters of a Virtual Inertia with SRF using VSM for active power controller","struct_name":"VirtualInertia","supertype":"ActivePowerControl"},{"fields":[{"name":"Rp","data_type":"Float64","null_value":0,"comment":"Droop Gain","valid_range":{"max":null,"min":0}},{"name":"ωz","data_type":"Float64","null_value":0,"comment":"filter frequency cutoff","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ActivePowerDroop model are:\n\tθ_oc: Phase angle displacement of the inverter model,\n\tp_oc: Measured active power of the inverter model","internal_default":"[:θ_oc, :p_oc]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ActivePowerDroop has two states","internal_default":2}],"docstring":"Parameters of an Active Power droop controller","struct_name":"ActivePowerDroop","supertype":"ActivePowerControl"},{"fields":[{"name":"Kp_p","data_type":"Float64","null_value":0,"comment":"Proportional Gain","valid_range":{"max":null,"min":0}},{"name":"Ki_p","data_type":"Float64","null_value":0,"comment":"Integral Gain","valid_range":{"max":null,"min":0}},{"name":"ωz","data_type":"Float64","null_value":0,"comment":"filter frequency cutoff","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ActivePowerPI model are:\n\tσp_oc: Integrator state of the PI Controller,\n\tp_oc: Measured active power of the inverter model","internal_default":"[:σp_oc, :p_oc]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ActivePowerPI has two states","internal_default":2}],"docstring":"Parameters of a Proportional-Integral Active Power controller for a specified power reference","struct_name":"ActivePowerPI","supertype":"ActivePowerControl"},{"fields":[{"name":"k1","data_type":"Float64","null_value":0,"comment":"VOC Synchronization Gain","valid_range":{"max":null,"min":0}},{"name":"ψ","data_type":"Float64","null_value":0,"comment":"Rotation angle of the controller","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ActiveVirtualOscillator model are:\n\tθ_oc: Phase angle displacement of the inverter model","internal_default":"[:θ_oc]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ActiveVirtualOscillator has one state","internal_default":1}],"docstring":"Parameters of an Active Virtual Oscillator controller. Model is based from the paper Model Reduction for Inverters with Current Limiting and Dispatchable Virtual Oscillator Control by O. Ajala et al.","struct_name":"ActiveVirtualOscillator","supertype":"ActivePowerControl"},{"fields":[{"name":"bus_control","data_type":"Int","null_value":0,"comment":"Bus Number for voltage control; ","valid_range":{"max":null,"min":0}},{"name":"from_branch_control","data_type":"Int","null_value":0,"comment":"Monitored branch FROM bus number for line drop compensation (if 0 generator power will be used)","valid_range":{"max":null,"min":0}},{"name":"to_branch_control","data_type":"Int","null_value":0,"comment":"Monitored branch TO bus number for line drop compensation (if 0 generator power will be used)","valid_range":{"max":null,"min":0}},{"name":"branch_id_control","data_type":"String","null_value":0,"comment":"Branch circuit id for line drop compensation (as a string). If 0 generator power will be used"},{"name":"Freq_Flag","data_type":"Int","null_value":0,"comment":"Frequency Flag for REPCA1: 0: disable, 1:enable","valid_range":{"max":1,"min":0}},{"name":"K_pg","data_type":"Float64","null_value":0,"comment":"Active power PI control proportional gain","valid_range":{"max":null,"min":0}},{"name":"K_ig","data_type":"Float64","null_value":0,"comment":"Active power PI control integral gain","valid_range":{"max":null,"min":0}},{"name":"T_p","data_type":"Float64","null_value":0,"comment":"Real power measurement filter time constant (s)","valid_range":{"max":null,"min":0}},{"name":"fdbd_pnts","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Frequency error dead band thresholds `(fdbd1, fdbd2)`"},{"name":"fe_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on frequency error `(fe_min, fe_max)`"},{"name":"P_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on power reference `(P_min, P_max)`"},{"name":"T_g","data_type":"Float64","null_value":0,"comment":"Power Controller lag time constant","valid_range":{"max":null,"min":0}},{"name":"D_dn","data_type":"Float64","null_value":0,"comment":"Droop for over-frequency conditions","valid_range":{"max":0,"min":null}},{"name":"D_up","data_type":"Float64","null_value":0,"comment":"Droop for under-frequency conditions","valid_range":{"max":null,"min":0}},{"name":"dP_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on power reference ramp rates`(dP_min, dP_max)`"},{"name":"P_lim_inner","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on power reference for REECB`(P_min_inner, P_max_inner)`"},{"name":"T_pord","data_type":"Float64","null_value":0,"comment":"Power filter time constant REECB time constant","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ActiveRenewableControllerAB model depends on the Flag","internal_default":"PowerSystems.get_activeRETypeAB_states(Freq_Flag)[1]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The states of the ActiveRenewableControllerAB model depends on the Flag","internal_default":"PowerSystems.get_activeRETypeAB_states(Freq_Flag)[2]"}],"docstring":"Parameters of Active Power Controller including REPCA1 and REECB1","struct_name":"ActiveRenewableControllerAB","supertype":"ActivePowerControl"},{"fields":[{"name":"bus_control","data_type":"Int","null_value":0,"comment":"Bus Number for voltage control; ","valid_range":{"max":null,"min":0}},{"name":"from_branch_control","data_type":"Int","null_value":0,"comment":"Monitored branch FROM bus number for line drop compensation (if 0 generator power will be used)","valid_range":{"max":null,"min":0}},{"name":"to_branch_control","data_type":"Int","null_value":0,"comment":"Monitored branch TO bus number for line drop compensation (if 0 generator power will be used)","valid_range":{"max":null,"min":0}},{"name":"branch_id_control","data_type":"String","null_value":0,"comment":"Branch circuit id for line drop compensation (as a string). If 0 generator power will be used"},{"name":"VC_Flag","data_type":"Int","null_value":0,"comment":"Voltage Compensator Flag for REPCA1","valid_range":{"max":1,"min":0}},{"name":"Ref_Flag","data_type":"Int","null_value":0,"comment":"Flag for Reactive Power Control for REPCA1. 0: Q-control, 1: V-control","valid_range":{"max":1,"min":0}},{"name":"PF_Flag","data_type":"Int","null_value":0,"comment":"Flag for Power Factor Control for Outer Control of REECB1. 0: Q-control, 1: Power Factor Control","valid_range":{"max":1,"min":0}},{"name":"V_Flag","data_type":"Int","null_value":0,"comment":"Flag for Voltage Control for Outer Control of REECB1. 0: Voltage Control, 1: Q-Control","valid_range":{"max":1,"min":0}},{"name":"T_fltr","data_type":"Float64","null_value":0,"comment":"Voltage or Q-power of REPCA Filter Time Constant","valid_range":{"max":null,"min":0}},{"name":"K_p","data_type":"Float64","null_value":0,"comment":"Reactive power PI control proportional gain","valid_range":{"max":null,"min":0}},{"name":"K_i","data_type":"Float64","null_value":0,"comment":"Reactive power PI control integral gain","valid_range":{"max":null,"min":0}},{"name":"T_ft","data_type":"Float64","null_value":0,"comment":"Reactive power lead time constant (s)","valid_range":{"max":null,"min":0}},{"name":"T_fv","data_type":"Float64","null_value":0,"comment":"Reactive power lag time constant (s)","valid_range":{"max":null,"min":0}},{"name":"V_frz","data_type":"Float64","null_value":0,"comment":"Voltage below which state ξq_oc (integrator state) is freeze","valid_range":{"max":null,"min":0}},{"name":"R_c","data_type":"Float64","null_value":0,"comment":"Line drop compensation resistance (used when VC_Flag = 1)","valid_range":{"max":null,"min":0}},{"name":"X_c","data_type":"Float64","null_value":0,"comment":"Line drop compensation reactance (used when VC_Flag = 1)","valid_range":{"max":null,"min":0}},{"name":"K_c","data_type":"Float64","null_value":0,"comment":"Reactive current compensation gain (pu) (used when VC_Flag = 0)","valid_range":{"max":null,"min":0}},{"name":"e_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on Voltage or Q-power deadband output `(e_min, e_max)`"},{"name":"dbd_pnts","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Voltage or Q-power error dead band thresholds `(dbd1, dbd2)`"},{"name":"Q_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on reactive power V/Q control in REPCA `(Q_min, Q_max)`"},{"name":"T_p","data_type":"Float64","null_value":0,"comment":"Active power lag time constant in REECB (s). Used only when PF_Flag = 1","valid_range":{"max":null,"min":0}},{"name":"Q_lim_inner","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on reactive power input in REECB `(Q_min_inner, Q_max_inner)`. Only used when V_Flag = 1"},{"name":"V_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on reactive power PI controller in REECB `(V_min, V_max)`. Only used when V_Flag = 1"},{"name":"K_qp","data_type":"Float64","null_value":0,"comment":"Reactive power regulator proportional gain (used when V_Flag = 1)","valid_range":{"max":null,"min":0}},{"name":"K_qi","data_type":"Float64","null_value":0,"comment":"Reactive power regulator integral gain (used when V_Flag = 1)","valid_range":{"max":null,"min":0}},{"name":"Q_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ReactiveRenewableControllerAB model depends on the Flag","internal_default":"PowerSystems.get_reactiveRETypeAB_states(Ref_Flag, PF_Flag, V_Flag)[1]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The states of the ReactiveRenewableControllerAB model depends on the Flag","internal_default":"PowerSystems.get_reactiveRETypeAB_states(Ref_Flag, PF_Flag, V_Flag)[2]"}],"docstring":"Parameters of Reactive Power Controller including REPCA1 and REECB1","struct_name":"ReactiveRenewableControllerAB","supertype":"ReactivePowerControl"},{"fields":[{"name":"kq","data_type":"Float64","null_value":0,"comment":"frequency droop gain","valid_range":{"max":null,"min":0}},{"name":"ωf","data_type":"Float64","null_value":0,"comment":"filter frequency cutoff","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ReactivePowerDroop model are:\n\tq_oc: Filtered reactive output power","internal_default":"[:q_oc]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ReactivePowerDroop has 1 state","internal_default":1}],"docstring":"Parameters of a Reactive Power droop controller","struct_name":"ReactivePowerDroop","supertype":"ReactivePowerControl"},{"fields":[{"name":"Kp_q","data_type":"Float64","null_value":0,"comment":"Proportional Gain","valid_range":{"max":null,"min":0}},{"name":"Ki_q","data_type":"Float64","null_value":0,"comment":"Integral Gain","valid_range":{"max":null,"min":0}},{"name":"ωf","data_type":"Float64","null_value":0,"comment":"filter frequency cutoff","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"Q_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reactive Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ReactivePowerPI model are:\n\tσq_oc: Integrator state of the PI Controller,\n\tq_oc: Measured reactive power of the inverter model","internal_default":"[:σq_oc, :q_oc]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ReactivePowerPI has two states","internal_default":2}],"docstring":"Parameters of a Proportional-Integral Reactive Power controller for a specified power reference","struct_name":"ReactivePowerPI","supertype":"ReactivePowerControl"},{"fields":[{"name":"k2","data_type":"Float64","null_value":0,"comment":"VOC voltage-amplitude control gain","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"Q_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Reactive Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ReactiveVirtualOscilator model are:\n\tE_oc: voltage reference state for inner control in the d-axis","internal_default":"[:E_oc]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ReactiveVirtualOscillator has 1 state","internal_default":1}],"docstring":"Parameters of a Reactive Virtual Oscillator controller. Model is based from the paper Model Reduction for Inverters with Current Limiting and Dispatchable Virtual Oscillator Control by O. Ajala et al.","struct_name":"ReactiveVirtualOscillator","supertype":"ReactivePowerControl"},{"fields":[{"name":"kpv","data_type":"Float64","null_value":0,"comment":"voltage controller proportional gain","valid_range":{"max":null,"min":0}},{"name":"kiv","data_type":"Float64","null_value":0,"comment":"voltage controller integral gain","valid_range":{"max":null,"min":0}},{"name":"kffv","data_type":"Float64","null_value":0,"comment":"Binary variable to enable feed-forward gain of voltage.","valid_range":{"max":null,"min":0}},{"name":"rv","data_type":"Float64","null_value":0,"comment":"virtual resistance","valid_range":{"max":null,"min":0}},{"name":"lv","data_type":"Float64","null_value":0,"comment":"virtual inductance","valid_range":{"max":null,"min":0}},{"name":"kpc","data_type":"Float64","null_value":0,"comment":"current controller proportional gain","valid_range":{"max":null,"min":0}},{"name":"kic","data_type":"Float64","null_value":0,"comment":"current controller integral gain","valid_range":{"max":null,"min":0}},{"name":"kffi","data_type":"Float64","null_value":0,"comment":"Binary variable to enable feed-forward gain of current","valid_range":{"max":null,"min":0}},{"name":"ωad","data_type":"Float64","null_value":0,"comment":"active damping filter cutoff frequency (rad/sec)","valid_range":{"max":null,"min":0}},{"name":"kad","data_type":"Float64","null_value":0,"comment":"active damping gain","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the VoltageModeControl model are:\n\tξd_ic: d-axis integrator state of the PI voltage controller,\n\tξq_ic: q-axis integrator state of the PI voltage controller,\n\tγd_ic: d-axis integrator state of the PI current controller,\n\tγq_ic: q-axis integrator state of the PI current controller,\n\tϕd_ic: d-axis low-pass filter of active damping,\n\tϕq_ic: q-axis low-pass filter of active damping","internal_default":"[:ξd_ic, :ξq_ic, :γd_ic, :γq_ic, :ϕd_ic, :ϕq_ic]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"VoltageModeControl has 6 states","internal_default":6}],"docstring":"Parameters of an inner loop current control PID using virtual impedance based on D'Arco, Suul and Fosso.\n\"A Virtual Synchronous Machine implementation for distributed control of power converters in SmartGrids.\"\nElectric Power Systems Research 122 (2015) 180–197.","struct_name":"VoltageModeControl","supertype":"InnerControl"},{"fields":[{"name":"kpc","data_type":"Float64","null_value":0,"comment":"Current controller proportional gain","valid_range":{"max":null,"min":0}},{"name":"kic","data_type":"Float64","null_value":0,"comment":"Current controller integral gain","valid_range":{"max":null,"min":0}},{"name":"kffv","data_type":"Float64","null_value":0,"comment":"Gain to enable feed-forward gain of voltage.","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the CurrentModeControl model are:\n\tγd_ic: d-axis integrator state of the PI current controller,\n\tγq_ic: q-axis integrator state of the PI current controller","internal_default":"[:γd_ic, :γq_ic]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"CurrentControl has 2 states","internal_default":2}],"docstring":"Parameters of an inner loop PI current control using based on Purba, Dhople, Jafarpour, Bullo and Johnson.\n\"Reduced-order Structure-preserving Model for Parallel-connected Three-phase Grid-tied Inverters.\"\n2017 IEEE 18th Workshop on Control and Modeling for Power Electronics (COMPEL): 1-7.","struct_name":"CurrentModeControl","supertype":"InnerControl"},{"fields":[{"name":"Q_Flag","data_type":"Int","null_value":0,"comment":"Q Flag used for I_qinj","valid_range":{"max":1,"min":0}},{"name":"PQ_Flag","data_type":"Int","null_value":0,"comment":"PQ Flag used for the Current Limit Logic","valid_range":{"max":1,"min":0}},{"name":"Vdip_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for Voltage Dip Logic `(Vdip, Vup)`"},{"name":"T_rv","data_type":"Float64","null_value":0,"comment":"Voltage Filter Time Constant","valid_range":{"max":null,"min":0}},{"name":"dbd_pnts","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Voltage error deadband thresholds `(dbd1, dbd2)`"},{"name":"K_qv","data_type":"Float64","null_value":0,"comment":"Reactive current injection gain during over and undervoltage conditions","valid_range":{"max":null,"min":0}},{"name":"Iqinj_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for Iqinj `(I_qh1, I_ql1)`"},{"name":"V_ref0","data_type":"Float64","null_value":0,"comment":"User defined reference. If 0, PSID initializes to initial terminal voltage","valid_range":{"max":null,"min":0}},{"name":"K_vp","data_type":"Float64","null_value":0,"comment":"Voltage regulator proportional gain (used when QFlag = 1)","valid_range":{"max":null,"min":0}},{"name":"K_vi","data_type":"Float64","null_value":0,"comment":"Voltage regulator integral gain (used when QFlag = 1)","valid_range":{"max":null,"min":0}},{"name":"T_iq","data_type":"Float64","null_value":0,"comment":"Time constant for low-pass filter for state q_V when QFlag = 0","valid_range":{"max":null,"min":0}},{"name":"I_max","data_type":"Float64","null_value":0,"comment":"Maximum limit on total converter current","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the RECurrentControlB depends on the Flags","internal_default":"PowerSystems.get_REControlB_states(Q_Flag)"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The states of the RECurrentControlB depends on the Flags","internal_default":"2"}],"docstring":"Parameters of the Inner Control part of the REECB model in PSS/E","struct_name":"RECurrentControlB","supertype":"InnerControl"},{"fields":[{"name":"I_max","data_type":"Float64","null_value":0,"comment":"Maximum limit on current controller input current (device base)","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"}],"docstring":"Parameters of Magnitude (Circular) Current Controller Limiter","struct_name":"MagnitudeCurrentLimiter","supertype":"InverterLimiter"},{"fields":[{"name":"Id_max","data_type":"Float64","null_value":0,"comment":"Maximum limit on d-axis current controller input current (device base)","valid_range":{"max":null,"min":0}},{"name":"Iq_max","data_type":"Float64","null_value":0,"comment":"Maximum limit on d-axis current controller input current (device base)","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"}],"docstring":"Parameters of Instantaneous (Square) Current Controller Limiter","struct_name":"InstantaneousCurrentLimiter","supertype":"InverterLimiter"},{"fields":[{"name":"I_max","data_type":"Float64","null_value":0,"comment":"Maximum limit on current controller input current (device base)","valid_range":{"max":null,"min":0}},{"name":"ϕ_I","data_type":"Float64","null_value":0,"comment":"Pre-defined angle (measured against the d-axis) for Iref once limit is hit","valid_range":{"max":1.571,"min":-1.571}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"}],"docstring":"Parameters of Priority-Based Current Controller Limiter","struct_name":"PriorityCurrentLimiter","supertype":"InverterLimiter"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"Pf_Flag","data_type":"Int","null_value":0,"comment":"Flag for Power Factor Control","valid_range":{"max":1,"min":0}},{"name":"Freq_Flag","data_type":"Int","null_value":0,"comment":"Flag to enable/disable frequency control","valid_range":{"max":1,"min":0}},{"name":"PQ_Flag","data_type":"Int","null_value":0,"comment":"Flag used to enforce maximum current","valid_range":{"max":1,"min":0}},{"name":"Gen_Flag","data_type":"Int","null_value":0,"comment":"Flag to specify generator or storage","valid_range":{"max":1,"min":0}},{"name":"Vtrip_Flag","data_type":"Int","null_value":0,"comment":"Flag to enable/disable voltage trip logic","valid_range":{"max":1,"min":0}},{"name":"Ftrip_Flag","data_type":"Int","null_value":0,"comment":"Flag to enable/disable frequency trip logic","valid_range":{"max":1,"min":0}},{"name":"T_rv","data_type":"Float64","null_value":0,"comment":"Voltage measurement transducer time constant","valid_range":{"max":null,"min":0}},{"name":"Trf","data_type":"Float64","null_value":0,"comment":"Frequency measurement transducer time constant","valid_range":{"max":null,"min":0}},{"name":"dbd_pnts","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Voltage deadband thresholds `(dbd1, dbd2)`"},{"name":"K_qv","data_type":"Float64","null_value":0,"comment":"Proportional voltage control gain (pu)","valid_range":{"max":null,"min":0}},{"name":"Tp","data_type":"Float64","null_value":0,"comment":"Power measurement transducer time constant","valid_range":{"max":null,"min":0}},{"name":"T_iq","data_type":"Float64","null_value":0,"comment":"Time constant for low-pass filter for state q_V when QFlag = 0","valid_range":{"max":null,"min":0}},{"name":"D_dn","data_type":"Float64","null_value":0,"comment":"Reciprocal of droop for over-frequency conditions (>0) (pu)","valid_range":{"max":null,"min":0}},{"name":"D_up","data_type":"Float64","null_value":0,"comment":"Reciprocal of droop for under-frequency conditions <=0) (pu)","valid_range":{"max":null,"min":0}},{"name":"fdbd_pnts","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Frequency control deadband thresholds `(fdbd1, fdbd2)`"},{"name":"fe_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Frequency error limits (femin, femax)"},{"name":"P_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Power limits (Pmin, Pmax)"},{"name":"dP_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Power reference ramp rate limits (dPmin, dPmax)"},{"name":"Tpord","data_type":"Float64","null_value":0,"comment":"Power filter time constant","valid_range":{"max":null,"min":0}},{"name":"Kpg","data_type":"Float64","null_value":0,"comment":"PI controller proportional gain (pu)","valid_range":{"max":null,"min":0}},{"name":"Kig","data_type":"Float64","null_value":0,"comment":"PI controller integral gain (pu)","valid_range":{"max":null,"min":0}},{"name":"I_max","data_type":"Float64","null_value":0,"comment":"Maximum limit on total converter current (pu)","valid_range":{"max":null,"min":0}},{"name":"vl_pnts","data_type":"Vector{Tuple{Float64,Float64}}","null_value":"[(0.0, 0.0), (0.0, 0.0)]","comment":"Low voltage cutout points `[(tv10, vl0), (tv11, vl1)]`"},{"name":"vh_pnts","data_type":"Vector{Tuple{Float64,Float64}}","null_value":"[(0.0, 0.0), (0.0, 0.0)]","comment":"High voltage cutout points `[(tvh0, vh0), (tvh1, vh1)]`"},{"name":"Vrfrac","data_type":"Float64","null_value":0,"comment":"Fraction of device that recovers after voltage comes back to within vl1 < V < vh1 (0 <= Vrfrac <= 1)","valid_range":{"max":1,"min":0}},{"name":"fl","data_type":"Float64","null_value":0,"comment":"Inverter frequency break-point for low frequency cut-out (Hz)","valid_range":{"max":null,"min":0}},{"name":"fh","data_type":"Float64","null_value":0,"comment":"Inverter frequency break-point for high frequency cut-out (Hz)","valid_range":{"max":null,"min":0}},{"name":"tfl","data_type":"Float64","null_value":0,"comment":"Low frequency cut-out timer corresponding to frequency fl (s)","valid_range":{"max":null,"min":0}},{"name":"tfh","data_type":"Float64","null_value":0,"comment":"High frequency cut-out timer corresponding to frequency fh (s)","valid_range":{"max":null,"min":0}},{"name":"Tg","data_type":"Float64","null_value":0,"comment":"Current control time constant (to represent behavior of inner control loops) (> 0) (s)","valid_range":{"max":null,"min":0}},{"name":"rrpwr","data_type":"Float64","null_value":0,"comment":"Ramp rate for real power increase following a fault (pu/s)","valid_range":{"max":null,"min":0}},{"name":"Tv","data_type":"Float64","null_value":0,"comment":"Time constant on the output of the multiplier (s)","valid_range":{"max":null,"min":0}},{"name":"Vpr","data_type":"Float64","null_value":0,"comment":"Voltage below which frequency tripping is disabled (pu)","valid_range":{"max":null,"min":0}},{"name":"Iq_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Reactive current injection limits (Iqll, Iqhl)"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"User defined voltage reference. If 0, PSID initializes to initial terminal voltage","valid_range":{"max":null,"min":0}},{"name":"Pfa_ref","default":"0.0","data_type":"Float64","null_value":0,"comment":"Reference power factor","valid_range":{"max":null,"min":0}},{"name":"ω_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference frequency","valid_range":{"max":null,"min":0}},{"name":"Q_ref","default":"0.0","data_type":"Float64","null_value":0,"comment":"Reference reactive power, in pu","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference active power, in pu","valid_range":{"max":null,"min":0}},{"name":"base_power","default":"100.0","data_type":"Float64","null_value":0,"comment":"Base power"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of AggregateDistributedGenerationA depends on the Flags","internal_default":"PowerSystems.get_AggregateDistributedGenerationA_states(Freq_Flag)[1]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The states of AggregateDistributedGenerationA depends on the Flags","internal_default":"PowerSystems.get_AggregateDistributedGenerationA_states(Freq_Flag)[2]"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of the DERA1 model in PSS/E","struct_name":"AggregateDistributedGenerationA","supertype":"DynamicInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","data_type":"Float64","null_value":"0.0"},{"name":"R_th","data_type":"Float64","null_value":0,"comment":"Source Thevenin resistance","valid_range":{"max":null,"min":0}},{"name":"X_th","data_type":"Float64","null_value":0,"comment":"Source Thevenin reactance","valid_range":{"max":null,"min":0}},{"name":"internal_voltage","default":"1.0","data_type":"Float64","null_value":0,"comment":"Internal Voltage","valid_range":{"max":null,"min":0}},{"name":"internal_angle","default":"0.0","data_type":"Float64","null_value":0,"comment":"Internal Angle"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"This struct acts as an infinity bus.","struct_name":"Source","supertype":"StaticInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"R_th","data_type":"Float64","null_value":0,"comment":"Source Thevenin resistance","valid_range":{"max":null,"min":0}},{"name":"X_th","data_type":"Float64","null_value":0,"comment":"Source Thevenin reactance","valid_range":{"max":null,"min":0}},{"name":"internal_voltage_bias","default":"0.0","data_type":"Float64","null_value":0,"comment":"a0 term of the Fourier Series for the voltage"},{"name":"internal_voltage_frequencies","default":"[0.0]","data_type":"Vector{Float64}","null_value":[0],"comment":"Frequencies in radians/s"},{"name":"internal_voltage_coefficients","default":"[(0.0, 0.0)]","data_type":"Vector{Tuple{Float64,Float64}}","null_value":"[(0.0, 0.0)]","comment":"Coefficients for terms n > 1. First component corresponds to sin and second component to cos"},{"name":"internal_angle_bias","default":"0.0","data_type":"Float64","null_value":0,"comment":"a0 term of the Fourier Series for the angle"},{"name":"internal_angle_frequencies","default":"[0.0]","data_type":"Vector{Float64}","null_value":[0],"comment":"Frequencies in radians/s"},{"name":"internal_angle_coefficients","default":"[(0.0, 0.0)]","data_type":"Vector{Tuple{Float64,Float64}}","null_value":"[(0.0, 0.0)]","comment":"Coefficients for terms n > 1. First component corresponds to sin and second component to cos"},{"name":"base_power","default":"100.0","data_type":"Float64","null_value":0,"comment":"Base power"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"State for time, voltage and angle","internal_default":"[:Vt, :θt]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"null_value":2,"internal_default":2},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"This struct acts as an infinity bus with time varying phasor values magnitude and angle V(t) \theta(t). Time varying functions are represented using fourier series","struct_name":"PeriodicVariableSource","supertype":"DynamicInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"Qref_Flag","data_type":"Int","null_value":1,"comment":"Reactive Power Control Mode. 1 VoltVar Control, 2 Constant Q Control, 3 Constant PF Control","valid_range":{"max":3,"min":1}},{"name":"PQ_Flag","data_type":"Int","null_value":0,"comment":"Active and reactive power priority mode. 0 for Q priority, 1 for P priority","valid_range":{"max":1,"min":0}},{"name":"Gen_Flag","data_type":"Int","null_value":0,"comment":"Define generator or storage system. 0 unit is a storage device, 1 unit is a generator","valid_range":{"max":1,"min":0}},{"name":"PerOp_Flag","data_type":"Int","null_value":0,"comment":"Defines operation of permisible region in VRT characteristic. 0 for cease, 1 for continuous operation","valid_range":{"max":1,"min":0}},{"name":"Recon_Flag","data_type":"Int","null_value":0,"comment":"Defines if DER can reconnect after voltage ride-through disconnection","valid_range":{"max":1,"min":0}},{"name":"Trv","data_type":"Float64","null_value":0,"comment":"Voltage measurement transducer's time constant, in s","valid_range":{"max":null,"min":0}},{"name":"VV_pnts","data_type":"NamedTuple{(:V1, :V2, :V3, :V4), Tuple{Float64, Float64, Float64, Float64}}","null_value":"(V1=0.0, V2=0.0, V3=0.0, V4=0.0)","comment":"Y-axis Volt-var curve points (V1,V2,V3,V4)"},{"name":"Q_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Reactive power limits in pu (Q_min, Q_max)"},{"name":"Tp","data_type":"Float64","null_value":0,"comment":"Power measurement transducer's time constant, in s","valid_range":{"max":null,"min":0}},{"name":"e_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Error limit in PI controller for q control (e_min, e_max)"},{"name":"Kpq","data_type":"Float64","null_value":0,"comment":"PI controller proportional gain for q control","valid_range":{"max":null,"min":0}},{"name":"Kiq","data_type":"Float64","null_value":0,"comment":"PI controller integral gain for q control","valid_range":{"max":null,"min":0}},{"name":"Iqr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limit on rate of change for reactive current (pu/s) (Iqr_min, Iqr_max)"},{"name":"I_max","data_type":"Float64","null_value":0,"comment":"Max. inverter's current","valid_range":{"max":null,"min":0}},{"name":"Tg","data_type":"Float64","null_value":0,"comment":"Current control's time constant, in s","valid_range":{"max":null,"min":0}},{"name":"kWh_Cap","data_type":"Float64","null_value":0,"comment":"BESS capacity in kWh","valid_range":{"max":null,"min":0}},{"name":"SOC_ini","data_type":"Float64","null_value":0,"comment":"Initial state of charge (SOC) in pu","valid_range":{"max":1,"min":0}},{"name":"SOC_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Battery's SOC limits (SOC_min, SOC_max)"},{"name":"Trf","data_type":"Float64","null_value":0,"comment":"Time constant to estimate system frequency, in s","valid_range":{"max":null,"min":0}},{"name":"fdbd_pnts","data_type":"NamedTuple{(:fdbd1, :fdbd2), Tuple{Float64, Float64}}","null_value":"(fdbd1=0.0, fdbd2=0.0)","comment":"Frequency error dead band thresholds `(fdbd1, fdbd2)`"},{"name":"D_dn","data_type":"Float64","null_value":0,"comment":"reciprocal of droop for over-frequency conditions, in pu","valid_range":{"max":null,"min":0}},{"name":"D_up","data_type":"Float64","null_value":0,"comment":"reciprocal of droop for under-frequency conditions, in pu","valid_range":{"max":null,"min":0}},{"name":"fe_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Frequency error limits in pu (fe_min, fe_max)"},{"name":"Kpp","data_type":"Float64","null_value":0,"comment":"PI controller proportional gain for p control","valid_range":{"max":null,"min":0}},{"name":"Kip","data_type":"Float64","null_value":0,"comment":"PI controller integral gain for p control","valid_range":{"max":null,"min":0}},{"name":"P_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Active power limits in pu (P_min, P_max)"},{"name":"dP_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Ramp rate limits for active power in pu/s (dP_min, dP_max)"},{"name":"T_pord","data_type":"Float64","null_value":0,"comment":"Power filter time constant in s","valid_range":{"max":null,"min":0}},{"name":"rrpwr","data_type":"Float64","null_value":0,"comment":"Ramp rate for real power increase following a fault, in pu/s","valid_range":{"max":null,"min":0}},{"name":"VRT_pnts","data_type":"NamedTuple{(:vrt1, :vrt2, :vrt3, :vrt4, :vrt5), Tuple{Float64, Float64, Float64, Float64, Float64}}","null_value":"(vrt1=0.0, vrt2=0.0, vrt3=0.0, vrt4=0.0, vrt5=0.0)","comment":"Voltage ride through v points (vrt1,vrt2,vrt3,vrt4,vrt5)"},{"name":"TVRT_pnts","data_type":"NamedTuple{(:tvrt1, :tvrt2, :tvrt3), Tuple{Float64, Float64, Float64}}","null_value":"(tvrt1=0.0, tvrt2=0.0, tvrt3=0.0)","comment":"Voltage ride through time points (tvrt1,tvrt2,tvrt3)"},{"name":"tV_delay","data_type":"Float64","null_value":0,"comment":"Time delay for reconnection after voltage ride-through disconnection","valid_range":{"max":null,"min":0}},{"name":"VES_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Min and max voltage for entering service (VES_min,VES_max)"},{"name":"FRT_pnts","data_type":"NamedTuple{(:frt1, :frt2, :frt3, :frt4), Tuple{Float64, Float64, Float64, Float64}}","null_value":"(frt1=0.0, frt2=0.0, frt3=0.0, frt4=0.0)","comment":"Frequency ride through v points (frt1,frt2,frt3,frt4)"},{"name":"TFRT_pnts","data_type":"NamedTuple{(:tfrt1, :tfrt2), Tuple{Float64, Float64}}","null_value":"(tfrt1=0.0, tfrt2=0.0)","comment":"Frequency ride through time points (tfrt1,tfrt2)"},{"name":"tF_delay","data_type":"Float64","null_value":0,"comment":"Time delay for reconnection after frequency ride-through disconnection","valid_range":{"max":null,"min":0}},{"name":"FES_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Min and max frequency for entering service (FES_min,FES_max)"},{"name":"Pfa_ref","default":"0.0","data_type":"Float64","null_value":0,"comment":"Reference power factor","valid_range":{"max":null,"min":0}},{"name":"Q_ref","default":"0.0","data_type":"Float64","null_value":0,"comment":"Reference reactive power, in pu","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference active power, in pu","valid_range":{"max":null,"min":0}},{"name":"base_power","default":"100.0","data_type":"Float64","null_value":0,"comment":"Base power"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of GenericDER depend on the Flags","internal_default":"PowerSystems.get_GenericDER_states(Qref_Flag)[1]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The states of GenericDER depend on the Flags","internal_default":"PowerSystems.get_GenericDER_states(Qref_Flag)[2]"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a Generic Distributed Energy Resource Model. Based on https://scholarspace.manoa.hawaii.edu/bitstream/10125/70994/0304.pdf","struct_name":"GenericDER","supertype":"DynamicInjection"},{"fields":[{"name":"device"},{"name":"droop","data_type":"Float64","valid_range":{"max":null,"min":0}},{"name":"participation_factor","data_type":"UpDown"},{"name":"reserve_limit_dn","data_type":"Float64","valid_range":{"max":null,"min":0}},{"name":"reserve_limit_up","data_type":"Float64","valid_range":{"max":null,"min":0}},{"name":"inertia","data_type":"Float64","valid_range":{"max":null,"min":0}},{"name":"cost","data_type":"Float64","valid_range":{"max":null,"min":0}},{"name":"time_series_container","data_type":"InfrastructureSystems.TimeSeriesContainer"},{"name":"internal","data_type":"InfrastructureSystems.InfrastructureSystemsInternal"}],"struct_name":"RegulationDevice"}]} \ No newline at end of file diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/initial_conditions.bin b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/initial_conditions.bin new file mode 100644 index 0000000000..f48970cb50 Binary files /dev/null and b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/initial_conditions.bin differ diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/model.bin b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/model.bin new file mode 100644 index 0000000000..d921f1013c Binary files /dev/null and b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/model.bin differ diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/optimization_container_metadata.bin b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/optimization_container_metadata.bin new file mode 100644 index 0000000000..d6c32c8cdb Binary files /dev/null and b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/optimization_container_metadata.bin differ diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274.json b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274.json new file mode 100644 index 0000000000..e920d710c2 --- /dev/null +++ b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274.json @@ -0,0 +1 @@ +{"internal":{"uuid":{"value":"d2d6a462-a404-4a66-ae27-f60656b96274"},"ext":null,"units_info":null},"data":{"validation_descriptor_file":"system-d2d6a462-a404-4a66-ae27-f60656b96274_validation_descriptors.json","masked_components":[],"version_info":{"julia_version":"1.10.2","package_info":"Status `~/work/PowerSimulations.jl/PowerSimulations.jl/docs/Manifest.toml`\n [a4c015fc] ANSIColoredPrinters v0.0.1\n [1520ce14] AbstractTrees v0.4.5\n [79e6a3ab] Adapt v4.0.2\n [4fba245c] ArrayInterface v7.8.0\n [6e4b80f9] BenchmarkTools v1.5.0\n [a74b3585] Blosc v0.7.3\n [336ed68f] CSV v0.10.13\n [9961bab8] Cbc v1.2.0\n [523fee87] CodecBzip2 v0.8.2\n [944b1d66] CodecZlib v0.7.4\n [bbf7d656] CommonSubexpressions v0.3.0\n [34da2185] Compat v4.14.0\n [187b0558] ConstructionBase v1.5.4\n [a8cc5b0e] Crayons v4.1.1\n [9a962f9c] DataAPI v1.16.0\n [a93c6f00] DataFrames v1.6.1\n [864edb3b] DataStructures v0.18.18\n [e2d170a0] DataValueInterfaces v1.0.0\n [8bb1440f] DelimitedFiles v1.9.1\n [163ba53b] DiffResults v1.1.0\n [b552c78f] DiffRules v1.15.1\n [b4f34e82] Distances v0.10.11\n [ffbed154] DocStringExtensions v0.9.3\n⌅ [e30172f5] Documenter v0.27.25\n [35a29f4d] DocumenterTools v0.1.19\n [e2ba6199] ExprTools v0.1.10\n [48062228] FilePathsBase v0.9.21\n [6a86dc24] FiniteDiff v2.22.0\n [1fa38f19] Format v1.3.6\n [f6369f11] ForwardDiff v0.10.36\n [60bf3e95] GLPK v1.1.3\n [708ec375] Gumbo v0.8.2\n [c8ec2601] H5Zblosc v0.1.2\n [f67ccb44] HDF5 v0.17.1\n [87dc4568] HiGHS v1.8.1\n [fc1677e0] HydroPowerSimulations v0.8.0\n [b5f81e59] IOCapture v0.2.4\n [2030c09a] InfrastructureModels v0.7.8\n [2cd47ed4] InfrastructureSystems v1.22.2\n [842dd82b] InlineStrings v1.4.0\n [41ab1584] InvertedIndices v1.3.0\n [92d709cd] IrrationalConstants v0.2.2\n [82899510] IteratorInterfaceExtensions v1.0.0\n [692b3bcd] JLLWrappers v1.5.0\n [682c06a0] JSON v0.21.4\n [0f8b85d8] JSON3 v1.14.0\n [4076af6c] JuMP v1.20.0\n⌅ [ef3ab10e] KLU v0.5.0\n [b964fa9f] LaTeXStrings v1.3.1\n [23fbe1c1] Latexify v0.16.2\n [1d6d02ad] LeftChildRightSiblingTrees v0.2.0\n [d3d80556] LineSearches v7.2.0\n [2ab3a3ac] LogExpFunctions v0.3.27\n [33e6dc65] MKL v0.6.3\n [3da0fdf6] MPIPreferences v0.1.10\n [1914dd2f] MacroTools v0.5.13\n [b8f27783] MathOptInterface v1.27.0\n [f28f55f0] Memento v1.4.1\n [e1d29d7a] Missings v1.1.0\n [ffc61752] Mustache v1.0.19\n [d8a4904e] MutableArithmetics v1.4.1\n [d41bc354] NLSolversBase v7.8.3\n [2774e3e8] NLsolve v4.5.1\n [77ba4419] NaNMath v1.0.2\n [bac558e1] OrderedCollections v1.6.3\n [d96e819e] Parameters v0.12.3\n [46dd5b70] Pardiso v0.5.6\n [69de0a69] Parsers v2.8.1\n [2dfb63ee] PooledArrays v1.4.3\n [dd99e9e3] PowerFlowData v1.5.0\n⌃ [c36e90e8] PowerModels v0.20.1\n [bed98974] PowerNetworkMatrices v0.10.2\n [e690365d] PowerSimulations v0.27.5 `~/work/PowerSimulations.jl/PowerSimulations.jl`\n [f00506e0] PowerSystemCaseBuilder v1.2.4\n [bcd98974] PowerSystems v3.2.3\n [aea7be01] PrecompileTools v1.2.0\n [21216c6a] Preferences v1.4.3\n [08abe8d2] PrettyTables v2.3.1\n [33c8b6b6] ProgressLogging v0.1.4\n [92933f4c] ProgressMeter v1.10.0\n [3cdcf5f2] RecipesBase v1.3.4\n [189a3867] Reexport v1.2.2\n [ae029012] Requires v1.3.0\n [322a6be2] Sass v0.2.0\n [91c51154] SentinelArrays v1.4.1\n [efcf1570] Setfield v1.1.1\n [a2af1166] SortingAlgorithms v1.2.1\n [276daf66] SpecialFunctions v2.3.1\n [1e83bf80] StaticArraysCore v1.4.2\n [82ae8749] StatsAPI v1.7.0\n [69024149] StringEncodings v0.3.7\n [892a3eda] StringManipulation v0.3.4\n [856f2bd8] StructTypes v1.10.0\n [3783bdb8] TableTraits v1.0.1\n [bd369af6] Tables v1.11.1\n [5d786b92] TerminalLoggers v0.1.7\n⌅ [9e3dc215] TimeSeries v0.23.2\n [a759f4b9] TimerOutputs v0.5.23\n [3bb67fe8] TranscodingStreams v0.10.4\n [3a884ed6] UnPack v1.0.2\n [ea10d353] WeakRefStrings v1.4.2\n [76eceee3] WorkerUtilities v1.6.1\n [ddb6d928] YAML v0.4.9\n [ae81ac8f] ASL_jll v0.1.3+0\n [0b7ba130] Blosc_jll v1.21.5+0\n [6e34b625] Bzip2_jll v1.0.8+1\n [38041ee0] Cbc_jll v200.1000.800+0\n [3830e938] Cgl_jll v0.6000.600+0\n [06985876] Clp_jll v100.1700.700+1\n [be027038] CoinUtils_jll v200.1100.600+0\n [e8aa6df9] GLPK_jll v5.0.1+0\n [528830af] Gumbo_jll v0.10.2+0\n⌃ [0234f1f7] HDF5_jll v1.12.2+2\n [8fd58aa0] HiGHS_jll v1.6.0+1\n [1d5cc7b8] IntelOpenMP_jll v2024.0.2+0\n [94ce4f54] Libiconv_jll v1.17.0+0\n [5ced341a] Lz4_jll v1.9.4+0\n [d00139f3] METIS_jll v5.1.2+0\n [856f044c] MKL_jll v2024.0.0+0\n [d7ed1dd3] MUMPS_seq_jll v500.600.201+0\n⌅ [656ef2d0] OpenBLAS32_jll v0.3.24+0\n⌅ [9bd350c2] OpenSSH_jll v8.9.0+1\n⌅ [458c3c95] OpenSSL_jll v1.1.23+0\n [efe28fd5] OpenSpecFun_jll v0.5.5+0\n [7da25872] Osi_jll v0.10800.700+0\n [3161d3a3] Zstd_jll v1.5.5+0\n [47bcb7c8] libsass_jll v3.6.4+0\n [0dad84c5] ArgTools v1.1.1\n [56f22d72] Artifacts\n [2a0f44e3] Base64\n [ade2ca70] Dates\n [8ba89e20] Distributed\n [f43a241f] Downloads v1.6.0\n [7b1f6079] FileWatching\n [9fa8497b] Future\n [b77e0a4c] InteractiveUtils\n [4af54fe1] LazyArtifacts\n [b27032c2] LibCURL v0.6.4\n [76f85450] LibGit2\n [8f399da3] Libdl\n [37e2e46d] LinearAlgebra\n [56ddb016] Logging\n [d6f4376e] Markdown\n [a63ad114] Mmap\n [ca575930] NetworkOptions v1.2.0\n [44cfe95a] Pkg v1.10.0\n [de0858da] Printf\n [9abbd945] Profile\n [3fa0cd96] REPL\n [9a3f8284] Random\n [ea8e919c] SHA v0.7.0\n [9e88b42a] Serialization\n [6462fe0b] Sockets\n [2f01184e] SparseArrays v1.10.0\n [10745b16] Statistics v1.10.0\n [4607b0f0] SuiteSparse\n [fa267f1f] TOML v1.0.3\n [a4e569a6] Tar v1.10.0\n [8dfed614] Test\n [cf7118a7] UUIDs\n [4ec0a83e] Unicode\n [e66e0078] CompilerSupportLibraries_jll v1.1.0+0\n [781609d7] GMP_jll v6.2.1+6\n [deac9b47] LibCURL_jll v8.4.0+0\n [e37daf67] LibGit2_jll v1.6.4+0\n [29816b5a] LibSSH2_jll v1.11.0+1\n [c8ffd9c3] MbedTLS_jll v2.28.2+1\n [14a3606d] MozillaCACerts_jll v2023.1.10\n [4536629a] OpenBLAS_jll v0.3.23+4\n [05823500] OpenLibm_jll v0.8.1+2\n [bea87d4a] SuiteSparse_jll v7.2.1+1\n [83775a58] Zlib_jll v1.2.13+1\n [8e850b90] libblastrampoline_jll v5.8.0+1\n [8e850ede] nghttp2_jll v1.52.0+1\n [3f19e933] p7zip_jll v17.4.0+2\nInfo Packages marked with ⌃ and ⌅ have new versions available. Those with ⌃ may be upgradable, but those with ⌅ are restricted by compatibility constraints from upgrading. To see why use `status --outdated -m`\n"},"internal":{"uuid":{"value":"1e9e86a7-b5d4-44e5-a59c-8a4632c805f9"},"ext":{},"units_info":null},"components":[{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"11.0","internal":{"uuid":{"value":"042a6750-6b56-48df-a356-2a7553fb8247"},"ext":null,"units_info":null},"peak_active_power":4.33,"peak_reactive_power":0.88,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"21.0","internal":{"uuid":{"value":"980c1b82-da6b-4c16-a29b-7bf335b5a157"},"ext":null,"units_info":null},"peak_active_power":4.33,"peak_reactive_power":0.88,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"25.0","internal":{"uuid":{"value":"7c5ce822-ebc8-4a3c-b971-32392fd5226a"},"ext":null,"units_info":null},"peak_active_power":3.09,"peak_reactive_power":0.63,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"32.0","internal":{"uuid":{"value":"b921f21f-4b2e-4e8e-a22c-8883987c7caa"},"ext":null,"units_info":null},"peak_active_power":5.29,"peak_reactive_power":1.08,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"33.0","internal":{"uuid":{"value":"72b28425-f50f-4108-b0b3-54f7562e639c"},"ext":null,"units_info":null},"peak_active_power":3.7,"peak_reactive_power":0.76,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"16.0","internal":{"uuid":{"value":"3c770eba-d6f1-47c2-a20f-a92554f7941a"},"ext":null,"units_info":null},"peak_active_power":6.109999999999999,"peak_reactive_power":1.23,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"22.0","internal":{"uuid":{"value":"830cec60-7717-481e-a6be-e3a27ca72933"},"ext":null,"units_info":null},"peak_active_power":5.29,"peak_reactive_power":1.08,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"34.0","internal":{"uuid":{"value":"a3d1f84d-feff-490c-ac68-3650145de81d"},"ext":null,"units_info":null},"peak_active_power":2.65,"peak_reactive_power":0.54,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"26.0","internal":{"uuid":{"value":"462c58ae-b91d-44c2-92bf-3fe6b682b700"},"ext":null,"units_info":null},"peak_active_power":6.109999999999999,"peak_reactive_power":1.23,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"24.0","internal":{"uuid":{"value":"2ff0b424-7619-42f1-a2c4-3f1d99f4bb31"},"ext":null,"units_info":null},"peak_active_power":2.65,"peak_reactive_power":0.54,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"27.0","internal":{"uuid":{"value":"c1aa076c-d538-462e-b0d2-0467101404dd"},"ext":null,"units_info":null},"peak_active_power":3.33,"peak_reactive_power":0.68,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"35.0","internal":{"uuid":{"value":"b4714f1a-bf9e-429c-8fdb-39e4d7fc5df5"},"ext":null,"units_info":null},"peak_active_power":3.09,"peak_reactive_power":0.63,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"12.0","internal":{"uuid":{"value":"e2cea7f4-1a18-4dd9-a132-9a64445f8101"},"ext":null,"units_info":null},"peak_active_power":5.29,"peak_reactive_power":1.08,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"13.0","internal":{"uuid":{"value":"ed9a2465-acf6-44a7-9a78-c09366991e28"},"ext":null,"units_info":null},"peak_active_power":3.7,"peak_reactive_power":0.76,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"17.0","internal":{"uuid":{"value":"fbe227a3-4afa-4baf-a519-0c8c43dd05c7"},"ext":null,"units_info":null},"peak_active_power":3.33,"peak_reactive_power":0.68,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"23.0","internal":{"uuid":{"value":"0ecd8acd-eff0-4097-8a6b-b6d2a7e88653"},"ext":null,"units_info":null},"peak_active_power":3.7,"peak_reactive_power":0.76,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"36.0","internal":{"uuid":{"value":"463e9907-ed70-4d26-ae54-029ba5b13d2c"},"ext":null,"units_info":null},"peak_active_power":6.109999999999999,"peak_reactive_power":1.23,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"14.0","internal":{"uuid":{"value":"ec695efa-2ea8-411d-99d0-013bd260b4c1"},"ext":null,"units_info":null},"peak_active_power":2.65,"peak_reactive_power":0.54,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"15.0","internal":{"uuid":{"value":"1bc1a652-acff-4936-a22c-99c4e9198fe1"},"ext":null,"units_info":null},"peak_active_power":3.09,"peak_reactive_power":0.63,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"31.0","internal":{"uuid":{"value":"dd9da590-b1c9-4db1-b963-8a30b6ece11e"},"ext":null,"units_info":null},"peak_active_power":4.33,"peak_reactive_power":0.88,"time_series_container":[]},{"__metadata__":{"module":"PowerSystems","type":"LoadZone"},"name":"37.0","internal":{"uuid":{"value":"a617ade0-13e8-4916-8d92-ba69c143971b"},"ext":null,"units_info":null},"peak_active_power":3.33,"peak_reactive_power":0.68,"time_series_container":[]},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"C31-2","reactive_power_flow":0.0,"arc":{"value":"d741b097-7db4-48ad-a511-b72adcdcedd2"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"b3aab1ed-fd80-475c-a55b-8bd28a778f5a"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.104,"b":{"from":0.014,"to":0.014},"r":0.027,"rate":1.75,"available":true,"time_series_container":[],"name":"B8","reactive_power_flow":0.0,"arc":{"value":"d17396f7-1110-4afd-bb74-5a164e7ea13d"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"9bab0caf-e4d8-4bb3-ba59-3c7479855a79"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.052,"b":{"from":0.0545,"to":0.0545},"r":0.007,"rate":5.0,"available":true,"time_series_container":[],"name":"B26","reactive_power_flow":0.0,"arc":{"value":"768a2c7c-0ff6-4efe-8fef-51fed6098707"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"6851b1b1-14de-49a1-9b9c-68d698b12215"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.04,"b":{"from":0.0415,"to":0.0415},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"A32-2","reactive_power_flow":0.0,"arc":{"value":"4f7c8cd3-3ca0-4b4b-97a0-a16be1d1234d"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"5a54f140-c01f-4ea2-b9f8-100f920063fc"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.097,"b":{"from":0.1015,"to":0.1015},"r":0.012,"rate":5.0,"available":true,"time_series_container":[],"name":"CA-1","reactive_power_flow":0.0,"arc":{"value":"1133d659-5885-40f6-9a3d-40479adee2be"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"d71c093a-100e-454d-b002-8c6fd1c5b1ef"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.192,"b":{"from":0.026,"to":0.026},"r":0.05,"rate":1.75,"available":true,"time_series_container":[],"name":"A5","reactive_power_flow":0.0,"arc":{"value":"ec140cb3-4905-4e5e-b272-22e76110ac64"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"3cb16193-e814-4003-a9f3-4315077321e2"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.068,"b":{"from":0.071,"to":0.071},"r":0.009,"rate":5.0,"available":true,"time_series_container":[],"name":"B34","reactive_power_flow":0.0,"arc":{"value":"c8077594-bbf9-4be9-b952-0d9416e43c1f"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"cb16f6d3-382b-40d3-b234-dc82d7df0293"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.042,"b":{"from":0.044,"to":0.044},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"B19","reactive_power_flow":0.0,"arc":{"value":"039f0487-6c32-4c4a-8e49-a27bf0e2bb02"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"8834cd59-60ad-4092-9313-e2dd0931fe54"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"B31-2","reactive_power_flow":0.0,"arc":{"value":"04018568-a175-4bbf-a782-a1e631785a34"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"e7d4b8ba-c772-46d5-8f14-bd2e62bc04e1"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.105,"b":{"from":0.1105,"to":0.1105},"r":0.014,"rate":5.0,"available":true,"time_series_container":[],"name":"C30","reactive_power_flow":0.0,"arc":{"value":"7562d90e-937c-4edc-a7e9-8bed3d80b800"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"9aad21ba-7448-4b09-9f5d-8d77d3e20712"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"B27","reactive_power_flow":0.0,"arc":{"value":"e4a7f872-fa31-4908-9c53-458f73f0e2c7"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"29d2f82e-7774-4669-a745-3cc81360d2e4"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.097,"b":{"from":0.1015,"to":0.1015},"r":0.012,"rate":5.0,"available":true,"time_series_container":[],"name":"A21","reactive_power_flow":0.0,"arc":{"value":"db4bd09f-556c-45ed-8684-ec0ed9a92c1a"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"b6efe120-5411-4826-a0f6-209038948e1d"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.04,"b":{"from":0.0415,"to":0.0415},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"A32-1","reactive_power_flow":0.0,"arc":{"value":"4f7c8cd3-3ca0-4b4b-97a0-a16be1d1234d"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"238c75cd-a3eb-41c9-ae78-74c1630da52a"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.014,"b":{"from":0.015,"to":0.015},"r":0.002,"rate":5.0,"available":true,"time_series_container":[],"name":"B29","reactive_power_flow":0.0,"arc":{"value":"51d4eb8f-5737-49b0-ae04-33ac2909dd53"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"c56871f7-b1d7-4238-87f6-b42bd51018d3"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.048,"b":{"from":0.05,"to":0.05},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"A18","reactive_power_flow":0.0,"arc":{"value":"9216952b-687f-4dc4-9fa2-152f719a659f"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"f6632c92-8904-4154-88fb-e2c1728d46b0"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.192,"b":{"from":0.026,"to":0.026},"r":0.05,"rate":1.75,"available":true,"time_series_container":[],"name":"C5","reactive_power_flow":0.0,"arc":{"value":"a6d7c401-f4c7-40a2-b948-c2471ac19229"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"ce1987b6-08ff-4aaa-8e95-64f011fe1bde"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.165,"b":{"from":0.0225,"to":0.0225},"r":0.043,"rate":1.75,"available":true,"time_series_container":[],"name":"C13-2","reactive_power_flow":0.0,"arc":{"value":"4075590a-362a-4331-8246-6552572dce24"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"77fc54e3-3502-4736-9ce2-f2e74f7e0220"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.017,"b":{"from":0.018,"to":0.018},"r":0.002,"rate":5.0,"available":true,"time_series_container":[],"name":"C24","reactive_power_flow":0.0,"arc":{"value":"13676f92-3e24-4571-859e-bc069c8ff7d8"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"05290a13-6bfc-4679-aab1-ad77704cb845"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.023,"b":{"from":0.0245,"to":0.0245},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"C28","reactive_power_flow":0.0,"arc":{"value":"9c4c0be4-99e5-4e67-8192-d8169559cadb"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"edec98ed-3816-4cb5-82c3-f3d6da2e31ea"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.014,"b":{"from":0.015,"to":0.015},"r":0.002,"rate":5.0,"available":true,"time_series_container":[],"name":"A29","reactive_power_flow":0.0,"arc":{"value":"0041e969-fc83-41d8-83e5-58034089cdf0"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"65486e49-64ef-44d4-bf3e-85e8929b6658"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.085,"b":{"from":0.0115,"to":0.0115},"r":0.022,"rate":1.75,"available":true,"time_series_container":[],"name":"A3","reactive_power_flow":0.0,"arc":{"value":"ab389bc2-3eee-4361-93c0-9f5735fe7eac"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"4df5a67b-8b45-4f4d-8f3f-204caace8685"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.161,"b":{"from":0.022,"to":0.022},"r":0.042,"rate":1.75,"available":true,"time_series_container":[],"name":"AB1","reactive_power_flow":0.0,"arc":{"value":"fd0383e3-e072-482a-9850-17b4b2be63dd"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"80419bf8-a4fb-4eba-94b3-6163c1f043c2"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.075,"b":{"from":0.079,"to":0.079},"r":0.01,"rate":5.0,"available":true,"time_series_container":[],"name":"AB2","reactive_power_flow":0.0,"arc":{"value":"486d7cdf-5d50-430e-9129-52a1ba7e405f"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"fdaa0d85-a031-4a23-9b43-d973092ef1bc"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"C27","reactive_power_flow":0.0,"arc":{"value":"d6e4819c-156c-4e16-90d0-4b19cdb430b3"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"43ab7ca5-af59-4a17-bfc9-cb78996639c3"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.009,"b":{"from":0.0,"to":0.0},"r":0.0,"rate":7.22,"available":true,"time_series_container":[],"name":"C35","reactive_power_flow":0.0,"arc":{"value":"42aa944b-70d3-4740-83f1-5d25027fe683"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"eaed55c6-d7d4-45f1-958f-0dd784cad29a"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.049,"b":{"from":0.0515,"to":0.0515},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"A25-1","reactive_power_flow":0.0,"arc":{"value":"95b203d0-d8f2-4604-9057-85ddd520921d"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"b5923139-23d9-4461-86cc-160231f4372e"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.192,"b":{"from":0.026,"to":0.026},"r":0.05,"rate":1.75,"available":true,"time_series_container":[],"name":"B5","reactive_power_flow":0.0,"arc":{"value":"d138a15a-9158-416f-99b1-7658119d0742"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"a2a201f9-0830-4149-9a63-31d4372feba3"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.211,"b":{"from":0.0285,"to":0.0285},"r":0.055,"rate":1.75,"available":true,"time_series_container":[],"name":"B2","reactive_power_flow":0.0,"arc":{"value":"44fbc4c4-c4f1-43c6-8431-4af4698346d5"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"22d7547f-8609-4bf5-902e-28d811b4b181"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"B31-1","reactive_power_flow":0.0,"arc":{"value":"04018568-a175-4bbf-a782-a1e631785a34"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"6346e6d1-fd3f-4a10-af48-3cece2e0a558"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.048,"b":{"from":0.05,"to":0.05},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"C20","reactive_power_flow":0.0,"arc":{"value":"a982d41e-9a00-4310-8228-077ab9a2ed16"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"617521d2-104a-4d05-9d42-ca4b2db1ae02"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.059,"b":{"from":0.041,"to":0.041},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"B23","reactive_power_flow":0.0,"arc":{"value":"852052c3-fdda-4c7b-8a45-dfc0699c8bf2"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"41ec86ba-4080-43d4-9ac3-690f5dc40b2f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.023,"b":{"from":0.0245,"to":0.0245},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"A28","reactive_power_flow":0.0,"arc":{"value":"fb9ee535-ee92-43fc-9649-a936532c125b"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"f6a0b6b6-701d-4cfd-a7db-f20ae837ab16"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.042,"b":{"from":0.044,"to":0.044},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"A19","reactive_power_flow":0.0,"arc":{"value":"71e5c70f-521f-4f25-b316-1243a436703b"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"324bb97b-85ec-4c1d-81c7-99786c098d9e"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.088,"b":{"from":0.012,"to":0.012},"r":0.023,"rate":1.75,"available":true,"time_series_container":[],"name":"C9","reactive_power_flow":0.0,"arc":{"value":"d0ca2efd-8beb-4c38-9189-1a1003b3eb67"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"0b1eef13-be33-4751-a038-16a73905c8bd"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.014,"b":{"from":0.2305,"to":0.2305},"r":0.003,"rate":1.75,"available":true,"time_series_container":[],"name":"C1","reactive_power_flow":0.0,"arc":{"value":"57efca57-4f35-461a-b32e-cf1e9154aa4a"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"3860f8bd-85d9-4d8b-9714-8e83edf0b0de"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.211,"b":{"from":0.0285,"to":0.0285},"r":0.055,"rate":1.75,"available":true,"time_series_container":[],"name":"C2","reactive_power_flow":0.0,"arc":{"value":"f063a0e3-cd38-491e-8ad1-a3b47bce7f80"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"32484a31-cd15-4786-ad20-85e97162c325"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.049,"b":{"from":0.0515,"to":0.0515},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"B25-1","reactive_power_flow":0.0,"arc":{"value":"cd243ee5-e802-4dee-a848-73f0eab18423"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"71abd3a2-a2e6-4e01-a8af-01729c507747"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.088,"b":{"from":0.012,"to":0.012},"r":0.023,"rate":1.75,"available":true,"time_series_container":[],"name":"A9","reactive_power_flow":0.0,"arc":{"value":"f545b074-d9d2-472b-b4f1-8c37206b0626"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"7f7aa2ae-9daa-4e69-b806-666f44392250"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.061,"b":{"from":0.0085,"to":0.0085},"r":0.016,"rate":1.75,"available":true,"time_series_container":[],"name":"C11","reactive_power_flow":0.0,"arc":{"value":"9be32f30-ddf5-4769-872e-0f85ced8de1d"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"69c3776f-4e7a-4081-a56f-94e2a94d93d7"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.042,"b":{"from":0.044,"to":0.044},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"C19","reactive_power_flow":0.0,"arc":{"value":"7e9d1032-1695-4516-86b3-645da1311880"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"4af89adc-948b-46d7-8184-3b1c523acdaf"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.059,"b":{"from":0.041,"to":0.041},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"C23","reactive_power_flow":0.0,"arc":{"value":"04d21bce-a163-48e7-8c44-0786354fc2cd"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"ee800712-6999-46e3-b422-bb3d30066def"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.049,"b":{"from":0.0515,"to":0.0515},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"C25-1","reactive_power_flow":0.0,"arc":{"value":"1ed1dca2-9d9c-48c7-b780-8764a7389aed"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"f321af1b-70c7-4da5-a2e3-aa1b861dfd7d"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.04,"b":{"from":0.0415,"to":0.0415},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"C32-2","reactive_power_flow":0.0,"arc":{"value":"54a25402-12ed-4314-88f0-6c184c776e84"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"3d0902c7-8049-464a-94b5-d44cc54a4bc8"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.048,"b":{"from":0.05,"to":0.05},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"B20","reactive_power_flow":0.0,"arc":{"value":"95dac7dd-8307-488c-bdfa-f082518915f7"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"0336cae6-7e9b-4d83-a185-495d8f553d51"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.088,"b":{"from":0.012,"to":0.012},"r":0.023,"rate":1.75,"available":true,"time_series_container":[],"name":"B9","reactive_power_flow":0.0,"arc":{"value":"1d90c276-4051-4643-9655-327e6fe6e63d"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"1fa4f493-6e0d-4bfc-b382-cb1d50104044"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.049,"b":{"from":0.0515,"to":0.0515},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"C25-2","reactive_power_flow":0.0,"arc":{"value":"1ed1dca2-9d9c-48c7-b780-8764a7389aed"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"ec562d9d-4919-4664-87d3-027bed33acfd"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.165,"b":{"from":0.0225,"to":0.0225},"r":0.043,"rate":1.75,"available":true,"time_series_container":[],"name":"C12-1","reactive_power_flow":0.0,"arc":{"value":"4979bdd3-93e4-4271-8276-cda35c93d2d1"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"d8bca9e5-afd2-4c23-993f-e288530cb7ac"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"A27","reactive_power_flow":0.0,"arc":{"value":"3a543d66-b586-4c55-929d-9cafe2e3ddf4"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"152181f2-612e-4a87-b9cc-0dd79fe1665d"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.097,"b":{"from":0.1015,"to":0.1015},"r":0.012,"rate":5.0,"available":true,"time_series_container":[],"name":"C21","reactive_power_flow":0.0,"arc":{"value":"d82473a8-fda1-42f7-8b4a-8aaa05ce17b5"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"6b3c2a4c-3a08-435b-bdcb-bd9c2788294b"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.068,"b":{"from":0.071,"to":0.071},"r":0.009,"rate":5.0,"available":true,"time_series_container":[],"name":"A34","reactive_power_flow":0.0,"arc":{"value":"687a9ffb-1351-4993-b51c-5a564ff210cf"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"2cc475ad-4631-4943-a444-15537a5a4ff5"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.04,"b":{"from":0.0415,"to":0.0415},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"B32-1","reactive_power_flow":0.0,"arc":{"value":"5ab438de-de8c-4fff-a02c-d0ce9cf27f27"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"3677c029-629f-40cd-8429-811d3a5f21a7"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.165,"b":{"from":0.0225,"to":0.0225},"r":0.043,"rate":1.75,"available":true,"time_series_container":[],"name":"A12-1","reactive_power_flow":0.0,"arc":{"value":"3b1d4805-ddc9-491f-8e41-95f3769dafd7"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"21362f2c-066c-4d0e-a645-96d578c38f9f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.022,"b":{"from":0.023,"to":0.023},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"B33-1","reactive_power_flow":0.0,"arc":{"value":"11ba4ef5-760e-44e3-a57f-532666721e80"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"065de900-c5bb-4a91-bb1f-e9dee2d543aa"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.014,"b":{"from":0.2305,"to":0.2305},"r":0.003,"rate":1.75,"available":true,"time_series_container":[],"name":"B1","reactive_power_flow":0.0,"arc":{"value":"e1318dbc-cf9b-4648-8de4-935a1592d4f3"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"d164200d-d4a3-4170-91c4-de79231a3d7e"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.127,"b":{"from":0.017,"to":0.017},"r":0.033,"rate":1.75,"available":true,"time_series_container":[],"name":"A4","reactive_power_flow":0.0,"arc":{"value":"75bdfdab-3aad-4984-b6d5-8383b0d4d0ac"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"4255a6f3-4c9b-4885-968a-e945b1f4981d"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.052,"b":{"from":0.0545,"to":0.0545},"r":0.007,"rate":5.0,"available":true,"time_series_container":[],"name":"C26","reactive_power_flow":0.0,"arc":{"value":"5451f368-ccab-4b0f-bf8f-27ca6720b461"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"e9b92f64-c177-4425-80b4-4fb0f7219b6b"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.127,"b":{"from":0.017,"to":0.017},"r":0.033,"rate":1.75,"available":true,"time_series_container":[],"name":"B4","reactive_power_flow":0.0,"arc":{"value":"dc4e9cb4-34da-455b-bd80-d7ec324748d9"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"e91c3bfa-d26f-4027-8581-69c9a8921f81"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.087,"b":{"from":0.091,"to":0.091},"r":0.011,"rate":5.0,"available":true,"time_series_container":[],"name":"A22","reactive_power_flow":0.0,"arc":{"value":"142f52dd-199a-49c8-b43f-c6f8d38c0942"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"46d0b7e2-5383-45d5-80dc-398a4a0fbb3c"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"A31-1","reactive_power_flow":0.0,"arc":{"value":"39d08102-7711-414d-afaf-14b5d25f54d6"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"92003b4a-8c1c-438c-99cc-506c5db83ae9"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.022,"b":{"from":0.023,"to":0.023},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"A33-2","reactive_power_flow":0.0,"arc":{"value":"3d333756-9fc8-4ac3-b67f-249609a96b18"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"b5f3eb70-059b-4ef6-924c-5a6c3482f67f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.074,"b":{"from":0.0775,"to":0.0775},"r":0.01,"rate":5.0,"available":true,"time_series_container":[],"name":"AB3","reactive_power_flow":0.0,"arc":{"value":"bc12f1bc-f06e-48b3-b2f5-0bc2cc394d3d"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"ad1358e5-4890-40c5-85fe-10dffc0ee1e6"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.104,"b":{"from":0.014,"to":0.014},"r":0.027,"rate":1.75,"available":true,"time_series_container":[],"name":"A8","reactive_power_flow":0.0,"arc":{"value":"a4258702-d4e8-4fb3-a60d-9204c34e2d5f"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"a216fb88-1954-4740-8a72-c4d8ec6b58d8"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"A31-2","reactive_power_flow":0.0,"arc":{"value":"39d08102-7711-414d-afaf-14b5d25f54d6"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"ed7513e0-3313-4a88-9651-f3f39f61fb00"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.022,"b":{"from":0.023,"to":0.023},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"C33-2","reactive_power_flow":0.0,"arc":{"value":"9db39d9f-88e0-45e8-83f0-b3e3ccfeae39"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"37561274-3085-4c2b-9a1f-541cbc5c99cd"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.061,"b":{"from":1.2295,"to":1.2295},"r":0.014,"rate":1.75,"available":true,"time_series_container":[],"name":"C10","reactive_power_flow":0.0,"arc":{"value":"ae495a0f-6b0b-4433-9feb-0a70aec8a4cc"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"5886b8bf-3a17-4f09-9c62-39a458dc4822"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.104,"b":{"from":0.109,"to":0.109},"r":0.013,"rate":5.0,"available":true,"time_series_container":[],"name":"CB-1","reactive_power_flow":0.0,"arc":{"value":"44505402-0998-424a-a389-665f0231c88b"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"14b5d7e0-0f5c-427c-bad6-199908eae13f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.052,"b":{"from":0.0545,"to":0.0545},"r":0.007,"rate":5.0,"available":true,"time_series_container":[],"name":"A26","reactive_power_flow":0.0,"arc":{"value":"14bc772a-35bc-4b52-990a-e981d3d97bec"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"8178ac0a-c8b7-4089-b150-39acf8ce81d2"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.119,"b":{"from":0.016,"to":0.016},"r":0.031,"rate":1.75,"available":true,"time_series_container":[],"name":"A6","reactive_power_flow":0.0,"arc":{"value":"db8ee046-edd5-429c-a89c-14b5a52225db"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"f5f37024-ffbd-4571-bcab-6465b6dad91a"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.022,"b":{"from":0.023,"to":0.023},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"C33-1","reactive_power_flow":0.0,"arc":{"value":"9db39d9f-88e0-45e8-83f0-b3e3ccfeae39"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"5daf7461-12c8-4591-979c-4a4c33fa851c"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.097,"b":{"from":0.1015,"to":0.1015},"r":0.012,"rate":5.0,"available":true,"time_series_container":[],"name":"B21","reactive_power_flow":0.0,"arc":{"value":"829b83dc-75ef-4aa5-a67f-a30c43024c5d"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"6ee6869b-c5b3-47e9-a544-1f4fd92cc7b8"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.014,"b":{"from":0.015,"to":0.015},"r":0.002,"rate":5.0,"available":true,"time_series_container":[],"name":"C29","reactive_power_flow":0.0,"arc":{"value":"5119bcd5-5e2f-43ab-8e18-038926c367fc"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"1ead1eb4-b795-426c-861f-c3e941b0dfe3"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.127,"b":{"from":0.017,"to":0.017},"r":0.033,"rate":1.75,"available":true,"time_series_container":[],"name":"C4","reactive_power_flow":0.0,"arc":{"value":"b2acc204-9f0e-47cc-9fc6-e7cefdc18fe7"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"35fcf5aa-53e6-45bc-8256-128bc351a2c2"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.048,"b":{"from":0.05,"to":0.05},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"C18","reactive_power_flow":0.0,"arc":{"value":"78e0bd9a-b837-4d6c-9575-58afef33bfbc"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"a3e923c0-6285-41b8-aa75-bf20dea0c9b3"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.049,"b":{"from":0.0515,"to":0.0515},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"A25-2","reactive_power_flow":0.0,"arc":{"value":"95b203d0-d8f2-4604-9057-85ddd520921d"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"c40e023b-f9a7-4c9f-977b-206cda39829d"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.087,"b":{"from":0.091,"to":0.091},"r":0.011,"rate":5.0,"available":true,"time_series_container":[],"name":"B22","reactive_power_flow":0.0,"arc":{"value":"9041189c-8f18-44e8-b58e-cf43ffc440dd"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"c8936723-c153-4e47-9c19-31507725f95f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.014,"b":{"from":0.2305,"to":0.2305},"r":0.003,"rate":1.75,"available":true,"time_series_container":[],"name":"A1","reactive_power_flow":0.0,"arc":{"value":"64ee46e2-e587-4f4d-bb5c-7f83bf1e8f8b"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"d3650161-6aa3-417e-b29b-a0974665d868"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.105,"b":{"from":0.1105,"to":0.1105},"r":0.014,"rate":5.0,"available":true,"time_series_container":[],"name":"B30","reactive_power_flow":0.0,"arc":{"value":"ab8551f3-c0cf-4199-9a76-48e3f6b63247"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"bcb1dd2c-497e-4935-8ce6-d4c8955b75a2"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.061,"b":{"from":0.0085,"to":0.0085},"r":0.016,"rate":1.75,"available":true,"time_series_container":[],"name":"B11","reactive_power_flow":0.0,"arc":{"value":"0f0ba3a6-ba07-4991-beb9-f7e8a48a9436"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"14242049-fe45-4a65-a038-69c05a677b58"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.085,"b":{"from":0.0115,"to":0.0115},"r":0.022,"rate":1.75,"available":true,"time_series_container":[],"name":"C3","reactive_power_flow":0.0,"arc":{"value":"81b89be3-38a4-42a4-b24b-7c66bf4f965e"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"b0349cfa-4fd6-4bdd-8b4a-66ab35068c0e"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.022,"b":{"from":0.023,"to":0.023},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"A33-1","reactive_power_flow":0.0,"arc":{"value":"3d333756-9fc8-4ac3-b67f-249609a96b18"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"27efc146-2cd4-4d3c-8c9d-f967521aa005"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.165,"b":{"from":0.0225,"to":0.0225},"r":0.043,"rate":1.75,"available":true,"time_series_container":[],"name":"B13-2","reactive_power_flow":0.0,"arc":{"value":"03dc66b9-75fb-4093-9ec6-dc632637a8fa"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"44a0d799-d6a1-4a0d-a3c6-147db929eacc"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.026,"b":{"from":0.0275,"to":0.0275},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"C31-1","reactive_power_flow":0.0,"arc":{"value":"d741b097-7db4-48ad-a511-b72adcdcedd2"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"da2c0c96-0f8a-4382-962c-5b9d1b25742b"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.048,"b":{"from":0.05,"to":0.05},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"A20","reactive_power_flow":0.0,"arc":{"value":"700e5c6a-a4e8-4149-b2c8-1b9e0d074a66"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"f9fd5986-8f28-4e17-8acf-5bfac2172148"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.165,"b":{"from":0.0225,"to":0.0225},"r":0.043,"rate":1.75,"available":true,"time_series_container":[],"name":"B12-1","reactive_power_flow":0.0,"arc":{"value":"f033ac13-b9b3-4522-b8db-b6155254299e"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"d999b342-f118-4c4a-81e6-0075407d11ed"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.085,"b":{"from":0.0115,"to":0.0115},"r":0.022,"rate":1.75,"available":true,"time_series_container":[],"name":"B3","reactive_power_flow":0.0,"arc":{"value":"bc2eaf86-eb2a-43bb-9d34-26d6f87c070e"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"081fc884-b801-4645-bad1-2cb1e0c4a27f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.017,"b":{"from":0.018,"to":0.018},"r":0.002,"rate":5.0,"available":true,"time_series_container":[],"name":"B24","reactive_power_flow":0.0,"arc":{"value":"60ee5b38-e3c9-4a72-b494-ddf807790656"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"22222cfb-1c22-4486-b496-0acc35ad1adb"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.211,"b":{"from":0.0285,"to":0.0285},"r":0.055,"rate":1.75,"available":true,"time_series_container":[],"name":"A2","reactive_power_flow":0.0,"arc":{"value":"9467a394-ee0b-4f40-a196-5d570c40cd3b"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"f64a777a-9af8-4e47-a523-fa40a6821418"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.119,"b":{"from":0.016,"to":0.016},"r":0.031,"rate":1.75,"available":true,"time_series_container":[],"name":"B6","reactive_power_flow":0.0,"arc":{"value":"e41600c5-de89-4b3e-8d12-eabddbae0221"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"8f0571ea-73b4-4a4d-bc97-0e4792fb4a8b"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.165,"b":{"from":0.0225,"to":0.0225},"r":0.043,"rate":1.75,"available":true,"time_series_container":[],"name":"A13-2","reactive_power_flow":0.0,"arc":{"value":"860709bb-1015-4237-a5e8-7834607ad487"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"d5400ffb-f9d4-4941-9fff-98996cf40c3c"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.023,"b":{"from":0.0245,"to":0.0245},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"B28","reactive_power_flow":0.0,"arc":{"value":"35b053e8-e62f-49c8-9831-d96f06c6719a"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"357d7df5-cc1e-4e20-8d17-9adfe7c83cce"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.059,"b":{"from":0.041,"to":0.041},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"A23","reactive_power_flow":0.0,"arc":{"value":"40885e06-809f-4eb5-b2db-7296936498fc"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"48c5704c-0377-4374-a31c-b623ddcc28cc"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.104,"b":{"from":0.014,"to":0.014},"r":0.027,"rate":1.75,"available":true,"time_series_container":[],"name":"C8","reactive_power_flow":0.0,"arc":{"value":"b9ff6ca2-b949-4afb-a3eb-226a1871cd9c"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"1d5a1488-ef7f-48c4-b40a-df021843c633"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.04,"b":{"from":0.0415,"to":0.0415},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"B32-2","reactive_power_flow":0.0,"arc":{"value":"5ab438de-de8c-4fff-a02c-d0ce9cf27f27"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"7cd4267e-7816-4fb7-b3df-9aaac4d28caa"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.017,"b":{"from":0.018,"to":0.018},"r":0.002,"rate":5.0,"available":true,"time_series_container":[],"name":"A24","reactive_power_flow":0.0,"arc":{"value":"8a27b6dc-2ffc-4728-8bbb-4a1e7a4b2c14"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"b951928e-8235-43de-9508-d5f3a31a8545"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.022,"b":{"from":0.023,"to":0.023},"r":0.003,"rate":5.0,"available":true,"time_series_container":[],"name":"B33-2","reactive_power_flow":0.0,"arc":{"value":"11ba4ef5-760e-44e3-a57f-532666721e80"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"13f134bc-f228-4e2f-a512-b01cc293c8a1"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.105,"b":{"from":0.1105,"to":0.1105},"r":0.014,"rate":5.0,"available":true,"time_series_container":[],"name":"A30","reactive_power_flow":0.0,"arc":{"value":"b6a3020d-dcff-4150-ba2a-3c1e5c3b7287"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"b5d836d8-b19b-48da-acb2-e59a5564dbde"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.061,"b":{"from":1.2295,"to":1.2295},"r":0.014,"rate":1.75,"available":true,"time_series_container":[],"name":"B10","reactive_power_flow":0.0,"arc":{"value":"2f456102-a0b6-4344-9f80-d3bf0135e2da"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"1c4f8006-c3db-40e8-ad40-187fe157f805"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.049,"b":{"from":0.0515,"to":0.0515},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"B25-2","reactive_power_flow":0.0,"arc":{"value":"cd243ee5-e802-4dee-a848-73f0eab18423"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"0b6aabb5-9f66-48c6-aa2a-7a66ebf0d5d1"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.061,"b":{"from":1.2295,"to":1.2295},"r":0.014,"rate":1.75,"available":true,"time_series_container":[],"name":"A10","reactive_power_flow":0.0,"arc":{"value":"ab6d4a96-2ab0-45a3-bde1-33d630ab2d12"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"4062e29d-4de8-4f56-87e1-78764ee8cea5"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.087,"b":{"from":0.091,"to":0.091},"r":0.011,"rate":5.0,"available":true,"time_series_container":[],"name":"C22","reactive_power_flow":0.0,"arc":{"value":"22ff1f7d-c872-4387-ab49-ecdc731e9483"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"8b57395f-562f-4a70-bc69-51a3de8f2776"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.119,"b":{"from":0.016,"to":0.016},"r":0.031,"rate":1.75,"available":true,"time_series_container":[],"name":"C6","reactive_power_flow":0.0,"arc":{"value":"ffe2e44c-9acc-4254-85da-6256d4b33b64"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"5d1e2d18-db57-43ce-bd22-60428d072061"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.061,"b":{"from":0.0085,"to":0.0085},"r":0.016,"rate":1.75,"available":true,"time_series_container":[],"name":"A11","reactive_power_flow":0.0,"arc":{"value":"6bd4fc92-2e22-430e-b62d-8b5393f4bc56"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"6194b32c-ac6e-4aef-9bca-4407e87274ce"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.068,"b":{"from":0.071,"to":0.071},"r":0.009,"rate":5.0,"available":true,"time_series_container":[],"name":"C34","reactive_power_flow":0.0,"arc":{"value":"4b1f56ce-e318-4563-a430-233781ad7e52"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"b87c8e0f-60e2-44bd-8625-3e5eeb89e6d8"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.04,"b":{"from":0.0415,"to":0.0415},"r":0.005,"rate":5.0,"available":true,"time_series_container":[],"name":"C32-1","reactive_power_flow":0.0,"arc":{"value":"54a25402-12ed-4314-88f0-6c184c776e84"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"964fde96-9663-43bc-a7b9-563b94fb4d3f"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"services":[],"x":0.048,"b":{"from":0.05,"to":0.05},"r":0.006,"rate":5.0,"available":true,"time_series_container":[],"name":"B18","reactive_power_flow":0.0,"arc":{"value":"f024961e-d454-4b6c-95a1-ff24792acf61"},"__metadata__":{"module":"PowerSystems","type":"Line"},"internal":{"uuid":{"value":"d7aab868-6317-4672-af51-7d9af499ea61"},"ext":null,"units_info":null},"ext":{},"active_power_flow":0.0,"angle_limits":{"min":-1.57079,"max":1.57079}},{"requirement":0.42851,"max_participation_factor":1.0,"sustained_time":3600.0,"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"c7eb9643-662e-4caf-b284-fbcb60062f64"},"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"5c119e17-fffe-48bc-913a-2c23f30ee6e9"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"5c119e17-fffe-48bc-913a-2c23f30ee6e9"},"ext":null,"units_info":null},"time_series_uuid":{"value":"c7eb9643-662e-4caf-b284-fbcb60062f64"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Spin_Up_R2","__metadata__":{"parameters":["ReserveUp"],"construct_with_parameters":true,"module":"PowerSystems","type":"VariableReserve"},"internal":{"uuid":{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},"ext":null,"units_info":null},"time_frame":600.0,"ext":{},"deployed_fraction":0.0,"max_output_fraction":1.0},{"requirement":0.5666599999999999,"max_participation_factor":1.0,"sustained_time":3600.0,"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"445bab0d-2f90-47b0-adc3-6d82f7642308"},"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"79c5f234-5ed0-4040-ab8b-41d743eee25e"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"79c5f234-5ed0-4040-ab8b-41d743eee25e"},"ext":null,"units_info":null},"time_series_uuid":{"value":"445bab0d-2f90-47b0-adc3-6d82f7642308"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Spin_Up_R3","__metadata__":{"parameters":["ReserveUp"],"construct_with_parameters":true,"module":"PowerSystems","type":"VariableReserve"},"internal":{"uuid":{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},"ext":null,"units_info":null},"time_frame":600.0,"ext":{},"deployed_fraction":0.0,"max_output_fraction":1.0},{"requirement":1.26,"max_participation_factor":1.0,"sustained_time":3600.0,"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"9392b789-3b02-426a-bcf6-fa86506135e1"},"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"5ac0f7da-b214-46f6-a1f6-fa4897dda17c"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"5ac0f7da-b214-46f6-a1f6-fa4897dda17c"},"ext":null,"units_info":null},"time_series_uuid":{"value":"9392b789-3b02-426a-bcf6-fa86506135e1"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Reg_Up","__metadata__":{"parameters":["ReserveUp"],"construct_with_parameters":true,"module":"PowerSystems","type":"VariableReserve"},"internal":{"uuid":{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},"ext":null,"units_info":null},"time_frame":300.0,"ext":{},"deployed_fraction":0.0,"max_output_fraction":1.0},{"requirement":0.40413,"max_participation_factor":1.0,"sustained_time":3600.0,"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"7f2957bc-2e2f-414a-b12d-ced604846064"},"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"aebc3c65-c73f-47fd-86eb-32507b93aec4"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"aebc3c65-c73f-47fd-86eb-32507b93aec4"},"ext":null,"units_info":null},"time_series_uuid":{"value":"7f2957bc-2e2f-414a-b12d-ced604846064"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Spin_Up_R1","__metadata__":{"parameters":["ReserveUp"],"construct_with_parameters":true,"module":"PowerSystems","type":"VariableReserve"},"internal":{"uuid":{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},"ext":null,"units_info":null},"time_frame":600.0,"ext":{},"deployed_fraction":0.0,"max_output_fraction":1.0},{"load_response":0.0,"name":"1","__metadata__":{"module":"PowerSystems","type":"Area"},"internal":{"uuid":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":null,"units_info":null},"peak_active_power":0.0,"peak_reactive_power":0.0,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"e1cd3b63-9161-4957-a5b9-16bf846f7ceb"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"7867d40d-bbac-4931-ad3a-70b26c3de240"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_peak_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"7867d40d-bbac-4931-ad3a-70b26c3de240"},"ext":null,"units_info":null},"time_series_uuid":{"value":"e1cd3b63-9161-4957-a5b9-16bf846f7ceb"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_peak_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}]},{"load_response":0.0,"name":"2","__metadata__":{"module":"PowerSystems","type":"Area"},"internal":{"uuid":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":null,"units_info":null},"peak_active_power":0.0,"peak_reactive_power":0.0,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"9c3b9513-3063-4d14-a6cd-f0da21d4cab5"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"c50c523d-2eda-456e-b2c0-c9e660a6f45e"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_peak_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"c50c523d-2eda-456e-b2c0-c9e660a6f45e"},"ext":null,"units_info":null},"time_series_uuid":{"value":"9c3b9513-3063-4d14-a6cd-f0da21d4cab5"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_peak_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}]},{"load_response":0.0,"name":"3","__metadata__":{"module":"PowerSystems","type":"Area"},"internal":{"uuid":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":null,"units_info":null},"peak_active_power":0.0,"peak_reactive_power":0.0,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"51af49c8-5b90-4b14-a38d-e85905da78fd"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"056d1992-d345-4415-be11-f3aaa533fa5c"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_peak_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"056d1992-d345-4415-be11-f3aaa533fa5c"},"ext":null,"units_info":null},"time_series_uuid":{"value":"51af49c8-5b90-4b14-a38d-e85905da78fd"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_peak_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}]},{"base_power":101.7,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"dc86086e-9709-426f-b7d4-ee92c9a6fd50"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"6d9b7a20-3aa8-4fda-a547-33e4766153bd"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"6d9b7a20-3aa8-4fda-a547-33e4766153bd"},"ext":null,"units_info":null},"time_series_uuid":{"value":"dc86086e-9709-426f-b7d4-ee92c9a6fd50"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"ea60d047-ca84-4275-8ff0-bb18cfc602a2"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":27.0,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"47dbf654-a983-4442-b5a5-baf4e85449c0"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"72595e06-0e50-4e9e-bdd0-c653b469090d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"673ee009-edab-4c70-a7c5-8f3ca0b82b95"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"673ee009-edab-4c70-a7c5-8f3ca0b82b95"},"ext":null,"units_info":null},"time_series_uuid":{"value":"72595e06-0e50-4e9e-bdd0-c653b469090d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"320_RTPV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"6d00fcbf-92fc-4f66-be54-bb55e5b913c7"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":13.2,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"286599f1-84ad-4db3-83e0-92445f4fffb3"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"e017c241-0793-4602-bd92-9ba69c2e8ff0"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"a871483d-fc25-4d1b-8211-b1b4a5761742"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"a871483d-fc25-4d1b-8211-b1b4a5761742"},"ext":null,"units_info":null},"time_series_uuid":{"value":"e017c241-0793-4602-bd92-9ba69c2e8ff0"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"213_RTPV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"e7e3b891-3f68-42fe-95e9-9288c4477877"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":62.4,"prime_mover_type":"PVe","rating":0.30000000000000004,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"a7ad7822-31da-4cff-938d-7633052bfe04"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"7c270cb4-c3a4-4f97-987a-948dce9877d2"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"7c270cb4-c3a4-4f97-987a-948dce9877d2"},"ext":null,"units_info":null},"time_series_uuid":{"value":"a7ad7822-31da-4cff-938d-7633052bfe04"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_9","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"c9888370-3bd0-429d-b6f0-b981fe9ee3aa"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":63.1,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"caadfd18-559b-4118-8119-df17c25bc31e"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d11c2db9-ac58-4db1-9099-17788791a9a3"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d11c2db9-ac58-4db1-9099-17788791a9a3"},"ext":null,"units_info":null},"time_series_uuid":{"value":"caadfd18-559b-4118-8119-df17c25bc31e"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"ee651001-277e-4059-9f9b-10b84ed798cc"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":64.1,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"2438f867-7d15-4c8e-9508-d62a6de35e45"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"00502b9f-e31c-475e-8f85-8f6ac99a17ed"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"00502b9f-e31c-475e-8f85-8f6ac99a17ed"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2438f867-7d15-4c8e-9508-d62a6de35e45"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_7","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"806d1f64-9e63-43c1-86cf-d93cc7b8f238"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":28.3,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"47dbf654-a983-4442-b5a5-baf4e85449c0"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"82ba18a1-c406-485f-bb6c-2b1e19bbb216"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"dc2c7ffc-bddf-410e-a7b1-5a8e958b558e"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"dc2c7ffc-bddf-410e-a7b1-5a8e958b558e"},"ext":null,"units_info":null},"time_series_uuid":{"value":"82ba18a1-c406-485f-bb6c-2b1e19bbb216"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"320_RTPV_3","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"2f0b7b32-4f92-43ac-be01-96739ec14903"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":100.9,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"a2ff36e2-3dcd-41b0-b98e-4e8c7c871191"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"33ca00da-939e-4ba5-8e40-aaebd21a3f16"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"c3de9ad3-32a6-4b60-9965-3fa8e35a23a2"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"c3de9ad3-32a6-4b60-9965-3fa8e35a23a2"},"ext":null,"units_info":null},"time_series_uuid":{"value":"33ca00da-939e-4ba5-8e40-aaebd21a3f16"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"308_RTPV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"80c2557e-bbf9-4b93-ba3d-7d92a145b01f"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":67.0,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"a33396e6-7a4e-4bb6-bf91-6c8b86192b7a"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d2bf7478-69bf-4dcf-82ab-ab9339c7e637"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d2bf7478-69bf-4dcf-82ab-ab9339c7e637"},"ext":null,"units_info":null},"time_series_uuid":{"value":"a33396e6-7a4e-4bb6-bf91-6c8b86192b7a"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_4","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"ba5aeb84-d33c-48ef-b26a-ac75a0ed6c7d"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":64.8,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"51b38c2d-e18f-4563-853d-47631d6a6a42"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"00e11f43-5554-4b06-ad1f-1d8b0672f746"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"00e11f43-5554-4b06-ad1f-1d8b0672f746"},"ext":null,"units_info":null},"time_series_uuid":{"value":"51b38c2d-e18f-4563-853d-47631d6a6a42"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_5","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"90a04805-50b7-4b4f-998f-e87bf0829bdd"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":63.8,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"db9dd63d-a164-42d7-8ede-e453560000ba"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"9225d472-687a-4667-98ac-460cd2f26025"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"9225d472-687a-4667-98ac-460cd2f26025"},"ext":null,"units_info":null},"time_series_uuid":{"value":"db9dd63d-a164-42d7-8ede-e453560000ba"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_6","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"b314c06c-c221-413d-9ad6-2ca167480070"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":27.3,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"47dbf654-a983-4442-b5a5-baf4e85449c0"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"6d4a5a9e-ad2a-462f-bf70-fa3968a89b74"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"f6cf8d3b-6664-4cbf-8fdd-8e40857bae5f"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"f6cf8d3b-6664-4cbf-8fdd-8e40857bae5f"},"ext":null,"units_info":null},"time_series_uuid":{"value":"6d4a5a9e-ad2a-462f-bf70-fa3968a89b74"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"320_RTPV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"7dd9d9b7-a383-45fb-9033-34bd07599544"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":9.4,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"47dbf654-a983-4442-b5a5-baf4e85449c0"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b1548e70-1474-44fa-abe6-136d811f915a"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d61d98b6-201f-47d8-8c59-df548e41e503"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d61d98b6-201f-47d8-8c59-df548e41e503"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b1548e70-1474-44fa-abe6-136d811f915a"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"320_RTPV_6","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"9dc0d84f-7783-4545-a7d0-be829bc3f147"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":28.2,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"47dbf654-a983-4442-b5a5-baf4e85449c0"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"a8a17ad3-1beb-4ae8-9d0c-4eb5053ad878"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"a8b6ae43-599d-452e-b3f6-732c2f79a521"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"a8b6ae43-599d-452e-b3f6-732c2f79a521"},"ext":null,"units_info":null},"time_series_uuid":{"value":"a8a17ad3-1beb-4ae8-9d0c-4eb5053ad878"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"320_RTPV_5","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"3bff6ded-57cf-4bea-89a8-b6d988a90f42"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":9.7,"prime_mover_type":"PVe","rating":0.29999999999999993,"services":[],"bus":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4a4f9cbd-ad13-424b-807d-f5ba59205889"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"ca1e144c-4ba0-4faa-bd05-f74b2d7f5316"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"ca1e144c-4ba0-4faa-bd05-f74b2d7f5316"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4a4f9cbd-ad13-424b-807d-f5ba59205889"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"7e97c63a-02e1-40ec-9507-c38e56a464d6"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":27.0,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"47dbf654-a983-4442-b5a5-baf4e85449c0"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"195f566c-364b-49dc-b08c-00f18e6e7ba0"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"52311a05-6f8e-4908-8d02-7f91106139c9"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"52311a05-6f8e-4908-8d02-7f91106139c9"},"ext":null,"units_info":null},"time_series_uuid":{"value":"195f566c-364b-49dc-b08c-00f18e6e7ba0"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"320_RTPV_4","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"abd65f09-2d23-44c7-9c03-fe6c00a8d0b9"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":65.2,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b65e2a47-f1fc-41f0-97f2-f08f0153fbb6"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"168153f1-b8f9-4d3d-b8cc-6636d2db46b1"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"168153f1-b8f9-4d3d-b8cc-6636d2db46b1"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b65e2a47-f1fc-41f0-97f2-f08f0153fbb6"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_11","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"4239819c-a038-4917-b273-6d35dc0d05c8"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":11.8,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"85b50042-56f8-4e58-9134-b0aa0d366577"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"53f1c83c-3966-45f8-8149-2ca093121f70"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"53f1c83c-3966-45f8-8149-2ca093121f70"},"ext":null,"units_info":null},"time_series_uuid":{"value":"85b50042-56f8-4e58-9134-b0aa0d366577"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_7","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"c2f037c0-f780-4515-87ee-4d32022f763b"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":9.4,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"fbb039db-c16b-4202-bbd4-c3285494540c"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"9800f2d9-9a97-47a6-91c1-27e59b7f724e"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"9800f2d9-9a97-47a6-91c1-27e59b7f724e"},"ext":null,"units_info":null},"time_series_uuid":{"value":"fbb039db-c16b-4202-bbd4-c3285494540c"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_3","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"a9474dd0-3d6c-4558-822c-9046ea3e03ed"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":27.2,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4b6b9e3c-4fe3-4049-9597-94d0df4ce836"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"cb3e84ca-c022-415c-bc11-ecd6452be5e6"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"cb3e84ca-c022-415c-bc11-ecd6452be5e6"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4b6b9e3c-4fe3-4049-9597-94d0df4ce836"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_13","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"568ec1fb-87d1-4d61-84c1-cf368ba7f9e4"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":27.8,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"ee7da944-8601-4e7e-bd19-4167998bac92"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"35c138a9-bc58-4aac-943a-6ba0c5971658"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"35c138a9-bc58-4aac-943a-6ba0c5971658"},"ext":null,"units_info":null},"time_series_uuid":{"value":"ee7da944-8601-4e7e-bd19-4167998bac92"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_12","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"6fd56e59-8d7e-4170-b4ad-3df3746b9fdc"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":11.2,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"24b2bbf2-8273-46aa-a4f3-32e70a6403b7"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"a9eaa579-4d8a-4144-ae95-61e3d2a6e3e0"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"a9eaa579-4d8a-4144-ae95-61e3d2a6e3e0"},"ext":null,"units_info":null},"time_series_uuid":{"value":"24b2bbf2-8273-46aa-a4f3-32e70a6403b7"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_8","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"eeeea4bc-5bd4-47ed-9ab4-591e8ecb2782"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":65.4,"prime_mover_type":"PVe","rating":0.30000000000000004,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"91dd130f-dbf2-4ec6-8a0a-e12627a2f493"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"73e3bf9e-9a4d-4215-bf32-28057ad9a6d3"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"73e3bf9e-9a4d-4215-bf32-28057ad9a6d3"},"ext":null,"units_info":null},"time_series_uuid":{"value":"91dd130f-dbf2-4ec6-8a0a-e12627a2f493"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_3","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"53288062-cd45-48b4-936b-19ea4ca3c85d"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":4.5,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"3465e9f8-a123-4bc0-94dc-96c33b3154bd"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"26e4e3e9-e61a-4226-b9f5-dc3b7e397217"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"26e4e3e9-e61a-4226-b9f5-dc3b7e397217"},"ext":null,"units_info":null},"time_series_uuid":{"value":"3465e9f8-a123-4bc0-94dc-96c33b3154bd"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_10","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"6dab9462-f0b3-4be8-b72f-8d48d163e520"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":66.9,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"5a76743c-95a9-49a1-a86f-25a50c176e24"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"5813d783-5265-4ebf-aff0-e22257d2ab9d"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"5813d783-5265-4ebf-aff0-e22257d2ab9d"},"ext":null,"units_info":null},"time_series_uuid":{"value":"5a76743c-95a9-49a1-a86f-25a50c176e24"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_10","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"70aae2ef-76ff-4f47-b1cf-76ca593af430"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":9.1,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"7b4e87c7-82d2-4c79-8f73-4dda7a85a222"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d86f125a-947a-4faa-bf7d-de869616cc77"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d86f125a-947a-4faa-bf7d-de869616cc77"},"ext":null,"units_info":null},"time_series_uuid":{"value":"7b4e87c7-82d2-4c79-8f73-4dda7a85a222"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_5","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"33efc139-ea31-439e-94de-7d9af2f38490"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":9.3,"prime_mover_type":"PVe","rating":0.30000000000000004,"services":[],"bus":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"1f098c8f-5a75-4042-87bf-e60fa7995794"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"763fda18-7f25-4440-8953-49f5a9c9b90a"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"763fda18-7f25-4440-8953-49f5a9c9b90a"},"ext":null,"units_info":null},"time_series_uuid":{"value":"1f098c8f-5a75-4042-87bf-e60fa7995794"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"8983019b-a50f-4d57-a9c8-4ae01592b903"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":10.3,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"e07a8798-d2f9-4465-a9d4-f498e681278b"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"a88254cc-5f4b-4bc9-80a3-27090e18862b"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"a88254cc-5f4b-4bc9-80a3-27090e18862b"},"ext":null,"units_info":null},"time_series_uuid":{"value":"e07a8798-d2f9-4465-a9d4-f498e681278b"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_9","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"15f01984-2274-49a2-b53c-ea0f2d56cd68"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":9.7,"prime_mover_type":"PVe","rating":0.29999999999999993,"services":[],"bus":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"1e710274-b6fd-4a03-b82d-0118a15b06e4"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"7b0dce2c-1837-4ddc-938a-3fe98330ab9d"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"7b0dce2c-1837-4ddc-938a-3fe98330ab9d"},"ext":null,"units_info":null},"time_series_uuid":{"value":"1e710274-b6fd-4a03-b82d-0118a15b06e4"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_6","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"a7fd7b9f-6a29-4909-8952-46e110141e49"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":66.6,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"f6a6b08e-f104-4045-b5a2-a964265f30ac"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"9c5bc2ff-dd9f-4cd7-8322-7a5475ce6359"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"9c5bc2ff-dd9f-4cd7-8322-7a5475ce6359"},"ext":null,"units_info":null},"time_series_uuid":{"value":"f6a6b08e-f104-4045-b5a2-a964265f30ac"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_RTPV_8","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"7eb7ef70-6082-4c49-9c4d-b7773b998204"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":9.1,"prime_mover_type":"PVe","rating":0.3,"services":[],"bus":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"a8b855b9-2f24-4c25-a006-24ce858b0bce"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"03271b37-e57a-4d13-a902-7051b260b7cb"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"03271b37-e57a-4d13-a902-7051b260b7cb"},"ext":null,"units_info":null},"time_series_uuid":{"value":"a8b855b9-2f24-4c25-a006-24ce858b0bce"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"118_RTPV_4","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableFix"},"internal":{"uuid":{"value":"e5cf89ed-5e51-46e6-a635-4fde9f273794"},"ext":null,"units_info":null},"ext":{},"reactive_power":0.0},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"790837ec-5ed0-4d83-8ae4-23d3ad9e099b"},"available":true,"time_series_container":[],"name":"322_CT_6","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"a7dd8757-f548-4333-843f-b48a457d1ad9"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":518.3296892400001,"shut_down":2832.6172140000003,"variable":{"cost":[[513.36959652,22.0],[770.0543947799999,33.0],[1061.5453609200001,44.0],[1368.38695884,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":-0.15203125},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"4cb9995d-b27f-4bd8-8550-a5733ca81adf"},"available":true,"time_series_container":[],"name":"321_CC_1","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"abc831c1-ded2-4ec9-88b5-888f7bc1bb96"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":911.2809837691275,"shut_down":14023.340511000002,"variable":{"cost":[[3864.5186316764684,169.999999845],[5266.353829430996,231.6666668],[6864.033641203774,293.33333339999996],[8957.437661640635,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":-0.008067632850241546},{"base_power":89.0,"prime_mover_type":"ST","rating":0.9180538523962021,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"5987511f-5bc8-43a1-a775-7dd036a80cea"},"available":true,"time_series_container":[],"name":"202_STEAM_3","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"b7e5fd55-15bc-44ce-8896-ee6b5394a537"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.2808988764044944,"max":0.33707865168539325},"ext":{},"operation_cost":{"start_up":11172.014351999998,"fixed":117.7703828685942,"shut_down":5586.007175999999,"variable":{"cost":[[633.499383131067,29.999999992],[957.2879568740448,45.333333327999995],[1283.7021061974792,60.666666664000005],[1701.9141572968783,76.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.0},"must_run":false,"ramp_limits":{"up":0.0011235955056179776,"down":0.0011235955056179776},"time_at_status":10000.0,"active_power_limits":{"min":0.33707865168539325,"max":0.8539325842696629},"reactive_power":0.022584269662921347},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"6d644c3c-e1e8-42ff-a12d-fe5287c36680"},"available":true,"time_series_container":[],"name":"223_CT_4","status":true,"active_power":0.34375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"076b9303-afd9-47b7-be36-7e64bd10a262"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":872.2066491600004,"shut_down":2832.6172140000003,"variable":{"cost":[[820.5532697999998,22.0],[1230.8299046999998,33.0],[1668.0449742,44.0],[2124.54454212,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.00375},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"6d644c3c-e1e8-42ff-a12d-fe5287c36680"},"available":true,"time_series_container":[],"name":"223_CT_6","status":true,"active_power":0.34375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"1df3b8d0-4ec3-4f7d-a618-90e55af47d58"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":872.2066491600004,"shut_down":2832.6172140000003,"variable":{"cost":[[820.5532697999998,22.0],[1230.8299046999998,33.0],[1668.0449742,44.0],[2124.54454212,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.00375},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[],"name":"313_CC_1","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"82361dfa-e56a-4196-bb52-e3ca01b34d07"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":2568.636101458008,"shut_down":14023.340511000002,"variable":{"cost":[[2674.368485361605,169.999999845],[3644.482549197544,231.6666668],[5294.419555113827,293.33333339999996],[7375.837980563647,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.36231884057971014},{"base_power":182.0,"prime_mover_type":"ST","rating":0.9583936012369455,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"5b2986f5-b66c-4ec9-8b97-1bebc04d0e48"},"available":true,"time_series_container":[],"name":"123_STEAM_2","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"5352f91c-f443-4da2-8a3c-4ce7a8e940fc"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.27472527472527475,"max":0.43956043956043955},"ext":{},"operation_cost":{"start_up":22784.795618999997,"fixed":232.77566688000002,"shut_down":11392.397809499998,"variable":{"cost":[[1204.6402895799995,62.0],[1806.9604343699993,93.0],[2518.9839762199995,124.0],[3543.078949849999,155.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":8.0},"must_run":false,"ramp_limits":{"up":0.0005494505494505495,"down":0.0005494505494505495},"time_at_status":10000.0,"active_power_limits":{"min":0.34065934065934067,"max":0.8516483516483516},"reactive_power":-0.028516483516483518},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"286599f1-84ad-4db3-83e0-92445f4fffb3"},"available":true,"time_series_container":[],"name":"213_CT_1","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"153a4449-04bf-47c4-b208-ac08504dfd21"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":532.4402978400002,"shut_down":2832.6172140000003,"variable":{"cost":[[589.99447716,22.0],[884.99171574,33.0],[1210.0488265800002,44.0],[1543.4440243200002,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.14421875},{"base_power":89.0,"prime_mover_type":"ST","rating":0.9180538523962021,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"2ca25f64-ff52-458f-abed-4c9a9a4aa3dc"},"available":true,"time_series_container":[],"name":"101_STEAM_3","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"09b93ba0-c7b0-4713-ae6a-964829d44c18"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.2808988764044944,"max":0.33707865168539325},"ext":{},"operation_cost":{"start_up":11172.014351999998,"fixed":415.8429727891081,"shut_down":5586.007175999999,"variable":{"cost":[[425.73644598647036,29.999999992],[643.3350740309802,45.333333327999995],[903.5587871162365,60.666666664000005],[1180.6704616510965,76.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.0},"must_run":false,"ramp_limits":{"up":0.0011235955056179776,"down":0.0011235955056179776},"time_at_status":10000.0,"active_power_limits":{"min":0.33707865168539325,"max":0.8539325842696629},"reactive_power":0.0015730337078651688},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"5b2986f5-b66c-4ec9-8b97-1bebc04d0e48"},"available":true,"time_series_container":[],"name":"123_CT_1","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"e3ae9691-af25-4729-a8f0-d6330846383a"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":510.3764371200001,"shut_down":2832.6172140000003,"variable":{"cost":[[577.85080188,22.0],[866.77620282,33.0],[1194.6126759600002,44.0],[1536.6025171200001,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.0096875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"6c8013ab-4b2e-45f6-8f5f-ce63c43aeb43"},"available":true,"time_series_container":[],"name":"113_CT_3","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"79430986-dff1-448f-9c3a-822e5919b63a"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":532.4402978400002,"shut_down":2832.6172140000003,"variable":{"cost":[[589.99447716,22.0],[884.99171574,33.0],[1210.0488265800002,44.0],[1543.4440243200002,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"17c6af0f-f8e6-44d7-b1c4-1b26eb380c71"},"available":true,"time_series_container":[],"name":"302_CT_3","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"40965f15-de17-4437-8c58-7ad724cc9e85"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":573.1472656800003,"shut_down":2832.6172140000003,"variable":{"cost":[[743.4152761199999,22.0],[1115.12291418,33.0],[1537.32942726,44.0],[1962.31530264,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.17171875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"6d2a0b43-986f-498f-be4a-e8e01e36da51"},"available":true,"time_series_container":[],"name":"215_CT_4","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"a43084bc-5039-4547-b3dc-85344cd69a7b"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":646.6079492400002,"shut_down":2832.6172140000003,"variable":{"cost":[[570.23962512,22.0],[855.35943768,33.0],[1154.11950522,44.0],[1514.19658104,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":89.0,"prime_mover_type":"ST","rating":0.9180538523962021,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"15a1c15e-b2fe-4acc-9979-53908db17fc8"},"available":true,"time_series_container":[],"name":"102_STEAM_3","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"33510731-d72e-444f-b83c-ab1f12da0e97"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.2808988764044944,"max":0.33707865168539325},"ext":{},"operation_cost":{"start_up":11172.014351999998,"fixed":181.1900828516824,"shut_down":5586.007175999999,"variable":{"cost":[[553.9076596522913,29.999999992],[837.0160191548607,45.333333327999995],[1156.6555351904503,60.666666664000005],[1501.9025167638265,76.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.0},"must_run":false,"ramp_limits":{"up":0.0011235955056179776,"down":0.0011235955056179776},"time_at_status":10000.0,"active_power_limits":{"min":0.33707865168539325,"max":0.8539325842696629},"reactive_power":-0.025955056179775282},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"c7f9dfad-53af-4b53-8740-e6608fed2d0b"},"available":true,"time_series_container":[],"name":"301_CT_4","status":true,"active_power":0.6875,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"87b1325b-63f9-4a71-af79-7a244a28c28c"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":493.10163144000023,"shut_down":2832.6172140000003,"variable":{"cost":[[626.33998416,22.0],[939.50997624,33.0],[1261.65944652,44.0],[1742.83119978,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.25828125},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"6c8013ab-4b2e-45f6-8f5f-ce63c43aeb43"},"available":true,"time_series_container":[],"name":"113_CT_2","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"a6432b5c-5ffa-4f43-9cfa-486f9fde6681"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":532.4402978400002,"shut_down":2832.6172140000003,"variable":{"cost":[[589.99447716,22.0],[884.99171574,33.0],[1210.0488265800002,44.0],[1543.4440243200002,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"43d5cbd7-28ec-4b98-b523-0318638345a8"},"available":true,"time_series_container":[],"name":"221_CC_1","status":true,"active_power":0.7173188405797102,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"68c8e132-a02c-457c-afb0-c30c2ae07060"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":619.1952732354412,"shut_down":14023.340511000002,"variable":{"cost":[[3931.92302641501,169.999999845],[5358.2088380838595,231.6666668],[6981.537823128909,293.33333339999996],[9209.180507420648,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":-0.01816425120772947},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"6d644c3c-e1e8-42ff-a12d-fe5287c36680"},"available":true,"time_series_container":[],"name":"223_CT_5","status":true,"active_power":0.34375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"c21061a9-4bea-42b3-be2e-1e3b31e7e008"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":872.2066491600004,"shut_down":2832.6172140000003,"variable":{"cost":[[820.5532697999998,22.0],[1230.8299046999998,33.0],[1668.0449742,44.0],[2124.54454212,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.00375},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"b6ad30dc-e95d-47ab-9c7e-71c604405d7f"},"available":true,"time_series_container":[],"name":"315_CT_7","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"54aad730-2e07-4216-af77-368110e15600"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":303.59188200000017,"shut_down":2832.6172140000003,"variable":{"cost":[[580.8439612799998,22.0],[871.2659419199997,33.0],[1167.1183688999997,44.0],[1517.5318157999998,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"6d2a0b43-986f-498f-be4a-e8e01e36da51"},"available":true,"time_series_container":[],"name":"215_CT_5","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"d3000b92-f66f-4ae2-99f2-79050c82495c"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":646.6079492400002,"shut_down":2832.6172140000003,"variable":{"cost":[[570.23962512,22.0],[855.35943768,33.0],[1154.11950522,44.0],[1514.19658104,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"b4b8d99a-d2be-49f0-b50a-29673f935cd3"},"available":true,"time_series_container":[],"name":"323_CC_1","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"6ef2a6cc-499f-487f-8491-cd099c4ebff9"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":384.6015464493339,"shut_down":14023.340511000002,"variable":{"cost":[[4492.965488503473,169.999999845],[6122.766704223895,231.6666668],[7989.882691305391,293.33333339999996],[9946.411216990226,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.0903623188405797},{"base_power":89.0,"prime_mover_type":"ST","rating":0.9180538523962021,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"2ca25f64-ff52-458f-abed-4c9a9a4aa3dc"},"available":true,"time_series_container":[],"name":"101_STEAM_4","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"31ed114c-86a5-4094-80d0-b9c63ad6e36c"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.2808988764044944,"max":0.33707865168539325},"ext":{},"operation_cost":{"start_up":11172.014351999998,"fixed":415.8429727891081,"shut_down":5586.007175999999,"variable":{"cost":[[425.73644598647036,29.999999992],[643.3350740309802,45.333333327999995],[903.5587871162365,60.666666664000005],[1180.6704616510965,76.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.0},"must_run":false,"ramp_limits":{"up":0.0011235955056179776,"down":0.0011235955056179776},"time_at_status":10000.0,"active_power_limits":{"min":0.33707865168539325,"max":0.8539325842696629},"reactive_power":0.0015730337078651688},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"6c8013ab-4b2e-45f6-8f5f-ce63c43aeb43"},"available":true,"time_series_container":[],"name":"113_CT_1","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"008ab0a8-0118-4bb7-a79d-b8c293e2b466"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":532.4402978400002,"shut_down":2832.6172140000003,"variable":{"cost":[[589.99447716,22.0],[884.99171574,33.0],[1210.0488265800002,44.0],[1543.4440243200002,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":412.0,"prime_mover_type":"ST","rating":0.9242443089640665,"services":[],"bus":{"value":"6d644c3c-e1e8-42ff-a12d-fe5287c36680"},"available":true,"time_series_container":[],"name":"223_STEAM_3","status":true,"active_power":0.8495145631067961,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"227d77ee-eb10-4059-bfae-37e9e22e1e45"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06067961165048544,"max":0.3640776699029126},"ext":{},"operation_cost":{"start_up":36749.81355899999,"fixed":682.7764902000004,"shut_down":18374.906779499994,"variable":{"cost":[[2640.542629199999,140.0],[3960.813943799998,210.0],[5575.712044699998,280.0],[7298.930993199998,350.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":24.0,"down":48.0},"must_run":false,"ramp_limits":{"up":0.00024271844660194176,"down":0.00024271844660194176},"time_at_status":10000.0,"active_power_limits":{"min":0.33980582524271846,"max":0.8495145631067961},"reactive_power":0.04997572815533981},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"f7f35b5b-3994-4120-ae45-e152834e1769"},"available":true,"time_series_container":[],"name":"318_CC_1","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"c96a9432-e7cb-4cb1-a500-54e3736ac3bd"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":691.2254597697665,"shut_down":14023.340511000002,"variable":{"cost":[[4563.674020239003,169.999999845],[6219.124409379352,231.6666668],[7901.18280986091,293.33333339999996],[9845.486028658961,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.15246376811594203},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"2c7a5c45-2e2f-4fd1-8046-eb6ff0e1e270"},"available":true,"time_series_container":[],"name":"307_CT_2","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"6f3b5edb-9a51-4bbe-b13e-95a16a894264"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":528.2498746800003,"shut_down":2832.6172140000003,"variable":{"cost":[[613.6831958399999,22.0],[920.52479376,33.0],[1241.9473539,44.0],[1632.16982082,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"286599f1-84ad-4db3-83e0-92445f4fffb3"},"available":true,"time_series_container":[],"name":"213_CT_2","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"c9fc853c-33a4-4362-9d6d-4b2bde634d9c"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":532.4402978400002,"shut_down":2832.6172140000003,"variable":{"cost":[[589.99447716,22.0],[884.99171574,33.0],[1210.0488265800002,44.0],[1543.4440243200002,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.14421875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"6c8013ab-4b2e-45f6-8f5f-ce63c43aeb43"},"available":true,"time_series_container":[],"name":"113_CT_4","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"beb05102-4fa4-40e2-a6da-0d8b2f0d1cf8"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":532.4402978400002,"shut_down":2832.6172140000003,"variable":{"cost":[[589.99447716,22.0],[884.99171574,33.0],[1210.0488265800002,44.0],[1543.4440243200002,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"available":true,"time_series_container":[],"name":"118_CC_1","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"09b937cd-3a43-4cad-9976-b040067a1150"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":957.5389017269504,"shut_down":14023.340511000002,"variable":{"cost":[[3838.085535700569,169.999999845],[5230.332257410263,231.6666668],[6941.875221559946,293.33333339999996],[8943.709296295801,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.1652898550724638},{"base_power":64.0,"prime_mover_type":"CT","rating":1.2717828590702895,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"b6ad30dc-e95d-47ab-9c7e-71c604405d7f"},"available":true,"time_series_container":[],"name":"315_CT_8","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"b459194b-a6fc-4d1e-9ef3-dca104ea7721"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.9375},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":303.59188200000017,"shut_down":2832.6172140000003,"variable":{"cost":[[580.8439612799998,22.0],[871.2659419199997,33.0],[1167.1183688999997,44.0],[1517.5318157999998,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.9375},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"5aca363d-9812-40fb-88ff-6cbc52219e7d"},"available":true,"time_series_container":[],"name":"218_CC_1","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"16313031-4740-4309-8b60-62240bde9fed"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":3962.9819141866938,"shut_down":14023.340511000002,"variable":{"cost":[[3560.5380279536275,169.999999845],[4852.105751192579,231.6666668],[6188.499592247828,293.33333339999996],[8024.213320463274,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.14565217391304347},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"286599f1-84ad-4db3-83e0-92445f4fffb3"},"available":true,"time_series_container":[],"name":"213_CC_3","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"4b4ce727-a85d-4ee5-80e8-299023857e0c"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":984.6328251022478,"shut_down":14023.340511000002,"variable":{"cost":[[4185.680747783644,169.999999845],[5704.015929482886,231.6666668],[7376.965277774292,293.33333339999996],[9474.204688607007,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.3280193236714976},{"base_power":182.0,"prime_mover_type":"ST","rating":0.9583936012369455,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"64bfc797-e7a4-49f8-a241-2e07c8b893fb"},"available":true,"time_series_container":[],"name":"115_STEAM_3","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"85f80aac-1f33-4f24-8618-67c4f0d3746b"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.27472527472527475,"max":0.43956043956043955},"ext":{},"operation_cost":{"start_up":22784.795618999997,"fixed":235.39701448000028,"shut_down":11392.397809499998,"variable":{"cost":[[1264.8002169999995,62.0],[1897.2003254999993,93.0],[2594.4787870999994,124.0],[3433.0478843399987,155.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":8.0},"must_run":false,"ramp_limits":{"up":0.0005494505494505495,"down":0.0005494505494505495},"time_at_status":10000.0,"active_power_limits":{"min":0.34065934065934067,"max":0.8516483516483516},"reactive_power":0.43956043956043955},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"b4b8d99a-d2be-49f0-b50a-29673f935cd3"},"available":true,"time_series_container":[],"name":"323_CC_2","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"2b11ea3f-e56c-4859-b940-9603a397bf5d"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":384.6015464493339,"shut_down":14023.340511000002,"variable":{"cost":[[4492.965488503473,169.999999845],[6122.766704223895,231.6666668],[7989.882691305391,293.33333339999996],[9946.411216990226,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.0903623188405797},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"790837ec-5ed0-4d83-8ae4-23d3ad9e099b"},"available":true,"time_series_container":[],"name":"322_CT_5","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"a573cba5-ceef-4892-9764-f7ca25bed94e"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":518.3296892400001,"shut_down":2832.6172140000003,"variable":{"cost":[[513.36959652,22.0],[770.0543947799999,33.0],[1061.5453609200001,44.0],[1368.38695884,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":-0.15203125},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"00573659-fd6d-47db-93c5-894d7b071535"},"available":true,"time_series_container":[],"name":"207_CT_2","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"16957eac-da51-4e63-905f-cf89596ca016"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":363.1985134800001,"shut_down":2832.6172140000003,"variable":{"cost":[[752.9078673599998,22.0],[1129.3618010399998,33.0],[1534.76386206,44.0],[2003.19330816,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":412.0,"prime_mover_type":"ST","rating":0.9242443089640665,"services":[],"bus":{"value":"5b2986f5-b66c-4ec9-8b97-1bebc04d0e48"},"available":true,"time_series_container":[],"name":"123_STEAM_3","status":true,"active_power":0.8495145631067961,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"adf4539f-d36e-49ec-9844-5ce1c017b804"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06067961165048544,"max":0.3640776699029126},"ext":{},"operation_cost":{"start_up":36749.81355899999,"fixed":785.1781658,"shut_down":18374.906779499994,"variable":{"cost":[[2797.6966457999993,140.0],[4196.544968699999,210.0],[5711.853000699999,280.0],[7352.499499799998,350.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":24.0,"down":48.0},"must_run":false,"ramp_limits":{"up":0.00024271844660194176,"down":0.00024271844660194176},"time_at_status":10000.0,"active_power_limits":{"min":0.33980582524271846,"max":0.8495145631067961},"reactive_power":0.06895631067961165},{"base_power":182.0,"prime_mover_type":"ST","rating":0.9583936012369455,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"6d644c3c-e1e8-42ff-a12d-fe5287c36680"},"available":true,"time_series_container":[],"name":"223_STEAM_1","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"97792e67-a9bc-4ada-8baf-ccf6ae09a354"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.27472527472527475,"max":0.43956043956043955},"ext":{},"operation_cost":{"start_up":22784.795618999997,"fixed":242.86785514000053,"shut_down":11392.397809499998,"variable":{"cost":[[1180.1306895199994,62.0],[1770.196034279999,93.0],[2380.576822939999,124.0],[3013.566734649999,155.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":8.0},"must_run":false,"ramp_limits":{"up":0.0005494505494505495,"down":0.0005494505494505495},"time_at_status":10000.0,"active_power_limits":{"min":0.34065934065934067,"max":0.8516483516483516},"reactive_power":-0.05664835164835165},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"5b2986f5-b66c-4ec9-8b97-1bebc04d0e48"},"available":true,"time_series_container":[],"name":"123_CT_5","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"f6c1a976-0c6e-4778-a056-b35b7cbdcd65"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":510.3764371200001,"shut_down":2832.6172140000003,"variable":{"cost":[[577.85080188,22.0],[866.77620282,33.0],[1194.6126759600002,44.0],[1536.6025171200001,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.0096875},{"base_power":182.0,"prime_mover_type":"ST","rating":0.9583936012369455,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"6d644c3c-e1e8-42ff-a12d-fe5287c36680"},"available":true,"time_series_container":[],"name":"223_STEAM_2","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"6f13abf7-fdaa-4fd6-acbb-63058ca8eab5"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.27472527472527475,"max":0.43956043956043955},"ext":{},"operation_cost":{"start_up":22784.795618999997,"fixed":242.86785514000053,"shut_down":11392.397809499998,"variable":{"cost":[[1180.1306895199994,62.0],[1770.196034279999,93.0],[2380.576822939999,124.0],[3013.566734649999,155.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":8.0},"must_run":false,"ramp_limits":{"up":0.0005494505494505495,"down":0.0005494505494505495},"time_at_status":10000.0,"active_power_limits":{"min":0.34065934065934067,"max":0.8516483516483516},"reactive_power":-0.05664835164835165},{"base_power":89.0,"prime_mover_type":"ST","rating":0.9180538523962021,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"5987511f-5bc8-43a1-a775-7dd036a80cea"},"available":true,"time_series_container":[],"name":"202_STEAM_4","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"aaea49fb-b792-4a8c-86a0-97b0d0857e1d"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.2808988764044944,"max":0.33707865168539325},"ext":{},"operation_cost":{"start_up":11172.014351999998,"fixed":117.7703828685942,"shut_down":5586.007175999999,"variable":{"cost":[[633.499383131067,29.999999992],[957.2879568740448,45.333333327999995],[1283.7021061974792,60.666666664000005],[1701.9141572968783,76.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.0},"must_run":false,"ramp_limits":{"up":0.0011235955056179776,"down":0.0011235955056179776},"time_at_status":10000.0,"active_power_limits":{"min":0.33707865168539325,"max":0.8539325842696629},"reactive_power":0.022584269662921347},{"base_power":182.0,"prime_mover_type":"ST","rating":0.9583936012369455,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"d7977deb-c4d7-493d-ace7-89064b663efd"},"available":true,"time_series_container":[],"name":"116_STEAM_1","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"09594b36-df5f-410d-85df-030001581165"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.27472527472527475,"max":0.43956043956043955},"ext":{},"operation_cost":{"start_up":22784.795618999997,"fixed":514.5705338800003,"shut_down":11392.397809499998,"variable":{"cost":[[1220.4994425599996,62.0],[1830.7491638399993,93.0],[2496.4403868599993,124.0],[3236.577881719999,155.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":8.0},"must_run":false,"ramp_limits":{"up":0.0005494505494505495,"down":0.0005494505494505495},"time_at_status":10000.0,"active_power_limits":{"min":0.34065934065934067,"max":0.8516483516483516},"reactive_power":0.43956043956043955},{"base_power":471.0,"prime_mover_type":"ST","rating":0.9494980796177451,"services":[],"bus":{"value":"2ca38989-a480-41d5-8fbf-7424057aba13"},"available":true,"time_series_container":[],"name":"121_NUCLEAR_1","status":true,"active_power":0.8492569002123143,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NUCLEAR","internal":{"uuid":{"value":"13f7daff-596e-4369-9788-53f55f9af5b3"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.10615711252653928,"max":0.42462845010615713},"ext":{},"operation_cost":{"start_up":63999.82230000001,"fixed":3208.9860000000003,"shut_down":31999.911150000004,"variable":{"cost":[[0.0,396.0],[0.0,397.3333332],[0.0,398.6666668],[0.0,400.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":4380.0,"down":4380.0},"must_run":false,"ramp_limits":{"up":0.0,"down":0.0},"time_at_status":10000.0,"active_power_limits":{"min":0.8407643312101911,"max":0.8492569002123143},"reactive_power":-0.046433121019108285},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"5b2986f5-b66c-4ec9-8b97-1bebc04d0e48"},"available":true,"time_series_container":[],"name":"123_CT_4","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"1dc301b4-c37e-4bf4-ad74-3a8d2cf958ca"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":510.3764371200001,"shut_down":2832.6172140000003,"variable":{"cost":[[577.85080188,22.0],[866.77620282,33.0],[1194.6126759600002,44.0],[1536.6025171200001,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.0096875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"00573659-fd6d-47db-93c5-894d7b071535"},"available":true,"time_series_container":[],"name":"207_CT_1","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"1a09dce0-bbd8-427d-b908-21e3189e65fa"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":363.1985134800001,"shut_down":2832.6172140000003,"variable":{"cost":[[752.9078673599998,22.0],[1129.3618010399998,33.0],[1534.76386206,44.0],[2003.19330816,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"c7f9dfad-53af-4b53-8740-e6608fed2d0b"},"available":true,"time_series_container":[],"name":"301_CT_3","status":true,"active_power":0.6875,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"103ac00b-39ec-485c-ae51-251128ea904d"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":493.10163144000023,"shut_down":2832.6172140000003,"variable":{"cost":[[626.33998416,22.0],[939.50997624,33.0],[1261.65944652,44.0],[1742.83119978,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.25828125},{"base_power":182.0,"prime_mover_type":"ST","rating":0.9583936012369455,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"6b0d373c-e4ce-40e5-9225-e2df4ad602d5"},"available":true,"time_series_container":[],"name":"316_STEAM_1","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"635122b1-4c37-4ccb-9070-3fbf68bb4305"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.27472527472527475,"max":0.43956043956043955},"ext":{},"operation_cost":{"start_up":22784.795618999997,"fixed":243.39212466000004,"shut_down":11392.397809499998,"variable":{"cost":[[1309.2320588199996,62.0],[1963.8480882299993,93.0],[2623.7723465299996,124.0],[3469.288014909999,155.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":8.0},"must_run":false,"ramp_limits":{"up":0.0005494505494505495,"down":0.0005494505494505495},"time_at_status":10000.0,"active_power_limits":{"min":0.34065934065934067,"max":0.8516483516483516},"reactive_power":0.43956043956043955},{"base_power":182.0,"prime_mover_type":"ST","rating":0.9583936012369455,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"7e34591f-8f76-4bed-be9a-e33156bd86be"},"available":true,"time_series_container":[],"name":"216_STEAM_1","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"1384e0c9-8b2e-4d03-91b6-a75182d9adeb"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.27472527472527475,"max":0.43956043956043955},"ext":{},"operation_cost":{"start_up":22784.795618999997,"fixed":274.58616110000025,"shut_down":11392.397809499998,"variable":{"cost":[[1151.5580006799994,62.0],[1727.3370010199992,93.0],[2404.4966197899994,124.0],[3137.884144579999,155.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":8.0},"must_run":false,"ramp_limits":{"up":0.0005494505494505495,"down":0.0005494505494505495},"time_at_status":10000.0,"active_power_limits":{"min":0.34065934065934067,"max":0.8516483516483516},"reactive_power":0.43956043956043955},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"b6ad30dc-e95d-47ab-9c7e-71c604405d7f"},"available":true,"time_series_container":[],"name":"315_CT_6","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"2d419eda-b0bb-4efe-a1dc-39d656d37ed5"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":303.59188200000017,"shut_down":2832.6172140000003,"variable":{"cost":[[580.8439612799998,22.0],[871.2659419199997,33.0],[1167.1183688999997,44.0],[1517.5318157999998,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":89.0,"prime_mover_type":"ST","rating":0.9180538523962021,"services":[{"value":"1a764e41-7cfe-44b6-98af-29773e5cdfd3"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"b073d820-4ac0-44c9-a276-51def4fd5b49"},"available":true,"time_series_container":[],"name":"201_STEAM_3","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"58419386-9d43-4949-be75-e11936fe675a"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.2808988764044944,"max":0.33707865168539325},"ext":{},"operation_cost":{"start_up":11172.014351999998,"fixed":158.16873175782132,"shut_down":5586.007175999999,"variable":{"cost":[[665.5897513225095,29.999999992],[1005.7800688150064,45.333333327999995],[1365.2570217441908,60.666666664000005],[1760.2278667795479,76.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.0},"must_run":false,"ramp_limits":{"up":0.0011235955056179776,"down":0.0011235955056179776},"time_at_status":10000.0,"active_power_limits":{"min":0.33707865168539325,"max":0.8539325842696629},"reactive_power":0.07853932584269663},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"17c6af0f-f8e6-44d7-b1c4-1b26eb380c71"},"available":true,"time_series_container":[],"name":"302_CT_4","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"0d0293bf-3a0f-4f6a-b4ee-ecea4c078032"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":573.1472656800003,"shut_down":2832.6172140000003,"variable":{"cost":[[743.4152761199999,22.0],[1115.12291418,33.0],[1537.32942726,44.0],[1962.31530264,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.17171875},{"base_power":64.0,"prime_mover_type":"CT","rating":0.9092085328735097,"services":[{"value":"d5c0fe99-262a-401f-b49f-0864a228933c"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"2c7a5c45-2e2f-4fd1-8046-eb6ff0e1e270"},"available":true,"time_series_container":[],"name":"307_CT_1","status":true,"active_power":0.859375,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"7d5aadbc-c910-46e3-b664-409e9a02e6e1"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.234375,"max":0.296875},"ext":{},"operation_cost":{"start_up":5665.234428000001,"fixed":528.2498746800003,"shut_down":2832.6172140000003,"variable":{"cost":[[613.6831958399999,22.0],[920.52479376,33.0],[1241.9473539,44.0],[1632.16982082,55.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":2.2,"down":2.2},"must_run":false,"ramp_limits":{"up":0.0578125,"down":0.0578125},"time_at_status":10000.0,"active_power_limits":{"min":0.34375,"max":0.859375},"reactive_power":0.296875},{"base_power":89.0,"prime_mover_type":"ST","rating":0.9180538523962021,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"15a1c15e-b2fe-4acc-9979-53908db17fc8"},"available":true,"time_series_container":[],"name":"102_STEAM_4","status":false,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"COAL","internal":{"uuid":{"value":"35b0ff14-1eb9-452a-a3cb-4de2c04a2461"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.2808988764044944,"max":0.33707865168539325},"ext":{},"operation_cost":{"start_up":11172.014351999998,"fixed":181.1900828516824,"shut_down":5586.007175999999,"variable":{"cost":[[553.9076596522913,29.999999992],[837.0160191548607,45.333333327999995],[1156.6555351904503,60.666666664000005],[1501.9025167638265,76.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.0},"must_run":false,"ramp_limits":{"up":0.0011235955056179776,"down":0.0011235955056179776},"time_at_status":10000.0,"active_power_limits":{"min":0.33707865168539325,"max":0.8539325842696629},"reactive_power":-0.025955056179775282},{"base_power":414.0,"prime_mover_type":"CC","rating":0.9308923030214076,"services":[{"value":"a09370bc-8e8c-4873-ba6f-9d0cb0ed93c4"},{"value":"1a94693e-7284-4b7f-b3b9-ce65fca17983"},{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"}],"bus":{"value":"04fa9f2f-feec-4bab-abec-f1c911527c9f"},"available":true,"time_series_container":[],"name":"107_CC_1","status":true,"active_power":0.857487922705314,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"ThermalStandard"},"fuel":"NATURAL_GAS","internal":{"uuid":{"value":"896825cf-1d3c-41e1-8eb6-29e1f24a1a87"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.06038647342995169,"max":0.36231884057971014},"ext":{},"operation_cost":{"start_up":28046.681022000004,"fixed":827.3559040456475,"shut_down":14023.340511000002,"variable":{"cost":[[3945.1395744029605,169.999999845],[5376.219624094227,231.6666668],[7028.314037108178,293.33333339999996],[8911.01129767283,355.0]]},"__metadata__":{"module":"PowerSystems","type":"ThreePartCost"}},"time_limits":{"up":8.0,"down":4.5},"must_run":false,"ramp_limits":{"up":0.009999999999999998,"down":0.009999999999999998},"time_at_status":10000.0,"active_power_limits":{"min":0.4106280193236715,"max":0.857487922705314},"reactive_power":0.11958937198067632},{"base_power":713.5,"prime_mover_type":"WT","rating":1.0,"services":[],"bus":{"value":"cedc8d83-9c60-4620-b30a-395c3e18e507"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"703d3d16-be82-489e-998f-71a26d8099a2"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"34c6e183-61bd-486b-ae1f-7e2e2780fe5b"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"34c6e183-61bd-486b-ae1f-7e2e2780fe5b"},"ext":null,"units_info":null},"time_series_uuid":{"value":"703d3d16-be82-489e-998f-71a26d8099a2"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"122_WIND_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"b6eda31a-cc8b-4a07-b904-07bd229e7fa3"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.0,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"ddf53cea-fd92-45db-98b1-93b296b400b6"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"992e24a8-f7e0-48f0-9d6e-7914bf0b8638"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"7beed90a-08e5-4912-af81-73870d0cf8b8"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"7beed90a-08e5-4912-af81-73870d0cf8b8"},"ext":null,"units_info":null},"time_series_uuid":{"value":"992e24a8-f7e0-48f0-9d6e-7914bf0b8638"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"324_PV_3","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"e096d169-37c3-4f73-9f83-dfc794069c30"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":94.1,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"00bbd79e-c2c8-4605-bc9c-c1a074e4940a"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b8a9ce08-9f43-451a-8a68-50e348cd76f2"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"057247c5-ee33-4819-b6bb-fe64c4139390"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"057247c5-ee33-4819-b6bb-fe64c4139390"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b8a9ce08-9f43-451a-8a68-50e348cd76f2"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"312_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"e47cab81-78ee-45df-949a-1adb4fe2b36a"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":25.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"15a1c15e-b2fe-4acc-9979-53908db17fc8"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"7b226ccf-7d2b-48d0-8458-e404cb33553c"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"afab5330-8a2a-41b0-bfb1-6b1e451a3e6e"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"afab5330-8a2a-41b0-bfb1-6b1e451a3e6e"},"ext":null,"units_info":null},"time_series_uuid":{"value":"7b226ccf-7d2b-48d0-8458-e404cb33553c"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"102_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"54cc95fb-8aa2-473c-8b48-894f8994fa20"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":25.9,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"2ca25f64-ff52-458f-abed-4c9a9a4aa3dc"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"0de90e44-6c6b-4313-a7a1-94936ce65042"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d82c9c66-a8b9-43d5-a8c3-e406c10dc6ea"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d82c9c66-a8b9-43d5-a8c3-e406c10dc6ea"},"ext":null,"units_info":null},"time_series_uuid":{"value":"0de90e44-6c6b-4313-a7a1-94936ce65042"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"101_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"332a9ebe-6c3f-43b2-92ac-9261e5e8c885"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"ddf53cea-fd92-45db-98b1-93b296b400b6"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"9dc3b37d-55f6-432e-b173-664dba08307b"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d80a79db-06d6-4cb9-aa59-527095e63c3e"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d80a79db-06d6-4cb9-aa59-527095e63c3e"},"ext":null,"units_info":null},"time_series_uuid":{"value":"9dc3b37d-55f6-432e-b173-664dba08307b"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"324_PV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"0cb84562-bc44-40ce-be54-1b836e1ef486"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":93.3,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b7a61db7-626b-4560-8e49-3736d50add7d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d3acea5c-755f-4830-b4a2-742ac1b456d4"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d3acea5c-755f-4830-b4a2-742ac1b456d4"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b7a61db7-626b-4560-8e49-3736d50add7d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_PV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"b180c057-212d-4e80-b614-bec1927095f2"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":26.8,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"3086f062-6d95-4f39-89ea-1c6ea6700aa1"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"700db409-be1f-4581-abfb-6d901d3eb2ad"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"826391bc-c3aa-4762-93b6-41fe01a722ae"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"826391bc-c3aa-4762-93b6-41fe01a722ae"},"ext":null,"units_info":null},"time_series_uuid":{"value":"700db409-be1f-4581-abfb-6d901d3eb2ad"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"104_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"416fa2de-e8ff-4ca2-80d8-631b0a5517df"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":26.7,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"2ca25f64-ff52-458f-abed-4c9a9a4aa3dc"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"2e33687c-348a-4d9b-94e5-7f926cf88869"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"6bef9d83-fddb-4b4d-a902-ac95ae055bc8"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"6bef9d83-fddb-4b4d-a902-ac95ae055bc8"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2e33687c-348a-4d9b-94e5-7f926cf88869"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"101_PV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"be88b747-a451-4177-a05f-68aeecde815d"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":148.3,"prime_mover_type":"WT","rating":1.0,"services":[],"bus":{"value":"440dbe86-e1ac-4fae-93be-1bd6e245c924"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"a6421106-27d8-4ac9-9153-18e6cc459d22"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"9fd5ea14-1960-4cd9-9790-e715e66534eb"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"9fd5ea14-1960-4cd9-9790-e715e66534eb"},"ext":null,"units_info":null},"time_series_uuid":{"value":"a6421106-27d8-4ac9-9153-18e6cc459d22"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"309_WIND_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"9070f020-af0e-4edc-8853-25193a4c749f"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"6d0dcef3-6f3d-407d-ac73-7e0e10b9337e"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"78675572-66e4-44e8-be7b-9408e3330639"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"bf1005cc-70ba-425d-92a8-4fbd03e49dc3"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"bf1005cc-70ba-425d-92a8-4fbd03e49dc3"},"ext":null,"units_info":null},"time_series_uuid":{"value":"78675572-66e4-44e8-be7b-9408e3330639"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"310_PV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"f4481d5f-817c-4a7d-a787-5c56ed539701"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":93.6,"prime_mover_type":"PVe","rating":1.9999999999999998,"services":[],"bus":{"value":"6c8013ab-4b2e-45f6-8f5f-ce63c43aeb43"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"6db063f8-57f8-48cf-9c4e-85798ddb97ef"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"010414d8-a47e-4135-9226-61fb64e7bca8"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"010414d8-a47e-4135-9226-61fb64e7bca8"},"ext":null,"units_info":null},"time_series_uuid":{"value":"6db063f8-57f8-48cf-9c4e-85798ddb97ef"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"113_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"403c885f-d29c-4d66-803d-f672821f303f"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":799.1,"prime_mover_type":"WT","rating":1.0,"services":[],"bus":{"value":"d9e6f714-ebb9-4069-a930-677424695c60"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"fc9a6966-6369-478a-84de-4db52e88a8c6"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"39edc758-a162-4b4b-b9a1-d71d61e2b257"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"39edc758-a162-4b4b-b9a1-d71d61e2b257"},"ext":null,"units_info":null},"time_series_uuid":{"value":"fc9a6966-6369-478a-84de-4db52e88a8c6"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"317_WIND_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"5acafb5e-40d5-46f7-944b-9940545ad84e"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"2fe23a34-0e94-41e3-b35c-11577449ee4b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"92bb0bad-b9cf-4fae-8214-1774dfd5e30e"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"51cc7355-68e1-4480-a55d-40e51b0ce3a2"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"51cc7355-68e1-4480-a55d-40e51b0ce3a2"},"ext":null,"units_info":null},"time_series_uuid":{"value":"92bb0bad-b9cf-4fae-8214-1774dfd5e30e"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"314_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"fde8599f-f5f8-4df1-bf74-4ec1d83c04a8"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":49.7,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"ddf53cea-fd92-45db-98b1-93b296b400b6"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"eafb42bf-e3dc-4de2-b2ef-fddb0f532799"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"4e55dc65-a6bb-4738-8307-4ae887187fed"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"4e55dc65-a6bb-4738-8307-4ae887187fed"},"ext":null,"units_info":null},"time_series_uuid":{"value":"eafb42bf-e3dc-4de2-b2ef-fddb0f532799"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"324_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"8ab553d3-cf8c-4c09-81cf-6f012dcce248"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":61.5,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"283fe249-ae58-4f16-b84d-b5c61e7ea053"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"e7ea62a6-a5b8-4f80-8d24-3cad11b7dd15"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"42bfcb6e-5100-412d-9314-e5988579b272"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"42bfcb6e-5100-412d-9314-e5988579b272"},"ext":null,"units_info":null},"time_series_uuid":{"value":"e7ea62a6-a5b8-4f80-8d24-3cad11b7dd15"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"103_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"e587ecc4-2c3d-49cc-86d0-7682d1085f5b"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":847.0,"prime_mover_type":"WT","rating":1.0,"services":[],"bus":{"value":"90f8db1b-be67-4858-a82a-0eefe87ff6d4"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"6650805b-cf93-418e-9b5e-c6c465d32d34"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"f19f8f1b-7f9e-44fe-aeb3-41f9fa2ffb88"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"f19f8f1b-7f9e-44fe-aeb3-41f9fa2ffb88"},"ext":null,"units_info":null},"time_series_uuid":{"value":"6650805b-cf93-418e-9b5e-c6c465d32d34"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"303_WIND_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"41effca3-7113-4e75-a9c4-66ad0db995a1"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"2fe23a34-0e94-41e3-b35c-11577449ee4b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"2a7fa2fd-38d6-46f6-bd0c-6e0804113231"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"865e3c12-29d3-4dde-a6fe-8f0389f93cbc"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"865e3c12-29d3-4dde-a6fe-8f0389f93cbc"},"ext":null,"units_info":null},"time_series_uuid":{"value":"2a7fa2fd-38d6-46f6-bd0c-6e0804113231"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"314_PV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"cc494d99-0aa8-4f09-9794-f325ceb717c6"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":25.3,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"15a1c15e-b2fe-4acc-9979-53908db17fc8"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"16307cee-c23e-4d1d-a29d-7ca9533070e8"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"19ca5010-81ad-4f7a-af85-fa2355e7dd17"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"19ca5010-81ad-4f7a-af85-fa2355e7dd17"},"ext":null,"units_info":null},"time_series_uuid":{"value":"16307cee-c23e-4d1d-a29d-7ca9533070e8"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"102_PV_2","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"4f9f8b51-d128-4b65-816b-1c5105c793ea"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":92.7,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"2fe23a34-0e94-41e3-b35c-11577449ee4b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"c74a7f8b-e657-44e0-8179-7f07a56a8f63"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"2b4f7a58-1811-4f8d-a72c-7afc96080118"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"2b4f7a58-1811-4f8d-a72c-7afc96080118"},"ext":null,"units_info":null},"time_series_uuid":{"value":"c74a7f8b-e657-44e0-8179-7f07a56a8f63"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"314_PV_3","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"865c4e35-0659-4d64-b69b-8d201e7f0b9c"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"47dbf654-a983-4442-b5a5-baf4e85449c0"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"7fc5ab85-9ed3-4367-be64-6c34f34351d3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"71186d7d-a930-4fc9-8f25-f802988cf72b"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"71186d7d-a930-4fc9-8f25-f802988cf72b"},"ext":null,"units_info":null},"time_series_uuid":{"value":"7fc5ab85-9ed3-4367-be64-6c34f34351d3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"320_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"49ddd320-8bc8-498a-8a8e-b9572f72b37b"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":26.2,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"2ca25f64-ff52-458f-abed-4c9a9a4aa3dc"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"98318545-33e5-453d-8407-c09723794f68"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"2aed38f9-9e0f-4214-9912-dffe07fec04c"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"2aed38f9-9e0f-4214-9912-dffe07fec04c"},"ext":null,"units_info":null},"time_series_uuid":{"value":"98318545-33e5-453d-8407-c09723794f68"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"101_PV_3","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"deec67b0-1bc1-4da5-b409-4ffd809c2deb"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":188.2,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"f05374ea-ee8a-48f4-bd50-47bac762e887"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"70042ec0-c60b-460f-8c85-02356fb03448"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"6fadb4bc-915a-4c8d-8994-1ae0e2a35f82"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"6fadb4bc-915a-4c8d-8994-1ae0e2a35f82"},"ext":null,"units_info":null},"time_series_uuid":{"value":"70042ec0-c60b-460f-8c85-02356fb03448"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"319_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"1ec2e81d-bd52-4290-b804-abd7908f13fe"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"2fe23a34-0e94-41e3-b35c-11577449ee4b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"fbfae495-00e6-4066-bf90-1c012c195fde"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"f6e9aa1a-dcd2-4471-859e-1f9c01f87c73"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"f6e9aa1a-dcd2-4471-859e-1f9c01f87c73"},"ext":null,"units_info":null},"time_series_uuid":{"value":"fbfae495-00e6-4066-bf90-1c012c195fde"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"314_PV_4","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"ed2e8bff-6ad0-4903-a3da-1c8adfe9e5d8"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":51.7,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"6d0dcef3-6f3d-407d-ac73-7e0e10b9337e"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"465b0aab-85b0-4a6a-b494-ef5464a86731"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"00ed4a25-6a80-4d2f-b2f1-45c6ab2f442c"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"00ed4a25-6a80-4d2f-b2f1-45c6ab2f442c"},"ext":null,"units_info":null},"time_series_uuid":{"value":"465b0aab-85b0-4a6a-b494-ef5464a86731"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"310_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"00fd797e-7a83-4d68-bdd9-b71524d591f7"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":125.1,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"6d2a0b43-986f-498f-be4a-e8e01e36da51"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"e6cd7355-19ba-4f88-9de7-d0a5183c65d0"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"6826bf97-5f4f-4ab4-b634-d3ccbf6abaed"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"6826bf97-5f4f-4ab4-b634-d3ccbf6abaed"},"ext":null,"units_info":null},"time_series_uuid":{"value":"e6cd7355-19ba-4f88-9de7-d0a5183c65d0"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"215_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"7d50487b-7fb7-4fa8-bd32-4dd2840ea7c2"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":95.1,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"bd1bdb58-04e6-4211-b7cb-2f5e693eaf82"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"6ff831fa-5768-4f67-b5ed-d31d24a4b88a"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"6ff831fa-5768-4f67-b5ed-d31d24a4b88a"},"ext":null,"units_info":null},"time_series_uuid":{"value":"bd1bdb58-04e6-4211-b7cb-2f5e693eaf82"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"313_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"e88a6186-a76e-4110-ae81-052682d58c64"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":25.8,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"2ca25f64-ff52-458f-abed-4c9a9a4aa3dc"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"dc643f75-b72d-4577-b4db-2fccf2853c5d"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"8cce5888-872a-483d-8e2a-1e9fc8260402"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"8cce5888-872a-483d-8e2a-1e9fc8260402"},"ext":null,"units_info":null},"time_series_uuid":{"value":"dc643f75-b72d-4577-b4db-2fccf2853c5d"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"101_PV_4","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"0cb923fe-1b36-4757-ad1d-eb2d5c3186fc"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"base_power":66.6,"prime_mover_type":"PVe","rating":2.0,"services":[],"bus":{"value":"ad2d164d-7fde-42f9-b64f-b11a273c9ebc"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"efcd43ef-ef7f-46ad-8975-b3362c4d9276"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"14558705-7e2e-4d47-9d01-fc1a2dbf1be4"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"14558705-7e2e-4d47-9d01-fc1a2dbf1be4"},"ext":null,"units_info":null},"time_series_uuid":{"value":"efcd43ef-ef7f-46ad-8975-b3362c4d9276"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"119_PV_1","power_factor":1.0,"active_power":0.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"RenewableDispatch"},"internal":{"uuid":{"value":"63ff759f-6277-45c0-a403-e37318be6e50"},"ext":null,"units_info":null},"reactive_power_limits":{"min":0.0,"max":0.0},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"reactive_power":0.0},{"internal":{"uuid":{"value":"60ee5b38-e3c9-4a72-b494-ddf807790656"},"ext":null,"units_info":null},"to":{"value":"7e34591f-8f76-4bed-be9a-e33156bd86be"},"from":{"value":"6d2a0b43-986f-498f-be4a-e8e01e36da51"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d82473a8-fda1-42f7-8b4a-8aaa05ce17b5"},"ext":null,"units_info":null},"to":{"value":"b4b8d99a-d2be-49f0-b50a-29673f935cd3"},"from":{"value":"00bbd79e-c2c8-4605-bc9c-c1a074e4940a"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"ab6d4a96-2ab0-45a3-bde1-33d630ab2d12"},"ext":null,"units_info":null},"to":{"value":"ade50603-b234-4a1f-909d-e978039732ca"},"from":{"value":"d7034d32-152e-49f4-852a-0917168a132e"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"e4a7f872-fa31-4908-9c53-458f73f0e2c7"},"ext":null,"units_info":null},"to":{"value":"32c29345-8745-4637-81db-6e896702e3f3"},"from":{"value":"7e34591f-8f76-4bed-be9a-e33156bd86be"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"e1318dbc-cf9b-4648-8de4-935a1592d4f3"},"ext":null,"units_info":null},"to":{"value":"5987511f-5bc8-43a1-a775-7dd036a80cea"},"from":{"value":"b073d820-4ac0-44c9-a276-51def4fd5b49"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"3afa6b1c-c432-48b0-bdbc-99dc1450bd99"},"ext":null,"units_info":null},"to":{"value":"77e2c403-2d62-4e8a-80d1-23f659003553"},"from":{"value":"e6271f79-e2c1-4a7f-9fdf-64cddd8d077a"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"9be32f30-ddf5-4769-872e-0f85ced8de1d"},"ext":null,"units_info":null},"to":{"value":"a2ff36e2-3dcd-41b0-b98e-4e8c7c871191"},"from":{"value":"2c7a5c45-2e2f-4fd1-8046-eb6ff0e1e270"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"54a25402-12ed-4314-88f0-6c184c776e84"},"ext":null,"units_info":null},"to":{"value":"47dbf654-a983-4442-b5a5-baf4e85449c0"},"from":{"value":"f05374ea-ee8a-48f4-bd50-47bac762e887"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"64ee46e2-e587-4f4d-bb5c-7f83bf1e8f8b"},"ext":null,"units_info":null},"to":{"value":"15a1c15e-b2fe-4acc-9979-53908db17fc8"},"from":{"value":"2ca25f64-ff52-458f-abed-4c9a9a4aa3dc"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"f063a0e3-cd38-491e-8ad1-a3b47bce7f80"},"ext":null,"units_info":null},"to":{"value":"90f8db1b-be67-4858-a82a-0eefe87ff6d4"},"from":{"value":"c7f9dfad-53af-4b53-8740-e6608fed2d0b"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"a4258702-d4e8-4fb3-a60d-9204c34e2d5f"},"ext":null,"units_info":null},"to":{"value":"75990a83-7690-4ae8-94a9-4bb8a34633d2"},"from":{"value":"3086f062-6d95-4f39-89ea-1c6ea6700aa1"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"39d08102-7711-414d-afaf-14b5d25f54d6"},"ext":null,"units_info":null},"to":{"value":"2ca38989-a480-41d5-8fbf-7424057aba13"},"from":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"a982d41e-9a00-4310-8228-077ab9a2ed16"},"ext":null,"units_info":null},"to":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"from":{"value":"00bbd79e-c2c8-4605-bc9c-c1a074e4940a"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"ec140cb3-4905-4e5e-b272-22e76110ac64"},"ext":null,"units_info":null},"to":{"value":"d7034d32-152e-49f4-852a-0917168a132e"},"from":{"value":"15a1c15e-b2fe-4acc-9979-53908db17fc8"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"78e0bd9a-b837-4d6c-9575-58afef33bfbc"},"ext":null,"units_info":null},"to":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"from":{"value":"28b723c0-0dd7-4acf-87fb-192323598a07"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"9c4c0be4-99e5-4e67-8192-d8169559cadb"},"ext":null,"units_info":null},"to":{"value":"f05374ea-ee8a-48f4-bd50-47bac762e887"},"from":{"value":"6b0d373c-e4ce-40e5-9225-e2df4ad602d5"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"42aa944b-70d3-4740-83f1-5d25027fe683"},"ext":null,"units_info":null},"to":{"value":"7f0fbc40-2925-4bd5-afbc-e6c0892b7958"},"from":{"value":"b4b8d99a-d2be-49f0-b50a-29673f935cd3"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"3a543d66-b586-4c55-929d-9cafe2e3ddf4"},"ext":null,"units_info":null},"to":{"value":"fed0d954-3eef-4b56-bcfa-f93c60d09145"},"from":{"value":"d7977deb-c4d7-493d-ace7-89064b663efd"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"4075590a-362a-4331-8246-6552572dce24"},"ext":null,"units_info":null},"to":{"value":"6d0dcef3-6f3d-407d-ac73-7e0e10b9337e"},"from":{"value":"a2ff36e2-3dcd-41b0-b98e-4e8c7c871191"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"44505402-0998-424a-a389-665f0231c88b"},"ext":null,"units_info":null},"to":{"value":"6d644c3c-e1e8-42ff-a12d-fe5287c36680"},"from":{"value":"f7f35b5b-3994-4120-ae45-e152834e1769"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"ab8551f3-c0cf-4199-9a76-48e3f6b63247"},"ext":null,"units_info":null},"to":{"value":"31bdcac3-d536-45dc-94d0-7161c9ac7bbc"},"from":{"value":"32c29345-8745-4637-81db-6e896702e3f3"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"3d333756-9fc8-4ac3-b67f-249609a96b18"},"ext":null,"units_info":null},"to":{"value":"5b2986f5-b66c-4ec9-8b97-1bebc04d0e48"},"from":{"value":"0dd12421-3cf8-405c-9123-f916a5bb338f"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"9467a394-ee0b-4f40-a196-5d570c40cd3b"},"ext":null,"units_info":null},"to":{"value":"283fe249-ae58-4f16-b84d-b5c61e7ea053"},"from":{"value":"2ca25f64-ff52-458f-abed-4c9a9a4aa3dc"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"22ff1f7d-c872-4387-ab49-ecdc731e9483"},"ext":null,"units_info":null},"to":{"value":"b4b8d99a-d2be-49f0-b50a-29673f935cd3"},"from":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"03dc66b9-75fb-4093-9ec6-dc632637a8fa"},"ext":null,"units_info":null},"to":{"value":"437a3176-05c2-4b4a-b2e9-2e3cc3b65f2f"},"from":{"value":"5431d23f-a20a-40f2-8000-2d3c0a8454a0"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"db8ee046-edd5-429c-a89c-14b5a52225db"},"ext":null,"units_info":null},"to":{"value":"75990a83-7690-4ae8-94a9-4bb8a34633d2"},"from":{"value":"283fe249-ae58-4f16-b84d-b5c61e7ea053"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d572624c-9205-4493-99f5-98e12bb75f05"},"ext":null,"units_info":null},"to":{"value":"77e2c403-2d62-4e8a-80d1-23f659003553"},"from":{"value":"437a3176-05c2-4b4a-b2e9-2e3cc3b65f2f"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"0f0ba3a6-ba07-4991-beb9-f7e8a48a9436"},"ext":null,"units_info":null},"to":{"value":"5431d23f-a20a-40f2-8000-2d3c0a8454a0"},"from":{"value":"00573659-fd6d-47db-93c5-894d7b071535"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"13676f92-3e24-4571-859e-bc069c8ff7d8"},"ext":null,"units_info":null},"to":{"value":"6b0d373c-e4ce-40e5-9225-e2df4ad602d5"},"from":{"value":"b6ad30dc-e95d-47ab-9c7e-71c604405d7f"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"9041189c-8f18-44e8-b58e-cf43ffc440dd"},"ext":null,"units_info":null},"to":{"value":"6d644c3c-e1e8-42ff-a12d-fe5287c36680"},"from":{"value":"286599f1-84ad-4db3-83e0-92445f4fffb3"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"5119bcd5-5e2f-43ab-8e18-038926c367fc"},"ext":null,"units_info":null},"to":{"value":"f7f35b5b-3994-4120-ae45-e152834e1769"},"from":{"value":"d9e6f714-ebb9-4069-a930-677424695c60"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"44fbc4c4-c4f1-43c6-8431-4af4698346d5"},"ext":null,"units_info":null},"to":{"value":"57754cc1-d1fc-4520-8db1-5e44dfbc6ffa"},"from":{"value":"b073d820-4ac0-44c9-a276-51def4fd5b49"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"687a9ffb-1351-4993-b51c-5a564ff210cf"},"ext":null,"units_info":null},"to":{"value":"cedc8d83-9c60-4620-b30a-395c3e18e507"},"from":{"value":"2ca38989-a480-41d5-8fbf-7424057aba13"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d6e4819c-156c-4e16-90d0-4b19cdb430b3"},"ext":null,"units_info":null},"to":{"value":"d9e6f714-ebb9-4069-a930-677424695c60"},"from":{"value":"6b0d373c-e4ce-40e5-9225-e2df4ad602d5"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"a6d7c401-f4c7-40a2-b948-c2471ac19229"},"ext":null,"units_info":null},"to":{"value":"4013a68d-1dff-44b0-9545-3f8ca6d2166b"},"from":{"value":"17c6af0f-f8e6-44d7-b1c4-1b26eb380c71"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"95dac7dd-8307-488c-bdfa-f082518915f7"},"ext":null,"units_info":null},"to":{"value":"286599f1-84ad-4db3-83e0-92445f4fffb3"},"from":{"value":"08021a6c-aad4-4c5d-9a01-6271c804502c"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"f545b074-d9d2-472b-b4f1-8c37206b0626"},"ext":null,"units_info":null},"to":{"value":"ade50603-b234-4a1f-909d-e978039732ca"},"from":{"value":"e447cb10-9555-4ba2-bdab-387dc98ef414"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"142f52dd-199a-49c8-b43f-c6f8d38c0942"},"ext":null,"units_info":null},"to":{"value":"5b2986f5-b66c-4ec9-8b97-1bebc04d0e48"},"from":{"value":"6c8013ab-4b2e-45f6-8f5f-ce63c43aeb43"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"8a27b6dc-2ffc-4728-8bbb-4a1e7a4b2c14"},"ext":null,"units_info":null},"to":{"value":"d7977deb-c4d7-493d-ace7-89064b663efd"},"from":{"value":"64bfc797-e7a4-49f8-a241-2e07c8b893fb"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"04018568-a175-4bbf-a782-a1e631785a34"},"ext":null,"units_info":null},"to":{"value":"43d5cbd7-28ec-4b98-b523-0318638345a8"},"from":{"value":"5aca363d-9812-40fb-88ff-6cbc52219e7d"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"7e9d1032-1695-4516-86b3-645da1311880"},"ext":null,"units_info":null},"to":{"value":"2fe23a34-0e94-41e3-b35c-11577449ee4b"},"from":{"value":"28b723c0-0dd7-4acf-87fb-192323598a07"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"700e5c6a-a4e8-4149-b2c8-1b9e0d074a66"},"ext":null,"units_info":null},"to":{"value":"6c8013ab-4b2e-45f6-8f5f-ce63c43aeb43"},"from":{"value":"91227bcd-d71a-45a1-abe2-c63250171b71"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d17396f7-1110-4afd-bb74-5a164e7ea13d"},"ext":null,"units_info":null},"to":{"value":"e6271f79-e2c1-4a7f-9fdf-64cddd8d077a"},"from":{"value":"9010c895-a0f8-4c1a-886d-b6bbf40db2e9"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"852052c3-fdda-4c7b-8a45-dfc0699c8bf2"},"ext":null,"units_info":null},"to":{"value":"7e34591f-8f76-4bed-be9a-e33156bd86be"},"from":{"value":"975879b8-0147-46e2-95b1-41719d22273f"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"5ab438de-de8c-4fff-a02c-d0ce9cf27f27"},"ext":null,"units_info":null},"to":{"value":"b1f6f4e5-ef5e-4585-8833-19bdd7f4f1df"},"from":{"value":"9f3d0858-b7c7-4707-af9a-30930513c21f"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"788121d7-c6e3-42be-bb67-d2a53a3848bb"},"ext":null,"units_info":null},"to":{"value":"ddf53cea-fd92-45db-98b1-93b296b400b6"},"from":{"value":"90f8db1b-be67-4858-a82a-0eefe87ff6d4"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"4979bdd3-93e4-4271-8276-cda35c93d2d1"},"ext":null,"units_info":null},"to":{"value":"440dbe86-e1ac-4fae-93be-1bd6e245c924"},"from":{"value":"a2ff36e2-3dcd-41b0-b98e-4e8c7c871191"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d49d3203-75fb-4873-bb37-71aad98d7669"},"ext":null,"units_info":null},"to":{"value":"91227bcd-d71a-45a1-abe2-c63250171b71"},"from":{"value":"75990a83-7690-4ae8-94a9-4bb8a34633d2"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"706694ad-4c03-417a-80f6-ae9227a60b4a"},"ext":null,"units_info":null},"to":{"value":"3eb4caf9-fe81-47db-8d3b-811946992c6e"},"from":{"value":"ade50603-b234-4a1f-909d-e978039732ca"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"40885e06-809f-4eb5-b2db-7296936498fc"},"ext":null,"units_info":null},"to":{"value":"d7977deb-c4d7-493d-ace7-89064b663efd"},"from":{"value":"bc236369-6c0d-46f5-9c07-b4269937c6e9"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"829b83dc-75ef-4aa5-a67f-a30c43024c5d"},"ext":null,"units_info":null},"to":{"value":"6d644c3c-e1e8-42ff-a12d-fe5287c36680"},"from":{"value":"08021a6c-aad4-4c5d-9a01-6271c804502c"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"7562d90e-937c-4edc-a7e9-8bed3d80b800"},"ext":null,"units_info":null},"to":{"value":"790837ec-5ed0-4d83-8ae4-23d3ad9e099b"},"from":{"value":"d9e6f714-ebb9-4069-a930-677424695c60"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"ae495a0f-6b0b-4433-9feb-0a70aec8a4cc"},"ext":null,"units_info":null},"to":{"value":"6d0dcef3-6f3d-407d-ac73-7e0e10b9337e"},"from":{"value":"4013a68d-1dff-44b0-9545-3f8ca6d2166b"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"768a2c7c-0ff6-4efe-8fef-51fed6098707"},"ext":null,"units_info":null},"to":{"value":"3c8e20e2-b766-476f-9c55-a686048cfb45"},"from":{"value":"6d2a0b43-986f-498f-be4a-e8e01e36da51"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"bc12f1bc-f06e-48b3-b2f5-0bc2cc394d3d"},"ext":null,"units_info":null},"to":{"value":"32c29345-8745-4637-81db-6e896702e3f3"},"from":{"value":"5b2986f5-b66c-4ec9-8b97-1bebc04d0e48"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"b2acc204-9f0e-47cc-9fc6-e7cefdc18fe7"},"ext":null,"units_info":null},"to":{"value":"f63e7fbb-a553-45b9-b03c-1951817aa385"},"from":{"value":"17c6af0f-f8e6-44d7-b1c4-1b26eb380c71"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"6bd4fc92-2e22-430e-b62d-8b5393f4bc56"},"ext":null,"units_info":null},"to":{"value":"6d873ee9-8a2f-46c1-b635-5a3da0f48a29"},"from":{"value":"04fa9f2f-feec-4bab-abec-f1c911527c9f"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"b6a3020d-dcff-4150-ba2a-3c1e5c3b7287"},"ext":null,"units_info":null},"to":{"value":"cedc8d83-9c60-4620-b30a-395c3e18e507"},"from":{"value":"fed0d954-3eef-4b56-bcfa-f93c60d09145"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"ab389bc2-3eee-4361-93c0-9f5735fe7eac"},"ext":null,"units_info":null},"to":{"value":"e447cb10-9555-4ba2-bdab-387dc98ef414"},"from":{"value":"2ca25f64-ff52-458f-abed-4c9a9a4aa3dc"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d19063af-64da-44fe-a108-fb1a23f539de"},"ext":null,"units_info":null},"to":{"value":"00bbd79e-c2c8-4605-bc9c-c1a074e4940a"},"from":{"value":"6d0dcef3-6f3d-407d-ac73-7e0e10b9337e"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"fb9ee535-ee92-43fc-9649-a936532c125b"},"ext":null,"units_info":null},"to":{"value":"ad2d164d-7fde-42f9-b64f-b11a273c9ebc"},"from":{"value":"d7977deb-c4d7-493d-ace7-89064b663efd"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"1ed1dca2-9d9c-48c7-b780-8764a7389aed"},"ext":null,"units_info":null},"to":{"value":"4cb9995d-b27f-4bd8-8550-a5733ca81adf"},"from":{"value":"b6ad30dc-e95d-47ab-9c7e-71c604405d7f"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"57efca57-4f35-461a-b32e-cf1e9154aa4a"},"ext":null,"units_info":null},"to":{"value":"17c6af0f-f8e6-44d7-b1c4-1b26eb380c71"},"from":{"value":"c7f9dfad-53af-4b53-8740-e6608fed2d0b"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"4f886ae5-39ff-4ad0-8801-a2404f8556ae"},"ext":null,"units_info":null},"to":{"value":"00bbd79e-c2c8-4605-bc9c-c1a074e4940a"},"from":{"value":"440dbe86-e1ac-4fae-93be-1bd6e245c924"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"4b1f56ce-e318-4563-a430-233781ad7e52"},"ext":null,"units_info":null},"to":{"value":"790837ec-5ed0-4d83-8ae4-23d3ad9e099b"},"from":{"value":"4cb9995d-b27f-4bd8-8550-a5733ca81adf"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"14bc772a-35bc-4b52-990a-e981d3d97bec"},"ext":null,"units_info":null},"to":{"value":"c1deea4f-4c0f-4ee4-9e64-5e2e51395d13"},"from":{"value":"64bfc797-e7a4-49f8-a241-2e07c8b893fb"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d138a15a-9158-416f-99b1-7658119d0742"},"ext":null,"units_info":null},"to":{"value":"82a02c8b-f9c1-4c4c-a3e5-49fcbb816df9"},"from":{"value":"5987511f-5bc8-43a1-a775-7dd036a80cea"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"944bbaf1-7828-47ad-9fbd-f8a01b0a8d7f"},"ext":null,"units_info":null},"to":{"value":"c1deea4f-4c0f-4ee4-9e64-5e2e51395d13"},"from":{"value":"283fe249-ae58-4f16-b84d-b5c61e7ea053"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"11ba4ef5-760e-44e3-a57f-532666721e80"},"ext":null,"units_info":null},"to":{"value":"6d644c3c-e1e8-42ff-a12d-fe5287c36680"},"from":{"value":"b1f6f4e5-ef5e-4585-8833-19bdd7f4f1df"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"1d90c276-4051-4643-9655-327e6fe6e63d"},"ext":null,"units_info":null},"to":{"value":"437a3176-05c2-4b4a-b2e9-2e3cc3b65f2f"},"from":{"value":"83312218-17c5-4866-995d-c9742450b910"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"da29153a-63f3-4e46-a5e1-6263a5937d3a"},"ext":null,"units_info":null},"to":{"value":"3eb4caf9-fe81-47db-8d3b-811946992c6e"},"from":{"value":"75990a83-7690-4ae8-94a9-4bb8a34633d2"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"81b89be3-38a4-42a4-b24b-7c66bf4f965e"},"ext":null,"units_info":null},"to":{"value":"9c4891e6-2687-4177-8368-b2baf060ca5e"},"from":{"value":"c7f9dfad-53af-4b53-8740-e6608fed2d0b"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"039f0487-6c32-4c4a-8e49-a27bf0e2bb02"},"ext":null,"units_info":null},"to":{"value":"975879b8-0147-46e2-95b1-41719d22273f"},"from":{"value":"77e2c403-2d62-4e8a-80d1-23f659003553"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"6a819458-cc4d-4f18-af94-06e842f43a23"},"ext":null,"units_info":null},"to":{"value":"08021a6c-aad4-4c5d-9a01-6271c804502c"},"from":{"value":"437a3176-05c2-4b4a-b2e9-2e3cc3b65f2f"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"ffe2e44c-9acc-4254-85da-6256d4b33b64"},"ext":null,"units_info":null},"to":{"value":"440dbe86-e1ac-4fae-93be-1bd6e245c924"},"from":{"value":"90f8db1b-be67-4858-a82a-0eefe87ff6d4"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"cd243ee5-e802-4dee-a848-73f0eab18423"},"ext":null,"units_info":null},"to":{"value":"43d5cbd7-28ec-4b98-b523-0318638345a8"},"from":{"value":"6d2a0b43-986f-498f-be4a-e8e01e36da51"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"5451f368-ccab-4b0f-bf8f-27ca6720b461"},"ext":null,"units_info":null},"to":{"value":"ddf53cea-fd92-45db-98b1-93b296b400b6"},"from":{"value":"b6ad30dc-e95d-47ab-9c7e-71c604405d7f"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"04d21bce-a163-48e7-8c44-0786354fc2cd"},"ext":null,"units_info":null},"to":{"value":"6b0d373c-e4ce-40e5-9225-e2df4ad602d5"},"from":{"value":"2fe23a34-0e94-41e3-b35c-11577449ee4b"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d0ca2efd-8beb-4c38-9189-1a1003b3eb67"},"ext":null,"units_info":null},"to":{"value":"6d0dcef3-6f3d-407d-ac73-7e0e10b9337e"},"from":{"value":"9c4891e6-2687-4177-8368-b2baf060ca5e"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"486d7cdf-5d50-430e-9129-52a1ba7e405f"},"ext":null,"units_info":null},"to":{"value":"6d2a0b43-986f-498f-be4a-e8e01e36da51"},"from":{"value":"6c8013ab-4b2e-45f6-8f5f-ce63c43aeb43"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"3b1d4805-ddc9-491f-8e41-95f3769dafd7"},"ext":null,"units_info":null},"to":{"value":"75990a83-7690-4ae8-94a9-4bb8a34633d2"},"from":{"value":"6d873ee9-8a2f-46c1-b635-5a3da0f48a29"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"765248b6-1e34-4414-b032-ab7e41abfdd2"},"ext":null,"units_info":null},"to":{"value":"3c8e20e2-b766-476f-9c55-a686048cfb45"},"from":{"value":"57754cc1-d1fc-4520-8db1-5e44dfbc6ffa"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"35b053e8-e62f-49c8-9831-d96f06c6719a"},"ext":null,"units_info":null},"to":{"value":"9f3d0858-b7c7-4707-af9a-30930513c21f"},"from":{"value":"7e34591f-8f76-4bed-be9a-e33156bd86be"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"9216952b-687f-4dc4-9fa2-152f719a659f"},"ext":null,"units_info":null},"to":{"value":"6c8013ab-4b2e-45f6-8f5f-ce63c43aeb43"},"from":{"value":"3eb4caf9-fe81-47db-8d3b-811946992c6e"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"fd0383e3-e072-482a-9850-17b4b2be63dd"},"ext":null,"units_info":null},"to":{"value":"57754cc1-d1fc-4520-8db1-5e44dfbc6ffa"},"from":{"value":"04fa9f2f-feec-4bab-abec-f1c911527c9f"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"35ba2ab4-9647-4681-a1da-e496dfa87ecc"},"ext":null,"units_info":null},"to":{"value":"6b0d373c-e4ce-40e5-9225-e2df4ad602d5"},"from":{"value":"6c8013ab-4b2e-45f6-8f5f-ce63c43aeb43"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"ac5c74db-7c5f-4e92-ae10-cb16ba0b7720"},"ext":null,"units_info":null},"to":{"value":"28b723c0-0dd7-4acf-87fb-192323598a07"},"from":{"value":"440dbe86-e1ac-4fae-93be-1bd6e245c924"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"51993f55-5e41-4302-b07b-583a9f27c73d"},"ext":null,"units_info":null},"to":{"value":"08021a6c-aad4-4c5d-9a01-6271c804502c"},"from":{"value":"e6271f79-e2c1-4a7f-9fdf-64cddd8d077a"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"dc4e9cb4-34da-455b-bd80-d7ec324748d9"},"ext":null,"units_info":null},"to":{"value":"9010c895-a0f8-4c1a-886d-b6bbf40db2e9"},"from":{"value":"5987511f-5bc8-43a1-a775-7dd036a80cea"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"75bdfdab-3aad-4984-b6d5-8383b0d4d0ac"},"ext":null,"units_info":null},"to":{"value":"3086f062-6d95-4f39-89ea-1c6ea6700aa1"},"from":{"value":"15a1c15e-b2fe-4acc-9979-53908db17fc8"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"b9ff6ca2-b949-4afb-a3eb-226a1871cd9c"},"ext":null,"units_info":null},"to":{"value":"440dbe86-e1ac-4fae-93be-1bd6e245c924"},"from":{"value":"f63e7fbb-a553-45b9-b03c-1951817aa385"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"f033ac13-b9b3-4522-b8db-b6155254299e"},"ext":null,"units_info":null},"to":{"value":"e6271f79-e2c1-4a7f-9fdf-64cddd8d077a"},"from":{"value":"5431d23f-a20a-40f2-8000-2d3c0a8454a0"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"eef5ca9b-b60c-44c9-b693-8e2226a6007b"},"ext":null,"units_info":null},"to":{"value":"28b723c0-0dd7-4acf-87fb-192323598a07"},"from":{"value":"6d0dcef3-6f3d-407d-ac73-7e0e10b9337e"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"db4bd09f-556c-45ed-8684-ec0ed9a92c1a"},"ext":null,"units_info":null},"to":{"value":"5b2986f5-b66c-4ec9-8b97-1bebc04d0e48"},"from":{"value":"91227bcd-d71a-45a1-abe2-c63250171b71"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"860709bb-1015-4237-a5e8-7834607ad487"},"ext":null,"units_info":null},"to":{"value":"ade50603-b234-4a1f-909d-e978039732ca"},"from":{"value":"6d873ee9-8a2f-46c1-b635-5a3da0f48a29"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"e41600c5-de89-4b3e-8d12-eabddbae0221"},"ext":null,"units_info":null},"to":{"value":"e6271f79-e2c1-4a7f-9fdf-64cddd8d077a"},"from":{"value":"57754cc1-d1fc-4520-8db1-5e44dfbc6ffa"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"51d4eb8f-5737-49b0-ae04-33ac2909dd53"},"ext":null,"units_info":null},"to":{"value":"5aca363d-9812-40fb-88ff-6cbc52219e7d"},"from":{"value":"32c29345-8745-4637-81db-6e896702e3f3"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"bc2eaf86-eb2a-43bb-9d34-26d6f87c070e"},"ext":null,"units_info":null},"to":{"value":"83312218-17c5-4866-995d-c9742450b910"},"from":{"value":"b073d820-4ac0-44c9-a276-51def4fd5b49"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"9db39d9f-88e0-45e8-83f0-b3e3ccfeae39"},"ext":null,"units_info":null},"to":{"value":"b4b8d99a-d2be-49f0-b50a-29673f935cd3"},"from":{"value":"47dbf654-a983-4442-b5a5-baf4e85449c0"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"1133d659-5885-40f6-9a3d-40479adee2be"},"ext":null,"units_info":null},"to":{"value":"2ca38989-a480-41d5-8fbf-7424057aba13"},"from":{"value":"7f0fbc40-2925-4bd5-afbc-e6c0892b7958"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"95b203d0-d8f2-4604-9057-85ddd520921d"},"ext":null,"units_info":null},"to":{"value":"2ca38989-a480-41d5-8fbf-7424057aba13"},"from":{"value":"64bfc797-e7a4-49f8-a241-2e07c8b893fb"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"2f456102-a0b6-4344-9f80-d3bf0135e2da"},"ext":null,"units_info":null},"to":{"value":"437a3176-05c2-4b4a-b2e9-2e3cc3b65f2f"},"from":{"value":"82a02c8b-f9c1-4c4c-a3e5-49fcbb816df9"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"25dc65ff-8a6e-4468-a2a3-baaa59aba90f"},"ext":null,"units_info":null},"to":{"value":"91227bcd-d71a-45a1-abe2-c63250171b71"},"from":{"value":"ade50603-b234-4a1f-909d-e978039732ca"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"0041e969-fc83-41d8-83e5-58034089cdf0"},"ext":null,"units_info":null},"to":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"from":{"value":"fed0d954-3eef-4b56-bcfa-f93c60d09145"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"4f7c8cd3-3ca0-4b4b-97a0-a16be1d1234d"},"ext":null,"units_info":null},"to":{"value":"0dd12421-3cf8-405c-9123-f916a5bb338f"},"from":{"value":"ad2d164d-7fde-42f9-b64f-b11a273c9ebc"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"c8077594-bbf9-4be9-b952-0d9416e43c1f"},"ext":null,"units_info":null},"to":{"value":"31bdcac3-d536-45dc-94d0-7161c9ac7bbc"},"from":{"value":"43d5cbd7-28ec-4b98-b523-0318638345a8"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"d741b097-7db4-48ad-a511-b72adcdcedd2"},"ext":null,"units_info":null},"to":{"value":"4cb9995d-b27f-4bd8-8550-a5733ca81adf"},"from":{"value":"f7f35b5b-3994-4120-ae45-e152834e1769"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"71e5c70f-521f-4f25-b316-1243a436703b"},"ext":null,"units_info":null},"to":{"value":"bc236369-6c0d-46f5-9c07-b4269937c6e9"},"from":{"value":"3eb4caf9-fe81-47db-8d3b-811946992c6e"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"internal":{"uuid":{"value":"f024961e-d454-4b6c-95a1-ff24792acf61"},"ext":null,"units_info":null},"to":{"value":"286599f1-84ad-4db3-83e0-92445f4fffb3"},"from":{"value":"77e2c403-2d62-4e8a-80d1-23f659003553"},"__metadata__":{"module":"PowerSystems","type":"Arc"}},{"base_power":53.0,"prime_mover_type":"HY","rating":0.9905211130872972,"services":[],"bus":{"value":"b073d820-4ac0-44c9-a276-51def4fd5b49"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"5b1d82d9-ca42-4450-b608-23c9bfeb76bb"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"587df988-3049-47fe-9e7e-44dd7150adbf"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"587df988-3049-47fe-9e7e-44dd7150adbf"},"ext":null,"units_info":null},"time_series_uuid":{"value":"5b1d82d9-ca42-4450-b608-23c9bfeb76bb"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}},{"horizon":48,"time_series_uuid":{"value":"1b489760-d9b6-404d-a24b-a2f0ea59cf1a"},"name":"inflow","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"7fe3e9b9-7bcf-4f89-bb77-5953f3c5ce1f"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_inflow","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"inflow","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"7fe3e9b9-7bcf-4f89-bb77-5953f3c5ce1f"},"ext":null,"units_info":null},"time_series_uuid":{"value":"1b489760-d9b6-404d-a24b-a2f0ea59cf1a"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_inflow","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"201_HYDRO_4","active_power":0.9433962264150944,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"HydroDispatch"},"internal":{"uuid":{"value":"9caa67d7-3b7b-42f7-82f2-50fbb379cede"},"ext":null,"units_info":null},"reactive_power_limits":{"min":-0.18867924528301888,"max":0.3018867924528302},"ext":{},"operation_cost":{"fixed":0.0,"variable":{"cost":0.0},"__metadata__":{"module":"PowerSystems","type":"TwoPartCost"}},"time_limits":{"up":0.0,"down":0.0},"ramp_limits":{"up":0.9433962264150944,"down":0.9433962264150944},"active_power_limits":{"min":0.0,"max":0.9433962264150944},"reactive_power":0.07830188679245284},{"reactive_power_limits_from":{"min":0.0,"max":1.0},"services":[],"available":true,"time_series_container":[],"name":"DC1","active_power_limits_to":{"min":-1.0,"max":1.0},"arc":{"value":"35ba2ab4-9647-4681-a1da-e496dfa87ecc"},"__metadata__":{"module":"PowerSystems","type":"TwoTerminalHVDCLine"},"internal":{"uuid":{"value":"51a17589-fb01-43a3-a549-ad2dbdf7503b"},"ext":null,"units_info":null},"ext":{},"loss":{"l0":0.0,"l1":0.1},"active_power_flow":0.0,"active_power_limits_from":{"min":-1.0,"max":1.0},"reactive_power_limits_to":{"min":0.0,"max":1.0}},{"Y":{"real":0.0,"imag":-1.0},"name":"Camus","__metadata__":{"module":"PowerSystems","type":"FixedAdmittance"},"internal":{"uuid":{"value":"7ef7859d-6046-424d-bad1-dd9f25adb165"},"ext":null,"units_info":null},"services":[],"ext":{},"bus":{"value":"4013a68d-1dff-44b0-9545-3f8ca6d2166b"},"dynamic_injector":null,"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"a8dda9c0-3244-4a8f-9be8-1a36cf1aea22"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"a8dda9c0-3244-4a8f-9be8-1a36cf1aea22"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}]},{"Y":{"real":0.0,"imag":-1.0},"name":"Bajer","__metadata__":{"module":"PowerSystems","type":"FixedAdmittance"},"internal":{"uuid":{"value":"e726588b-e538-4b94-b4fe-ea4b1e8d68c9"},"ext":null,"units_info":null},"services":[],"ext":{},"bus":{"value":"82a02c8b-f9c1-4c4c-a3e5-49fcbb816df9"},"dynamic_injector":null,"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"faa54710-3443-47e7-aeb3-ef6fb9476556"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"faa54710-3443-47e7-aeb3-ef6fb9476556"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}]},{"Y":{"real":0.0,"imag":-1.0},"name":"Alber","__metadata__":{"module":"PowerSystems","type":"FixedAdmittance"},"internal":{"uuid":{"value":"19bc6721-4bd9-421f-b4cd-8f186d58be9c"},"ext":null,"units_info":null},"services":[],"ext":{},"bus":{"value":"d7034d32-152e-49f4-852a-0917168a132e"},"dynamic_injector":null,"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"78bfa70b-d12e-47f9-b503-8ec971ba8fba"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"78bfa70b-d12e-47f9-b503-8ec971ba8fba"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}]},{"base_power":100.0,"services":[],"bus":{"value":"5987511f-5bc8-43a1-a775-7dd036a80cea"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"13620c98-4602-4fc2-9901-d79834b2f1be"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"13620c98-4602-4fc2-9901-d79834b2f1be"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Bacon","active_power":0.97,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.97,"internal":{"uuid":{"value":"48df5a07-a6e1-464e-ac37-0fdeeb23ed5b"},"ext":null,"units_info":null},"max_reactive_power":0.2,"ext":{},"reactive_power":0.2},{"base_power":100.0,"services":[],"bus":{"value":"15a1c15e-b2fe-4acc-9979-53908db17fc8"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"7a911abc-c63d-4fe6-bc5f-15ca1fb60a88"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"7a911abc-c63d-4fe6-bc5f-15ca1fb60a88"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Adams","active_power":0.97,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.97,"internal":{"uuid":{"value":"60fb9527-23eb-4576-8e19-362ba336a4c3"},"ext":null,"units_info":null},"max_reactive_power":0.2,"ext":{},"reactive_power":0.2},{"base_power":100.0,"services":[],"bus":{"value":"82a02c8b-f9c1-4c4c-a3e5-49fcbb816df9"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"1262e8eb-f228-4c6c-8763-e8821b1cc455"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"1262e8eb-f228-4c6c-8763-e8821b1cc455"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Bajer","active_power":1.36,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.36,"internal":{"uuid":{"value":"d5b7f5af-4fad-4113-bff1-32d3b9e8b74f"},"ext":null,"units_info":null},"max_reactive_power":0.28,"ext":{},"reactive_power":0.28},{"base_power":100.0,"services":[],"bus":{"value":"283fe249-ae58-4f16-b84d-b5c61e7ea053"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"1d1c866d-e6f0-4903-b27f-bb1a139a2d31"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"1d1c866d-e6f0-4903-b27f-bb1a139a2d31"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Adler","active_power":1.8,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.8,"internal":{"uuid":{"value":"d9cc0c0d-3951-4562-8280-2444286e75cd"},"ext":null,"units_info":null},"max_reactive_power":0.37,"ext":{},"reactive_power":0.37},{"base_power":100.0,"services":[],"bus":{"value":"c7f9dfad-53af-4b53-8740-e6608fed2d0b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"69eb38cf-9078-48a8-a698-b6132566e8cd"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"69eb38cf-9078-48a8-a698-b6132566e8cd"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Cabell","active_power":1.08,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.08,"internal":{"uuid":{"value":"4e8be3ac-614a-4208-9e33-44856038e9f6"},"ext":null,"units_info":null},"max_reactive_power":0.22,"ext":{},"reactive_power":0.22},{"base_power":100.0,"services":[],"bus":{"value":"9010c895-a0f8-4c1a-886d-b6bbf40db2e9"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"9ee67d24-d2c2-4150-b65b-ff04f57dfbe5"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"9ee67d24-d2c2-4150-b65b-ff04f57dfbe5"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Bailey","active_power":0.74,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.74,"internal":{"uuid":{"value":"5c05ec6f-a0ad-434b-9645-681a4ad52bda"},"ext":null,"units_info":null},"max_reactive_power":0.15,"ext":{},"reactive_power":0.15},{"base_power":100.0,"services":[],"bus":{"value":"04fa9f2f-feec-4bab-abec-f1c911527c9f"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"305b8488-46b9-4f08-87cd-578525383a34"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"305b8488-46b9-4f08-87cd-578525383a34"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Alder","active_power":1.25,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.25,"internal":{"uuid":{"value":"fcdca193-6899-4d34-a487-2c895aecd595"},"ext":null,"units_info":null},"max_reactive_power":0.25,"ext":{},"reactive_power":0.25},{"base_power":100.0,"services":[],"bus":{"value":"ade50603-b234-4a1f-909d-e978039732ca"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"7d945418-7c8a-4723-8b2b-f01b2f36c279"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"7d945418-7c8a-4723-8b2b-f01b2f36c279"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Allen","active_power":1.95,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.95,"internal":{"uuid":{"value":"d26c917e-3164-498f-abbe-cf651f986a93"},"ext":null,"units_info":null},"max_reactive_power":0.4,"ext":{},"reactive_power":0.4},{"base_power":100.0,"services":[],"bus":{"value":"6d2a0b43-986f-498f-be4a-e8e01e36da51"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"b770d564-431f-47df-a443-2dfeb9b95dba"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"b770d564-431f-47df-a443-2dfeb9b95dba"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Barton","active_power":3.17,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":3.17,"internal":{"uuid":{"value":"5c9ac64b-669f-4f78-8195-57fe2967385b"},"ext":null,"units_info":null},"max_reactive_power":0.64,"ext":{},"reactive_power":0.64},{"base_power":100.0,"services":[],"bus":{"value":"b073d820-4ac0-44c9-a276-51def4fd5b49"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"924d84c0-f833-404e-bcc6-102baebc9e66"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"924d84c0-f833-404e-bcc6-102baebc9e66"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Bach","active_power":1.08,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.08,"internal":{"uuid":{"value":"b6802d1b-e3ab-409f-a3d9-dad11d0a87ed"},"ext":null,"units_info":null},"max_reactive_power":0.22,"ext":{},"reactive_power":0.22},{"base_power":100.0,"services":[],"bus":{"value":"90f8db1b-be67-4858-a82a-0eefe87ff6d4"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"5a261072-8d19-41d4-86b6-559d81d68159"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"5a261072-8d19-41d4-86b6-559d81d68159"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Caesar","active_power":1.8,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.8,"internal":{"uuid":{"value":"7b476463-9fef-42a7-bd53-a384c3d4dbd5"},"ext":null,"units_info":null},"max_reactive_power":0.37,"ext":{},"reactive_power":0.37},{"base_power":100.0,"services":[],"bus":{"value":"2c7a5c45-2e2f-4fd1-8046-eb6ff0e1e270"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"0e79a2d0-07bb-4156-957a-fcfecd669bb7"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"0e79a2d0-07bb-4156-957a-fcfecd669bb7"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Carew","active_power":1.25,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.25,"internal":{"uuid":{"value":"6aa8da46-6d84-4140-b064-31882225db72"},"ext":null,"units_info":null},"max_reactive_power":0.25,"ext":{},"reactive_power":0.25},{"base_power":100.0,"services":[],"bus":{"value":"83312218-17c5-4866-995d-c9742450b910"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"872e8956-9fd3-479d-95c6-32c1c704b97b"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"872e8956-9fd3-479d-95c6-32c1c704b97b"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Bain","active_power":0.71,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.71,"internal":{"uuid":{"value":"d100a035-8e73-436c-badf-88961b28720f"},"ext":null,"units_info":null},"max_reactive_power":0.14,"ext":{},"reactive_power":0.14},{"base_power":100.0,"services":[],"bus":{"value":"b6ad30dc-e95d-47ab-9c7e-71c604405d7f"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"470f44a7-c8a6-4e82-8bf2-5e000bcfd386"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"470f44a7-c8a6-4e82-8bf2-5e000bcfd386"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Chase","active_power":3.17,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":3.17,"internal":{"uuid":{"value":"762bf5dc-173d-4a48-9137-6fd54c43dbe9"},"ext":null,"units_info":null},"max_reactive_power":0.64,"ext":{},"reactive_power":0.64},{"base_power":100.0,"services":[],"bus":{"value":"a2ff36e2-3dcd-41b0-b98e-4e8c7c871191"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"b0f23275-e6f6-46e1-8bd7-3bcbaed07f4d"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"b0f23275-e6f6-46e1-8bd7-3bcbaed07f4d"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Carrel","active_power":1.71,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.71,"internal":{"uuid":{"value":"984d0d64-bbb4-403a-be55-33824dc974b9"},"ext":null,"units_info":null},"max_reactive_power":0.35,"ext":{},"reactive_power":0.35},{"base_power":100.0,"services":[],"bus":{"value":"75990a83-7690-4ae8-94a9-4bb8a34633d2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"1fc30d45-fc97-490f-8fab-7ece235f5f0b"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"1fc30d45-fc97-490f-8fab-7ece235f5f0b"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Ali","active_power":1.75,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.75,"internal":{"uuid":{"value":"06fcc588-94f5-45a9-9c0a-3fbd15d05983"},"ext":null,"units_info":null},"max_reactive_power":0.36,"ext":{},"reactive_power":0.36},{"base_power":100.0,"services":[],"bus":{"value":"6d0dcef3-6f3d-407d-ac73-7e0e10b9337e"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d3efbb1f-f5a5-436a-9f05-c75ad45661f0"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d3efbb1f-f5a5-436a-9f05-c75ad45661f0"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Caruso","active_power":1.95,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.95,"internal":{"uuid":{"value":"c0a63b26-e795-4ac3-a377-070dc588ae5e"},"ext":null,"units_info":null},"max_reactive_power":0.4,"ext":{},"reactive_power":0.4},{"base_power":100.0,"services":[],"bus":{"value":"d7977deb-c4d7-493d-ace7-89064b663efd"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"fca86a67-a5e2-49f7-92b5-877a497c5dba"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"fca86a67-a5e2-49f7-92b5-877a497c5dba"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Asser","active_power":1.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.0,"internal":{"uuid":{"value":"91c1100d-acce-4258-9a9a-eb1ddd05ab0f"},"ext":null,"units_info":null},"max_reactive_power":0.2,"ext":{},"reactive_power":0.2},{"base_power":100.0,"services":[],"bus":{"value":"6b0d373c-e4ce-40e5-9225-e2df4ad602d5"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"76806528-5490-4598-8c93-ead7147dde3d"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"76806528-5490-4598-8c93-ead7147dde3d"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Chifa","active_power":1.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.0,"internal":{"uuid":{"value":"dcf4a9b8-1007-43bb-bfb3-6f915264c0ef"},"ext":null,"units_info":null},"max_reactive_power":0.2,"ext":{},"reactive_power":0.2},{"base_power":100.0,"services":[],"bus":{"value":"6d873ee9-8a2f-46c1-b635-5a3da0f48a29"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"3e220470-89ad-41b7-810e-31e625296b24"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"3e220470-89ad-41b7-810e-31e625296b24"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Alger","active_power":1.71,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.71,"internal":{"uuid":{"value":"84d108fd-b342-4e49-b003-6ea5d0ef7d87"},"ext":null,"units_info":null},"max_reactive_power":0.35,"ext":{},"reactive_power":0.35},{"base_power":100.0,"services":[],"bus":{"value":"3086f062-6d95-4f39-89ea-1c6ea6700aa1"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"ad8c7630-2044-4c31-88ea-30c2a3e2cd70"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"ad8c7630-2044-4c31-88ea-30c2a3e2cd70"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Agricola","active_power":0.74,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.74,"internal":{"uuid":{"value":"da63d77f-7b6b-4a91-bfb6-4ccd197e8e8b"},"ext":null,"units_info":null},"max_reactive_power":0.15,"ext":{},"reactive_power":0.15},{"base_power":100.0,"services":[],"bus":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"539df258-ca43-4e1d-ac65-57f6e78d177c"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"539df258-ca43-4e1d-ac65-57f6e78d177c"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Astor","active_power":3.33,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":3.33,"internal":{"uuid":{"value":"9a5d6235-4307-447e-a6e1-701438be5ab7"},"ext":null,"units_info":null},"max_reactive_power":0.68,"ext":{},"reactive_power":0.68},{"base_power":100.0,"services":[],"bus":{"value":"e447cb10-9555-4ba2-bdab-387dc98ef414"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"a8483e2a-80d9-4af8-99ff-e649b19dd39c"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"a8483e2a-80d9-4af8-99ff-e649b19dd39c"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Aiken","active_power":0.71,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.71,"internal":{"uuid":{"value":"79d0df55-768a-4faf-8262-f8de70b49b36"},"ext":null,"units_info":null},"max_reactive_power":0.14,"ext":{},"reactive_power":0.14},{"base_power":100.0,"services":[],"bus":{"value":"f05374ea-ee8a-48f4-bd50-47bac762e887"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"809a834a-6fff-45ea-b8e7-b9a7a005827b"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"809a834a-6fff-45ea-b8e7-b9a7a005827b"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Clay","active_power":1.81,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.81,"internal":{"uuid":{"value":"6fe19f7c-57bc-4343-a3f6-7ff543f70596"},"ext":null,"units_info":null},"max_reactive_power":0.37,"ext":{},"reactive_power":0.37},{"base_power":100.0,"services":[],"bus":{"value":"286599f1-84ad-4db3-83e0-92445f4fffb3"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"ddd3a252-fe26-4e2e-8c5e-827f8d937360"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"ddd3a252-fe26-4e2e-8c5e-827f8d937360"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Barlow","active_power":2.65,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":2.65,"internal":{"uuid":{"value":"6a38def6-5ba7-460a-8aa7-bc662a3ca599"},"ext":null,"units_info":null},"max_reactive_power":0.54,"ext":{},"reactive_power":0.54},{"base_power":100.0,"services":[],"bus":{"value":"f63e7fbb-a553-45b9-b03c-1951817aa385"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"b287a681-7e80-48a7-b5f7-e6affc54f4c3"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"b287a681-7e80-48a7-b5f7-e6affc54f4c3"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Caine","active_power":0.74,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.74,"internal":{"uuid":{"value":"8fe1a604-85e4-4b77-b719-4a8756cb97ac"},"ext":null,"units_info":null},"max_reactive_power":0.15,"ext":{},"reactive_power":0.15},{"base_power":100.0,"services":[],"bus":{"value":"437a3176-05c2-4b4a-b2e9-2e3cc3b65f2f"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"6ce2ff17-4f0c-4484-a442-a039521f23a4"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"6ce2ff17-4f0c-4484-a442-a039521f23a4"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Banks","active_power":1.95,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.95,"internal":{"uuid":{"value":"e5be59d9-8601-4590-ae87-41b0c26f33b9"},"ext":null,"units_info":null},"max_reactive_power":0.4,"ext":{},"reactive_power":0.4},{"base_power":100.0,"services":[],"bus":{"value":"7e34591f-8f76-4bed-be9a-e33156bd86be"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"62bb950e-78ad-4027-834a-6cb2423dd327"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"62bb950e-78ad-4027-834a-6cb2423dd327"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Basov","active_power":1.0,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.0,"internal":{"uuid":{"value":"6d68fb11-491b-44e9-944d-e741dd98f988"},"ext":null,"units_info":null},"max_reactive_power":0.2,"ext":{},"reactive_power":0.2},{"base_power":100.0,"services":[],"bus":{"value":"e6271f79-e2c1-4a7f-9fdf-64cddd8d077a"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"ab64c3a9-5505-48c7-85f4-a265e8a75a10"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"ab64c3a9-5505-48c7-85f4-a265e8a75a10"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Balzac","active_power":1.75,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.75,"internal":{"uuid":{"value":"6ecfb4b7-e531-4b5d-b277-a66787b9f514"},"ext":null,"units_info":null},"max_reactive_power":0.36,"ext":{},"reactive_power":0.36},{"base_power":100.0,"services":[],"bus":{"value":"4013a68d-1dff-44b0-9545-3f8ca6d2166b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"14021265-1348-443c-a600-960d64355309"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"14021265-1348-443c-a600-960d64355309"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Camus","active_power":1.36,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.36,"internal":{"uuid":{"value":"03891a4e-bd48-4148-8b07-5d49a22e187b"},"ext":null,"units_info":null},"max_reactive_power":0.28,"ext":{},"reactive_power":0.28},{"base_power":100.0,"services":[],"bus":{"value":"2fe23a34-0e94-41e3-b35c-11577449ee4b"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"1c2a83b9-821c-4297-81f1-b689762c659d"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"1c2a83b9-821c-4297-81f1-b689762c659d"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Chain","active_power":1.94,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.94,"internal":{"uuid":{"value":"949c9449-d3b0-49c8-a833-40478f5640c5"},"ext":null,"units_info":null},"max_reactive_power":0.39,"ext":{},"reactive_power":0.39},{"base_power":100.0,"services":[],"bus":{"value":"d7034d32-152e-49f4-852a-0917168a132e"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"6da7f762-eb6f-4dfa-af08-afdafdbaa931"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"6da7f762-eb6f-4dfa-af08-afdafdbaa931"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Alber","active_power":1.36,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.36,"internal":{"uuid":{"value":"e5c46e8f-3457-48d7-aefe-e15b91b12929"},"ext":null,"units_info":null},"max_reactive_power":0.28,"ext":{},"reactive_power":0.28},{"base_power":100.0,"services":[],"bus":{"value":"f7f35b5b-3994-4120-ae45-e152834e1769"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d86c8731-307e-4320-bbd7-678080132276"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"d86c8731-307e-4320-bbd7-678080132276"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Clark","active_power":3.33,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":3.33,"internal":{"uuid":{"value":"a36cf910-290d-4c55-9adc-63413aeba799"},"ext":null,"units_info":null},"max_reactive_power":0.68,"ext":{},"reactive_power":0.68},{"base_power":100.0,"services":[],"bus":{"value":"ad2d164d-7fde-42f9-b64f-b11a273c9ebc"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"8948c84a-78d2-4515-b40c-a4f38277c9d6"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"8948c84a-78d2-4515-b40c-a4f38277c9d6"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Attar","active_power":1.81,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.81,"internal":{"uuid":{"value":"45cedad9-23b5-4327-9418-c1c7b9f2bb17"},"ext":null,"units_info":null},"max_reactive_power":0.37,"ext":{},"reactive_power":0.37},{"base_power":100.0,"services":[],"bus":{"value":"64bfc797-e7a4-49f8-a241-2e07c8b893fb"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"f4b6477b-f35a-43ad-9c1e-331f33d2f68d"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"f4b6477b-f35a-43ad-9c1e-331f33d2f68d"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Arthur","active_power":3.17,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":3.17,"internal":{"uuid":{"value":"7c9f47a0-1a56-491e-9e7b-810e408421d2"},"ext":null,"units_info":null},"max_reactive_power":0.64,"ext":{},"reactive_power":0.64},{"base_power":100.0,"services":[],"bus":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"01dd7269-e391-4cbf-9844-a562c57a7cd9"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"01dd7269-e391-4cbf-9844-a562c57a7cd9"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Cecil","active_power":2.65,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":2.65,"internal":{"uuid":{"value":"35c47e5f-926d-4b52-85e5-2bd1739f8ae2"},"ext":null,"units_info":null},"max_reactive_power":0.54,"ext":{},"reactive_power":0.54},{"base_power":100.0,"services":[],"bus":{"value":"b1f6f4e5-ef5e-4585-8833-19bdd7f4f1df"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"dba99e92-4bd4-413f-9c77-a469066461ca"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"dba99e92-4bd4-413f-9c77-a469066461ca"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Beethoven","active_power":1.28,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.28,"internal":{"uuid":{"value":"4b3d2b48-3348-48e4-90d6-98fcedd15fcf"},"ext":null,"units_info":null},"max_reactive_power":0.26,"ext":{},"reactive_power":0.26},{"base_power":100.0,"services":[],"bus":{"value":"0dd12421-3cf8-405c-9123-f916a5bb338f"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"72aa18a4-eb2f-41a4-95e0-333ef260a346"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"72aa18a4-eb2f-41a4-95e0-333ef260a346"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Attila","active_power":1.28,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.28,"internal":{"uuid":{"value":"c224e2f6-3412-4984-a8ba-4f46c8cd8348"},"ext":null,"units_info":null},"max_reactive_power":0.26,"ext":{},"reactive_power":0.26},{"base_power":100.0,"services":[],"bus":{"value":"2ca25f64-ff52-458f-abed-4c9a9a4aa3dc"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"b83a24b2-e7e4-42e9-a72e-da4944696f91"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"b83a24b2-e7e4-42e9-a72e-da4944696f91"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Abel","active_power":1.08,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.08,"internal":{"uuid":{"value":"e0cbaabc-60b2-4717-a7ff-508acaca3227"},"ext":null,"units_info":null},"max_reactive_power":0.22,"ext":{},"reactive_power":0.22},{"base_power":100.0,"services":[],"bus":{"value":"5431d23f-a20a-40f2-8000-2d3c0a8454a0"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"20c88df4-eb7b-4cbc-ad17-cbb1c29b2bab"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"20c88df4-eb7b-4cbc-ad17-cbb1c29b2bab"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Balch","active_power":1.71,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.71,"internal":{"uuid":{"value":"ffebbc58-6c76-47cf-abc2-bd3669a63724"},"ext":null,"units_info":null},"max_reactive_power":0.35,"ext":{},"reactive_power":0.35},{"base_power":100.0,"services":[],"bus":{"value":"440dbe86-e1ac-4fae-93be-1bd6e245c924"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"c54c3e19-419c-4f04-b9c0-bdb8b5910911"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"c54c3e19-419c-4f04-b9c0-bdb8b5910911"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Carter","active_power":1.75,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.75,"internal":{"uuid":{"value":"92a11994-bc16-41f7-8afb-1b5d6f93e773"},"ext":null,"units_info":null},"max_reactive_power":0.36,"ext":{},"reactive_power":0.36},{"base_power":100.0,"services":[],"bus":{"value":"47dbf654-a983-4442-b5a5-baf4e85449c0"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"47cd18a2-35fb-4b37-a885-19e6613a0e69"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"47cd18a2-35fb-4b37-a885-19e6613a0e69"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Clive","active_power":1.28,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.28,"internal":{"uuid":{"value":"7e184724-798a-469b-b877-684384dbf7e5"},"ext":null,"units_info":null},"max_reactive_power":0.26,"ext":{},"reactive_power":0.26},{"base_power":100.0,"services":[],"bus":{"value":"9c4891e6-2687-4177-8368-b2baf060ca5e"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"35d74260-b287-48c1-93f6-077724f9e928"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"35d74260-b287-48c1-93f6-077724f9e928"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Calvin","active_power":0.71,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.71,"internal":{"uuid":{"value":"e50d3a57-5ab7-40d2-996e-125d1fcceda9"},"ext":null,"units_info":null},"max_reactive_power":0.14,"ext":{},"reactive_power":0.14},{"base_power":100.0,"services":[],"bus":{"value":"17c6af0f-f8e6-44d7-b1c4-1b26eb380c71"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"2649ad4e-91e4-4408-bb2f-ece79c871650"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"2649ad4e-91e4-4408-bb2f-ece79c871650"},"ext":null,"units_info":null},"time_series_uuid":{"value":"039c11ef-f95f-4ce3-ad82-d0460e35a26f"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Cabot","active_power":0.97,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":0.97,"internal":{"uuid":{"value":"10c50804-732b-4428-8b7d-a8ce9d47987b"},"ext":null,"units_info":null},"max_reactive_power":0.2,"ext":{},"reactive_power":0.2},{"base_power":100.0,"services":[],"bus":{"value":"5aca363d-9812-40fb-88ff-6cbc52219e7d"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"f07e8876-3d0a-4984-9520-ca3445172c1f"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"f07e8876-3d0a-4984-9520-ca3445172c1f"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Bayle","active_power":3.33,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":3.33,"internal":{"uuid":{"value":"4eccd36c-7341-4cec-a980-dd7fb7b8a54d"},"ext":null,"units_info":null},"max_reactive_power":0.68,"ext":{},"reactive_power":0.68},{"base_power":100.0,"services":[],"bus":{"value":"9f3d0858-b7c7-4707-af9a-30930513c21f"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"f7ac7432-0b60-41be-b301-12d5052ac7bc"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"f7ac7432-0b60-41be-b301-12d5052ac7bc"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Bede","active_power":1.81,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.81,"internal":{"uuid":{"value":"e43716eb-c17d-40a1-bd0c-79c34efbe98a"},"ext":null,"units_info":null},"max_reactive_power":0.37,"ext":{},"reactive_power":0.37},{"base_power":100.0,"services":[],"bus":{"value":"bc236369-6c0d-46f5-9c07-b4269937c6e9"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"fa596ab6-1c7e-406f-ba92-442c0dd18b3c"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"fa596ab6-1c7e-406f-ba92-442c0dd18b3c"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Arnold","active_power":1.94,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.94,"internal":{"uuid":{"value":"1421908a-3a92-4e11-93ab-576a85aa3b9b"},"ext":null,"units_info":null},"max_reactive_power":0.39,"ext":{},"reactive_power":0.39},{"base_power":100.0,"services":[],"bus":{"value":"00573659-fd6d-47db-93c5-894d7b071535"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"cdaa4e6a-ce67-4684-b3f1-5738e58ed2ca"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"cdaa4e6a-ce67-4684-b3f1-5738e58ed2ca"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Baker","active_power":1.25,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.25,"internal":{"uuid":{"value":"6461f7fa-a752-44f5-b293-b17bea2c127e"},"ext":null,"units_info":null},"max_reactive_power":0.25,"ext":{},"reactive_power":0.25},{"base_power":100.0,"services":[],"bus":{"value":"975879b8-0147-46e2-95b1-41719d22273f"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"b56addc9-c6ff-4f85-b173-ee9194a65536"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"b56addc9-c6ff-4f85-b173-ee9194a65536"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Barry","active_power":1.94,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.94,"internal":{"uuid":{"value":"66dc93f1-4584-4779-a301-202b6d57a85d"},"ext":null,"units_info":null},"max_reactive_power":0.39,"ext":{},"reactive_power":0.39},{"base_power":100.0,"services":[],"bus":{"value":"6c8013ab-4b2e-45f6-8f5f-ce63c43aeb43"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"9fa6a41e-3dae-479c-811c-bb22da4b9a22"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"9fa6a41e-3dae-479c-811c-bb22da4b9a22"},"ext":null,"units_info":null},"time_series_uuid":{"value":"b755f829-4979-444d-af56-29f313622bb3"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Arne","active_power":2.65,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":2.65,"internal":{"uuid":{"value":"3ae472f9-3ef8-409d-85c0-70da96e7cc6d"},"ext":null,"units_info":null},"max_reactive_power":0.54,"ext":{},"reactive_power":0.54},{"base_power":100.0,"services":[],"bus":{"value":"57754cc1-d1fc-4520-8db1-5e44dfbc6ffa"},"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"416daa84-080f-4e8b-a69f-3ee4d273ec61"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"max_active_power","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"416daa84-080f-4e8b-a69f-3ee4d273ec61"},"ext":null,"units_info":null},"time_series_uuid":{"value":"4e013d73-259c-444d-876d-e11a1c154701"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_max_active_power","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Baffin","active_power":1.8,"dynamic_injector":null,"__metadata__":{"module":"PowerSystems","type":"PowerLoad"},"max_active_power":1.8,"internal":{"uuid":{"value":"92325059-5627-4327-80b6-0656b91b5f51"},"ext":null,"units_info":null},"max_reactive_power":0.37,"ext":{},"reactive_power":0.37},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"B15","reactive_power_flow":0.0,"arc":{"value":"51993f55-5e41-4302-b07b-583a9f27c73d"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"73037df6-d364-47d1-8290-2da61ee01a0c"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.03},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"B14","reactive_power_flow":0.0,"arc":{"value":"3afa6b1c-c432-48b0-bdbc-99dc1450bd99"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"cb9d93d3-97e7-420d-af18-348eae0e769b"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.03},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"A17","reactive_power_flow":0.0,"arc":{"value":"25dc65ff-8a6e-4468-a2a3-baaa59aba90f"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"40a4bbb2-edd7-4f32-8f1b-9e718f3e46f6"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"C16","reactive_power_flow":0.0,"arc":{"value":"eef5ca9b-b60c-44c9-b693-8e2226a6007b"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"fec21d79-e632-46e4-a384-bc9e4dc2c261"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"B17","reactive_power_flow":0.0,"arc":{"value":"6a819458-cc4d-4f18-af94-06e842f43a23"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"1a4062f6-50f6-4e5f-884d-c762692d1a0c"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"A14","reactive_power_flow":0.0,"arc":{"value":"da29153a-63f3-4e46-a5e1-6263a5937d3a"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"31bd38ca-268c-4872-8034-4db1106b8fca"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.03},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"C15","reactive_power_flow":0.0,"arc":{"value":"4f886ae5-39ff-4ad0-8801-a2404f8556ae"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"becc7599-1b94-4f90-9e5d-1aea0d21585d"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.03},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"B7","reactive_power_flow":0.0,"arc":{"value":"765248b6-1e34-4414-b032-ab7e41abfdd2"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"4a2736b0-70b2-45b8-8963-8792b16d87ae"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"A7","reactive_power_flow":0.0,"arc":{"value":"944bbaf1-7828-47ad-9fbd-f8a01b0a8d7f"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"d801d3e5-d675-4589-a23d-4bda0bcc6308"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"A16","reactive_power_flow":0.0,"arc":{"value":"706694ad-4c03-417a-80f6-ae9227a60b4a"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"17c26e2b-709c-4ae2-8d05-05c9c2cd9e0f"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"C17","reactive_power_flow":0.0,"arc":{"value":"d19063af-64da-44fe-a108-fb1a23f539de"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"d6135b24-d648-4c18-ae3d-8dee145574b4"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"A15","reactive_power_flow":0.0,"arc":{"value":"d49d3203-75fb-4873-bb37-71aad98d7669"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"ec0481b7-0c4b-47bc-b8f0-48ffc07f187b"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.03},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"B16","reactive_power_flow":0.0,"arc":{"value":"d572624c-9205-4493-99f5-98e12bb75f05"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"864f1c3e-54f6-4e76-90d5-ad3dfb401a36"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"C7","reactive_power_flow":0.0,"arc":{"value":"788121d7-c6e3-42be-bb67-d2a53a3848bb"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"4b7af9a7-a79c-4331-a937-f5ede3178286"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.015},{"services":[],"x":0.084,"rate":4.0,"r":0.002,"available":true,"time_series_container":[],"name":"C14","reactive_power_flow":0.0,"arc":{"value":"ac5c74db-7c5f-4e92-ae10-cb16ba0b7720"},"__metadata__":{"module":"PowerSystems","type":"TapTransformer"},"internal":{"uuid":{"value":"854f59ad-709f-4ece-b678-14d697787c80"},"ext":null,"units_info":null},"ext":{},"primary_shunt":0.0,"active_power_flow":0.0,"tap":1.03},{"number":202,"base_voltage":138.0,"bustype":"PV","angle":-0.1877810214196211,"name":"Bacon","magnitude":1.04844,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"5987511f-5bc8-43a1-a775-7dd036a80cea"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"830cec60-7717-481e-a6be-e3a27ca72933"}},{"number":321,"base_voltage":230.0,"bustype":"PV","angle":0.21539492271297458,"name":"Cobb","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"4cb9995d-b27f-4bd8-8550-a5733ca81adf"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"a617ade0-13e8-4916-8d92-ba69c143971b"}},{"number":322,"base_voltage":230.0,"bustype":"PV","angle":0.3153659860038082,"name":"Cole","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"790837ec-5ed0-4d83-8ae4-23d3ad9e099b"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"a617ade0-13e8-4916-8d92-ba69c143971b"}},{"number":102,"base_voltage":138.0,"bustype":"PV","angle":-0.1364470483941135,"name":"Adams","magnitude":1.04783,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"15a1c15e-b2fe-4acc-9979-53908db17fc8"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"e2cea7f4-1a18-4dd9-a132-9a64445f8101"}},{"number":117,"base_voltage":230.0,"bustype":"PQ","angle":0.19956391373276003,"name":"Aston","magnitude":1.04783,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"fed0d954-3eef-4b56-bcfa-f93c60d09145"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"fbe227a3-4afa-4baf-a519-0c8c43dd05c7"}},{"number":324,"base_voltage":230.0,"bustype":"PQ","angle":0.02279504722859714,"name":"Curie","magnitude":1.01046,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"ddf53cea-fd92-45db-98b1-93b296b400b6"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"463e9907-ed70-4d26-ae54-029ba5b13d2c"}},{"number":121,"base_voltage":230.0,"bustype":"PV","angle":0.22840303616101354,"name":"Attlee","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"2ca38989-a480-41d5-8fbf-7424057aba13"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"fbe227a3-4afa-4baf-a519-0c8c43dd05c7"}},{"number":206,"base_voltage":138.0,"bustype":"PQ","angle":-0.28198796032281825,"name":"Bajer","magnitude":1.03259,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"82a02c8b-f9c1-4c4c-a3e5-49fcbb816df9"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"830cec60-7717-481e-a6be-e3a27ca72933"}},{"number":217,"base_voltage":230.0,"bustype":"PQ","angle":0.15390994022494278,"name":"Bates","magnitude":1.04847,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"32c29345-8745-4637-81db-6e896702e3f3"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"c1aa076c-d538-462e-b0d2-0467101404dd"}},{"number":103,"base_voltage":138.0,"bustype":"PQ","angle":-0.1258539470320591,"name":"Adler","magnitude":1.01085,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"283fe249-ae58-4f16-b84d-b5c61e7ea053"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"042a6750-6b56-48df-a356-2a7553fb8247"}},{"number":301,"base_voltage":138.0,"bustype":"PV","angle":-0.1631570436678591,"name":"Cabell","magnitude":1.0486,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"c7f9dfad-53af-4b53-8740-e6608fed2d0b"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"dd9da590-b1c9-4db1-b963-8a30b6ece11e"}},{"number":204,"base_voltage":138.0,"bustype":"PQ","angle":-0.23535398444000616,"name":"Bailey","magnitude":1.0189,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"9010c895-a0f8-4c1a-886d-b6bbf40db2e9"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"980c1b82-da6b-4c16-a29b-7bf335b5a157"}},{"number":107,"base_voltage":138.0,"bustype":"PV","angle":-0.19681606735842017,"name":"Alder","magnitude":1.03745,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"04fa9f2f-feec-4bab-abec-f1c911527c9f"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"e2cea7f4-1a18-4dd9-a132-9a64445f8101"}},{"number":311,"base_voltage":230.0,"bustype":"PQ","angle":-0.10019394183631328,"name":"Cary","magnitude":1.0283,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"28b723c0-0dd7-4acf-87fb-192323598a07"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"72b28425-f50f-4108-b0b3-54f7562e639c"}},{"number":110,"base_voltage":138.0,"bustype":"PQ","angle":-0.18536496213608536,"name":"Allen","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"ade50603-b234-4a1f-909d-e978039732ca"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"ed9a2465-acf6-44a7-9a78-c09366991e28"}},{"number":317,"base_voltage":230.0,"bustype":"PQ","angle":0.18053999941894702,"name":"Chuhsi","magnitude":1.04785,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"d9e6f714-ebb9-4069-a930-677424695c60"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"a617ade0-13e8-4916-8d92-ba69c143971b"}},{"number":215,"base_voltage":230.0,"bustype":"PV","angle":0.08087000542408246,"name":"Barton","magnitude":1.04327,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"6d2a0b43-986f-498f-be4a-e8e01e36da51"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"462c58ae-b91d-44c2-92bf-3fe6b682b700"}},{"number":323,"base_voltage":230.0,"bustype":"PV","angle":0.15046692920953353,"name":"Comte","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"b4b8d99a-d2be-49f0-b50a-29673f935cd3"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"b4714f1a-bf9e-429c-8fdb-39e4d7fc5df5"}},{"number":201,"base_voltage":138.0,"bustype":"PV","angle":-0.18657098464921346,"name":"Bach","magnitude":1.04841,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"b073d820-4ac0-44c9-a276-51def4fd5b49"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"980c1b82-da6b-4c16-a29b-7bf335b5a157"}},{"number":303,"base_voltage":138.0,"bustype":"PQ","angle":-0.14969497008137647,"name":"Caesar","magnitude":1.01045,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"90f8db1b-be67-4858-a82a-0eefe87ff6d4"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"dd9da590-b1c9-4db1-b963-8a30b6ece11e"}},{"number":307,"base_voltage":138.0,"bustype":"PV","angle":-0.21900304187562247,"name":"Carew","magnitude":1.03804,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"2c7a5c45-2e2f-4fd1-8046-eb6ff0e1e270"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"b921f21f-4b2e-4e8e-a22c-8883987c7caa"}},{"number":205,"base_voltage":138.0,"bustype":"PQ","angle":-0.23757194885344055,"name":"Bain","magnitude":1.03603,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"83312218-17c5-4866-995d-c9742450b910"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"980c1b82-da6b-4c16-a29b-7bf335b5a157"}},{"number":315,"base_voltage":230.0,"bustype":"PV","angle":0.12306107116301779,"name":"Chase","magnitude":1.043,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"b6ad30dc-e95d-47ab-9c7e-71c604405d7f"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"463e9907-ed70-4d26-ae54-029ba5b13d2c"}},{"number":222,"base_voltage":230.0,"bustype":"PV","angle":0.28679302628648384,"name":"Bell","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"31bdcac3-d536-45dc-94d0-7161c9ac7bbc"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"c1aa076c-d538-462e-b0d2-0467101404dd"}},{"number":308,"base_voltage":138.0,"bustype":"PQ","angle":-0.26499107140227146,"name":"Carrel","magnitude":1.01056,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"a2ff36e2-3dcd-41b0-b98e-4e8c7c871191"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"b921f21f-4b2e-4e8e-a22c-8883987c7caa"}},{"number":109,"base_voltage":138.0,"bustype":"PQ","angle":-0.15385496235350493,"name":"Ali","magnitude":1.0261,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"75990a83-7690-4ae8-94a9-4bb8a34633d2"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"ed9a2465-acf6-44a7-9a78-c09366991e28"}},{"number":310,"base_voltage":138.0,"bustype":"PQ","angle":-0.2146959183475509,"name":"Caruso","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"6d0dcef3-6f3d-407d-ac73-7e0e10b9337e"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"72b28425-f50f-4108-b0b3-54f7562e639c"}},{"number":124,"base_voltage":230.0,"bustype":"PQ","angle":0.04159800285910765,"name":"Avery","magnitude":1.01155,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"c1deea4f-4c0f-4ee4-9e64-5e2e51395d13"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"3c770eba-d6f1-47c2-a20f-a92554f7941a"}},{"number":116,"base_voltage":230.0,"bustype":"PV","angle":0.13210903253828157,"name":"Asser","magnitude":1.04565,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"d7977deb-c4d7-493d-ace7-89064b663efd"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"3c770eba-d6f1-47c2-a20f-a92554f7941a"}},{"number":122,"base_voltage":230.0,"bustype":"PV","angle":0.33073605352857105,"name":"Aubrey","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"cedc8d83-9c60-4620-b30a-395c3e18e507"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"fbe227a3-4afa-4baf-a519-0c8c43dd05c7"}},{"number":211,"base_voltage":230.0,"bustype":"PQ","angle":-0.12100996022607405,"name":"Bardeen","magnitude":1.02735,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"77e2c403-2d62-4e8a-80d1-23f659003553"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"0ecd8acd-eff0-4097-8a6b-b6d2a7e88653"}},{"number":316,"base_voltage":230.0,"bustype":"PV","angle":0.11516991401597582,"name":"Chifa","magnitude":1.04558,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"6b0d373c-e4ce-40e5-9225-e2df4ad602d5"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"463e9907-ed70-4d26-ae54-029ba5b13d2c"}},{"number":108,"base_voltage":138.0,"bustype":"PQ","angle":-0.23997701256268875,"name":"Alger","magnitude":1.01024,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"6d873ee9-8a2f-46c1-b635-5a3da0f48a29"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"e2cea7f4-1a18-4dd9-a132-9a64445f8101"}},{"number":223,"base_voltage":230.0,"bustype":"PV","angle":0.125340994764898,"name":"Bloch","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"6d644c3c-e1e8-42ff-a12d-fe5287c36680"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"7c5ce822-ebc8-4a3c-b971-32392fd5226a"}},{"number":104,"base_voltage":138.0,"bustype":"PQ","angle":-0.18441393222667365,"name":"Agricola","magnitude":1.01765,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"3086f062-6d95-4f39-89ea-1c6ea6700aa1"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"042a6750-6b56-48df-a356-2a7553fb8247"}},{"number":118,"base_voltage":230.0,"bustype":"PV","angle":0.21859498389650622,"name":"Astor","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"5e5d2e38-5c8d-4135-9f4d-f2cf3362292b"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"fbe227a3-4afa-4baf-a519-0c8c43dd05c7"}},{"number":105,"base_voltage":138.0,"bustype":"PQ","angle":-0.18690504066804514,"name":"Aiken","magnitude":1.03568,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"e447cb10-9555-4ba2-bdab-387dc98ef414"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"042a6750-6b56-48df-a356-2a7553fb8247"}},{"number":319,"base_voltage":230.0,"bustype":"PQ","angle":0.10324303203954738,"name":"Clay","magnitude":1.03953,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"f05374ea-ee8a-48f4-bd50-47bac762e887"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"b4714f1a-bf9e-429c-8fdb-39e4d7fc5df5"}},{"number":213,"base_voltage":230.0,"bustype":"PV","angle":-0.05611408078086969,"name":"Barlow","magnitude":1.03752,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"286599f1-84ad-4db3-83e0-92445f4fffb3"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"2ff0b424-7619-42f1-a2c4-3f1d99f4bb31"}},{"number":304,"base_voltage":138.0,"bustype":"PQ","angle":-0.21271793670626568,"name":"Caine","magnitude":1.01785,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"f63e7fbb-a553-45b9-b03c-1951817aa385"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"dd9da590-b1c9-4db1-b963-8a30b6ece11e"}},{"number":224,"base_voltage":230.0,"bustype":"PQ","angle":-0.01675603348377156,"name":"Bordet","magnitude":1.01456,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"3c8e20e2-b766-476f-9c55-a686048cfb45"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"462c58ae-b91d-44c2-92bf-3fe6b682b700"}},{"number":210,"base_voltage":138.0,"bustype":"PQ","angle":-0.23526793970788284,"name":"Banks","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"437a3176-05c2-4b4a-b2e9-2e3cc3b65f2f"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"0ecd8acd-eff0-4097-8a6b-b6d2a7e88653"}},{"number":325,"base_voltage":230.0,"bustype":"PQ","angle":0.15696304468545644,"name":"Curtiss","magnitude":1.04986,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"7f0fbc40-2925-4bd5-afbc-e6c0892b7958"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"b4714f1a-bf9e-429c-8fdb-39e4d7fc5df5"}},{"number":216,"base_voltage":230.0,"bustype":"PV","angle":0.0820320456400603,"name":"Basov","magnitude":1.04556,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"7e34591f-8f76-4bed-be9a-e33156bd86be"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"462c58ae-b91d-44c2-92bf-3fe6b682b700"}},{"number":209,"base_voltage":138.0,"bustype":"PQ","angle":-0.204623972300142,"name":"Balzac","magnitude":1.02781,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"e6271f79-e2c1-4a7f-9fdf-64cddd8d077a"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"0ecd8acd-eff0-4097-8a6b-b6d2a7e88653"}},{"number":306,"base_voltage":138.0,"bustype":"PQ","angle":-0.26078796949761873,"name":"Camus","magnitude":1.0326,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"4013a68d-1dff-44b0-9545-3f8ca6d2166b"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"b921f21f-4b2e-4e8e-a22c-8883987c7caa"}},{"number":314,"base_voltage":230.0,"bustype":"PV","angle":-0.0559889406735017,"name":"Chain","magnitude":1.04631,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"2fe23a34-0e94-41e3-b35c-11577449ee4b"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"463e9907-ed70-4d26-ae54-029ba5b13d2c"}},{"number":312,"base_voltage":230.0,"bustype":"PQ","angle":-0.0723620489193857,"name":"Caxton","magnitude":1.019,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"00bbd79e-c2c8-4605-bc9c-c1a074e4940a"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"72b28425-f50f-4108-b0b3-54f7562e639c"}},{"number":106,"base_voltage":138.0,"bustype":"PQ","angle":-0.23176995082103577,"name":"Alber","magnitude":1.03242,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"d7034d32-152e-49f4-852a-0917168a132e"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"e2cea7f4-1a18-4dd9-a132-9a64445f8101"}},{"number":318,"base_voltage":230.0,"bustype":"PV","angle":0.19796606480255924,"name":"Clark","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"f7f35b5b-3994-4120-ae45-e152834e1769"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"a617ade0-13e8-4916-8d92-ba69c143971b"}},{"number":119,"base_voltage":230.0,"bustype":"PQ","angle":0.11620000734050288,"name":"Attar","magnitude":1.03962,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"ad2d164d-7fde-42f9-b64f-b11a273c9ebc"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"1bc1a652-acff-4936-a22c-99c4e9198fe1"}},{"number":111,"base_voltage":230.0,"bustype":"PQ","angle":-0.0683600089445627,"name":"Anna","magnitude":1.02764,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"3eb4caf9-fe81-47db-8d3b-811946992c6e"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"ed9a2465-acf6-44a7-9a78-c09366991e28"}},{"number":115,"base_voltage":230.0,"bustype":"PV","angle":0.13892297247099264,"name":"Arthur","magnitude":1.04335,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"64bfc797-e7a4-49f8-a241-2e07c8b893fb"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"3c770eba-d6f1-47c2-a20f-a92554f7941a"}},{"number":313,"base_voltage":230.0,"bustype":"PV","angle":-0.04215197036369065,"name":"Cecil","magnitude":1.03802,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"951f4a95-05ab-405a-ae3d-031d4de1d2a2"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"a3d1f84d-feff-490c-ac68-3650145de81d"}},{"number":220,"base_voltage":230.0,"bustype":"PQ","angle":0.09886400094629359,"name":"Beethoven","magnitude":1.0438,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"b1f6f4e5-ef5e-4585-8833-19bdd7f4f1df"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"7c5ce822-ebc8-4a3c-b971-32392fd5226a"}},{"number":123,"base_voltage":230.0,"bustype":"PV","angle":0.15805998412033487,"name":"Austen","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"5b2986f5-b66c-4ec9-8b97-1bebc04d0e48"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"1bc1a652-acff-4936-a22c-99c4e9198fe1"}},{"number":120,"base_voltage":230.0,"bustype":"PQ","angle":0.13509895607987307,"name":"Attila","magnitude":1.04399,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"0dd12421-3cf8-405c-9123-f916a5bb338f"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"1bc1a652-acff-4936-a22c-99c4e9198fe1"}},{"number":101,"base_voltage":138.0,"bustype":"PV","angle":-0.13511501310899143,"name":"Abel","magnitude":1.04777,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"2ca25f64-ff52-458f-abed-4c9a9a4aa3dc"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"042a6750-6b56-48df-a356-2a7553fb8247"}},{"number":208,"base_voltage":138.0,"bustype":"PQ","angle":-0.2831550619936269,"name":"Balch","magnitude":1.01203,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"5431d23f-a20a-40f2-8000-2d3c0a8454a0"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"830cec60-7717-481e-a6be-e3a27ca72933"}},{"number":309,"base_voltage":138.0,"bustype":"PQ","angle":-0.18232006072305607,"name":"Carter","magnitude":1.02579,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"440dbe86-e1ac-4fae-93be-1bd6e245c924"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"72b28425-f50f-4108-b0b3-54f7562e639c"}},{"number":320,"base_voltage":230.0,"bustype":"PQ","angle":0.1256129170623587,"name":"Clive","magnitude":1.04389,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"47dbf654-a983-4442-b5a5-baf4e85449c0"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"b4714f1a-bf9e-429c-8fdb-39e4d7fc5df5"}},{"number":221,"base_voltage":230.0,"bustype":"PV","angle":0.1855649768683639,"name":"Behring","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"43d5cbd7-28ec-4b98-b523-0318638345a8"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"c1aa076c-d538-462e-b0d2-0467101404dd"}},{"number":305,"base_voltage":138.0,"bustype":"PQ","angle":-0.2155490352859257,"name":"Calvin","magnitude":1.03609,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"9c4891e6-2687-4177-8368-b2baf060ca5e"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"dd9da590-b1c9-4db1-b963-8a30b6ece11e"}},{"number":302,"base_voltage":138.0,"bustype":"PV","angle":-0.1646020017555852,"name":"Cabot","magnitude":1.04864,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"17c6af0f-f8e6-44d7-b1c4-1b26eb380c71"},"ext":null,"units_info":null},"area":{"value":"09566012-1a3a-4516-a04f-08fddabeef8c"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"b921f21f-4b2e-4e8e-a22c-8883987c7caa"}},{"number":218,"base_voltage":230.0,"bustype":"PV","angle":0.17444094634785287,"name":"Bayle","magnitude":1.05,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"5aca363d-9812-40fb-88ff-6cbc52219e7d"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"c1aa076c-d538-462e-b0d2-0467101404dd"}},{"number":219,"base_voltage":230.0,"bustype":"PQ","angle":0.07351902768053274,"name":"Bede","magnitude":1.03946,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"9f3d0858-b7c7-4707-af9a-30930513c21f"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"7c5ce822-ebc8-4a3c-b971-32392fd5226a"}},{"number":114,"base_voltage":230.0,"bustype":"PV","angle":-0.03020396990331307,"name":"Arnold","magnitude":1.04401,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"bc236369-6c0d-46f5-9c07-b4269937c6e9"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"3c770eba-d6f1-47c2-a20f-a92554f7941a"}},{"number":207,"base_voltage":138.0,"bustype":"PV","angle":-0.23502708427110763,"name":"Baker","magnitude":1.03973,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"00573659-fd6d-47db-93c5-894d7b071535"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"830cec60-7717-481e-a6be-e3a27ca72933"}},{"number":214,"base_voltage":230.0,"bustype":"PV","angle":-0.08177199158151313,"name":"Barry","magnitude":1.04335,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"975879b8-0147-46e2-95b1-41719d22273f"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"462c58ae-b91d-44c2-92bf-3fe6b682b700"}},{"number":212,"base_voltage":230.0,"bustype":"PQ","angle":-0.09168807972671891,"name":"Barkla","magnitude":1.01921,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"08021a6c-aad4-4c5d-9a01-6271c804502c"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"0ecd8acd-eff0-4097-8a6b-b6d2a7e88653"}},{"number":113,"base_voltage":230.0,"bustype":"REF","angle":0.0,"name":"Arne","magnitude":1.03943,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"6c8013ab-4b2e-45f6-8f5f-ce63c43aeb43"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"ec695efa-2ea8-411d-99d0-013bd260b4c1"}},{"number":203,"base_voltage":138.0,"bustype":"PQ","angle":-0.18281503609892163,"name":"Baffin","magnitude":1.01886,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"57754cc1-d1fc-4520-8db1-5e44dfbc6ffa"},"ext":null,"units_info":null},"area":{"value":"67f79d57-d29b-4bf6-aa27-f851f4e75d7a"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"980c1b82-da6b-4c16-a29b-7bf335b5a157"}},{"number":112,"base_voltage":230.0,"bustype":"PQ","angle":-0.042310969858547334,"name":"Archer","magnitude":1.02024,"__metadata__":{"module":"PowerSystems","type":"ACBus"},"internal":{"uuid":{"value":"91227bcd-d71a-45a1-abe2-c63250171b71"},"ext":null,"units_info":null},"area":{"value":"b4e42c55-fccc-4ff9-9c9a-01cf3e9a55e3"},"ext":{},"voltage_limits":{"min":0.95,"max":1.05},"load_zone":{"value":"ed9a2465-acf6-44a7-9a78-c09366991e28"}},{"requirement":1.3475000000000001,"max_participation_factor":1.0,"sustained_time":3600.0,"available":true,"time_series_container":[{"horizon":48,"time_series_uuid":{"value":"25005898-a2fb-49f8-bd18-c456f7e10c58"},"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicMetadata"},"resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"e072c173-15d5-404b-945f-199944ee8db8"},"ext":null,"units_info":null},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"time_series_type":{"__metadata__":{"module":"InfrastructureSystems","type":"DeterministicSingleTimeSeries"}}},{"length":8784,"name":"requirement","initial_timestamp":"2020-01-01T00:00:00.0","resolution":{"value":3600000,"type":"Millisecond"},"internal":{"uuid":{"value":"e072c173-15d5-404b-945f-199944ee8db8"},"ext":null,"units_info":null},"time_series_uuid":{"value":"25005898-a2fb-49f8-bd18-c456f7e10c58"},"scaling_factor_multiplier":{"__metadata__":{"function":"get_requirement","module":"PowerSystems"}},"__metadata__":{"module":"InfrastructureSystems","type":"SingleTimeSeriesMetadata"}}],"name":"Reg_Down","__metadata__":{"parameters":["ReserveDown"],"construct_with_parameters":true,"module":"PowerSystems","type":"VariableReserve"},"internal":{"uuid":{"value":"8e4a05f8-9a33-4c61-a50f-23b64a315520"},"ext":null,"units_info":null},"time_frame":300.0,"ext":{},"deployed_fraction":0.0,"max_output_fraction":1.0}],"time_series_storage_file":"system-d2d6a462-a404-4a66-ae27-f60656b96274_time_series_storage.h5","time_series_storage_type":"InfrastructureSystems.Hdf5TimeSeriesStorage","time_series_params":{"__metadata__":{"module":"InfrastructureSystems","type":"TimeSeriesParameters"},"resolution":{"value":3600000,"type":"Millisecond"},"forecast_params":{"initial_timestamp":"2020-01-01T00:00:00.0","interval":{"value":24,"type":"Hour"},"horizon":48,"count":365,"__metadata__":{"module":"InfrastructureSystems","type":"ForecastParameters"}}}},"units_settings":{"base_value":100.0,"unit_system":"SYSTEM_BASE"},"frequency":60.0,"runchecks":true,"metadata":{"name":null,"description":null,"__metadata__":{"module":"PowerSystems","type":"SystemMetadata"}},"data_format_version":"3.0.0"} \ No newline at end of file diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274_metadata.json b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274_metadata.json new file mode 100644 index 0000000000..deaf52b68b --- /dev/null +++ b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274_metadata.json @@ -0,0 +1,74 @@ +{ + "name": "", + "description": "", + "frequency": 60, + "time_series_resolution_milliseconds": 3600000, + "component_counts": [ + { + "type": "ACBus", + "count": 73 + }, + { + "type": "Arc", + "count": 109 + }, + { + "type": "Area", + "count": 3 + }, + { + "type": "FixedAdmittance", + "count": 3 + }, + { + "type": "HydroDispatch", + "count": 1 + }, + { + "type": "Line", + "count": 105 + }, + { + "type": "LoadZone", + "count": 21 + }, + { + "type": "PowerLoad", + "count": 51 + }, + { + "type": "RenewableDispatch", + "count": 29 + }, + { + "type": "RenewableFix", + "count": 31 + }, + { + "type": "TapTransformer", + "count": 15 + }, + { + "type": "ThermalStandard", + "count": 54 + }, + { + "type": "TwoTerminalHVDCLine", + "count": 1 + }, + { + "type": "VariableReserve", + "count": 1 + } + ], + "time_series_counts": [ + { + "type": "DeterministicSingleTimeSeries", + "count": 124 + }, + { + "type": "SingleTimeSeries", + "count": 124 + } + ] +} \ No newline at end of file diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274_time_series_storage.h5 b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274_time_series_storage.h5 new file mode 100644 index 0000000000..bde46ea720 Binary files /dev/null and b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274_time_series_storage.h5 differ diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274_validation_descriptors.json b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274_validation_descriptors.json new file mode 100644 index 0000000000..e9df79ac39 --- /dev/null +++ b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/problems/UC/system-d2d6a462-a404-4a66-ae27-f60656b96274_validation_descriptors.json @@ -0,0 +1 @@ +{"struct_validation_descriptors":[{"fields":[{"name":"variable","data_type":"VariableCost","null_value":"VariableCost((0.0, 0.0))","comment":"variable cost"},{"name":"fixed","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"fixed cost","valid_range":{"max":null,"min":0}}],"docstring":"Data Structure Operational Cost Data in two parts: fixed and variable cost.","struct_name":"TwoPartCost","supertype":"OperationalCost"},{"fields":[{"name":"variable","data_type":"VariableCost","null_value":"VariableCost((0.0, 0.0))","comment":"variable cost"},{"name":"fixed","data_type":"Float64","null_value":"0.0","comment":"fixed cost"},{"name":"start_up","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"start-up cost","valid_range":{"max":null,"min":0}},{"name":"shut_down","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"shut-down cost","valid_range":{"max":null,"min":0}}],"docstring":"Data Structure Operational Cost Data in Three parts fixed, variable cost and start - stop costs.","struct_name":"ThreePartCost","supertype":"OperationalCost"},{"fields":[{"name":"variable","default":"VariableCost((0.0, 0.0))","data_type":"VariableCost","null_value":"VariableCost((0.0, 0.0))","comment":"variable cost"},{"name":"fixed","default":"0.0","data_type":"Float64","null_value":"0.0","comment":"fixed cost"},{"name":"start_up","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"start-up cost","valid_range":{"max":null,"min":0}},{"name":"shut_down","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"shut-down cost","valid_range":{"max":null,"min":0}},{"name":"energy_shortage_cost","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Cost incurred by the model for being short of the energy target.","valid_range":{"max":null,"min":0}},{"name":"energy_surplus_cost","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Cost incurred by the model for surplus energy stored.","valid_range":{"max":null,"min":0}}],"docstring":"Data Structure for Operational Cost Data like variable cost and start - stop costs and energy storage cost.","struct_name":"StorageManagementCost","supertype":"OperationalCost"},{"fields":[{"name":"no_load","data_type":"Float64","null_value":"0.0","comment":"no load cost"},{"name":"start_up","data_type":"NamedTuple{(:hot, :warm, :cold), NTuple{3, Float64}}","null_value":"(hot = START_COST, warm = START_COST, cold = START_COST)","comment":"start-up cost at different stages of the thermal cycle. Warm is also refered as intermediate in some markets"},{"name":"shut_down","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"shut-down cost","valid_range":{"max":null,"min":0}},{"name":"variable","default":"nothing","data_type":"Union{Nothing, IS.TimeSeriesKey}","null_value":"nothing","comment":"Variable Cost TimeSeriesKey"},{"name":"ancillary_services","default":"Vector{Service}()","data_type":"Vector{Service}","null_value":"Vector{Service}()","comment":"Bids for the ancillary services"}],"docstring":"Data Structure Operational Cost to reflect market bids of energy and ancilliary services.\nCompatible with most US Market bidding mechanisms","struct_name":"MarketBidCost","supertype":"OperationalCost"},{"fields":[{"name":"variable","data_type":"VariableCost","null_value":"VariableCost((0.0, 0.0))","comment":"variable cost"},{"name":"no_load","data_type":"Float64","null_value":"0.0","comment":"no load cost"},{"name":"fixed","data_type":"Float64","null_value":"0.0","comment":"fixed cost"},{"name":"start_up","data_type":"NamedTuple{(:hot, :warm, :cold), NTuple{3, Float64}}","null_value":"(hot = START_COST, warm = START_COST, cold = START_COST)","comment":"start-up cost"},{"name":"shut_down","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"shut-down cost","valid_range":{"max":null,"min":0}}],"docstring":"Data Structure Operational Cost Data which includes fixed, variable cost, multiple start up cost and stop costs.","struct_name":"MultiStartCost","supertype":"OperationalCost"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"peak_active_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"peak_reactive_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"load_response","default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"A collection of buses for control purposes.","struct_name":"Area","supertype":"AggregationTopology"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"peak_active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"peak_reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"A collection of buses for electricity price analysis.","struct_name":"LoadZone","supertype":"AggregationTopology"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"violation_penalty","default":"INFINITE_COST","data_type":"Float64","null_value":"0.0","comment":"Penalty for violating the flow limits in the interface"},{"name":"direction_mapping","default":"Dict{String, Int}()","data_type":"Dict{String, Int}","null_value":"Dict{String, Int}()","comment":"Map to set of multiplier to the flow in the line for cases when the line has a reverse direction with respect to the interface"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"A collection of branches that make up an interface or corridor for the transfer of power.","struct_name":"TransmissionInterface","supertype":"Service"},{"inner_constructor_check":"check_bus_params","fields":[{"name":"number","data_type":"Int","null_value":"0","comment":"number associated with the bus"},{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init","comment":"the name of the bus"},{"name":"bustype","data_type":"Union{Nothing, ACBusTypes}","null_value":"nothing","comment":"bus type"},{"name":"angle","data_type":"Union{Nothing, Float64}","null_value":"0.0","validation_action":"error","comment":"angle of the bus in radians","valid_range":{"max":1.571,"min":-1.571}},{"name":"magnitude","data_type":"Union{Nothing, Float64}","null_value":"0.0","validation_action":"warn","comment":"voltage as a multiple of basevoltage","valid_range":"voltage_limits"},{"name":"voltage_limits","data_type":"Union{Nothing, MinMax}","null_value":"(min=0.0, max=0.0)","comment":"limits on the voltage variation as multiples of basevoltage"},{"name":"base_voltage","data_type":"Union{Nothing, Float64}","null_value":"nothing","validation_action":"error","comment":"the base voltage in kV","valid_range":{"max":null,"min":0}},{"name":"area","default":"nothing","data_type":"Union{Nothing, Area}","null_value":"nothing","comment":"the area containing the bus"},{"name":"load_zone","default":"nothing","data_type":"Union{Nothing, LoadZone}","null_value":"nothing","comment":"the load zone containing the bus"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"A power-system bus.","struct_name":"ACBus","supertype":"Bus"},{"fields":[{"name":"number","data_type":"Int","null_value":"0","comment":"number associated with the DC bus"},{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init","comment":"the name of the DC bus"},{"name":"magnitude","data_type":"Union{Nothing, Float64}","null_value":"0.0","validation_action":"warn","comment":"voltage as a multiple of basevoltage","valid_range":"voltage_limits"},{"name":"voltage_limits","data_type":"Union{Nothing, MinMax}","null_value":"(min=0.0, max=0.0)","comment":"limits on the voltage variation as multiples of basevoltage"},{"name":"base_voltage","data_type":"Union{Nothing, Float64}","null_value":"nothing","validation_action":"error","comment":"the base voltage in kV","valid_range":{"max":null,"min":0}},{"name":"area","default":"nothing","data_type":"Union{Nothing, Area}","null_value":"nothing","comment":"the area containing the DC bus"},{"name":"load_zone","default":"nothing","data_type":"Union{Nothing, LoadZone}","null_value":"nothing","comment":"the load zone containing the DC bus"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"A power-system DC bus.","struct_name":"DCBus","supertype":"Bus"},{"fields":[{"name":"from","data_type":"Bus","null_value":"ACBus(nothing)","comment":"The initial bus"},{"name":"to","data_type":"Bus","null_value":"ACBus(nothing)","comment":"The terminal bus"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"A topological Arc.","struct_name":"Arc","supertype":"Topology","custom_code":"get_name(arc::Arc) = (get_name ∘ get_from)(arc) * \" -> \" * (get_name ∘ get_to)(arc)"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(ACBus(nothing), ACBus(nothing))"},{"name":"r","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":0}},{"name":"x","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":0}},{"name":"b","data_type":"FromTo","null_value":"(from=0.0, to=0.0)","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":100,"min":0}},{"name":"rate","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"angle_limits","data_type":"MinMax","null_value":"(min=-1.571, max=1.571)","validation_action":"error","valid_range":{"max":1.571,"min":-1.571}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"Line","supertype":"ACBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(ACBus(nothing), ACBus(nothing))"},{"name":"r","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":0}},{"name":"x","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":0}},{"name":"b","data_type":"FromTo","null_value":"(from=0.0, to=0.0)","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":2,"min":0}},{"name":"flow_limits","needs_conversion":true,"data_type":"FromTo_ToFrom","null_value":"(from_to=0.0, to_from=0.0)","comment":"throw warning above max SIL"},{"name":"rate","needs_conversion":true,"data_type":"Float64","null_value":"0.0","comment":"compare to SIL (warn) (theoretical limit)"},{"name":"angle_limits","data_type":"MinMax","null_value":"(min=-1.571, max=1.571)","validation_action":"error","valid_range":{"max":1.571,"min":-1.571}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"MonitoredLine","supertype":"ACBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(ACBus(nothing), ACBus(nothing))"},{"name":"r","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":0}},{"name":"x","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":-2}},{"name":"primary_shunt","Comment":"System per-unit value","data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":{"max":2,"min":0}},{"name":"tap","data_type":"Float64","null_value":"1.0","validation_action":"error","valid_range":{"max":2,"min":0}},{"name":"α","data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":{"max":1.571,"min":-1.571}},{"name":"rate","needs_conversion":true,"data_type":"Union{Nothing, Float64}","null_value":"0.0","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"phase_angle_limits","default":"(min=-1.571, max=1.571)","data_type":"MinMax","null_value":"(min=-1.571, max=1.571)","validation_action":"error","valid_range":{"max":1.571,"min":-1.571}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"PhaseShiftingTransformer","supertype":"ACBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(ACBus(nothing), ACBus(nothing))"},{"name":"r","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":2,"min":-2}},{"name":"x","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":-2}},{"name":"primary_shunt","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":2,"min":0}},{"name":"tap","data_type":"Float64","null_value":"1.0","validation_action":"error","valid_range":{"max":2,"min":0}},{"name":"rate","needs_conversion":true,"data_type":"Union{Nothing, Float64}","null_value":"0.0","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"TapTransformer","supertype":"ACBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(ACBus(nothing), ACBus(nothing))"},{"name":"r","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":-2}},{"name":"x","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":4,"min":-2}},{"name":"primary_shunt","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"System per-unit value","valid_range":{"max":2,"min":0}},{"name":"rate","needs_conversion":true,"data_type":"Union{Nothing, Float64}","null_value":"nothing","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"The 2-W transformer model uses an equivalent circuit assuming the impedance is on the High Voltage Side of the transformer. The model allocates the iron losses and magnetizing susceptance to the primary side.","struct_name":"Transformer2W","supertype":"ACBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(ACBus(nothing), ACBus(nothing))"},{"name":"active_power_limits_from","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"active_power_limits_to","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"reactive_power_limits_from","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"reactive_power_limits_to","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"loss","data_type":"NamedTuple{(:l0, :l1), Tuple{Float64, Float64}}","null_value":"(l0=0.0, l1=0.0)"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"a High voltage DC line.","struct_name":"TwoTerminalHVDCLine","supertype":"ACBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(ACBus(nothing), ACBus(nothing))"},{"name":"rectifier_tap_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"rectifier_xrc","data_type":"Float64","null_value":"0.0"},{"name":"rectifier_firing_angle","data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"inverter_tap_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"inverter_xrc","data_type":"Float64","null_value":"0.0"},{"name":"inverter_firing_angle","data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"As implemented in Milano's Book, Page 397.","struct_name":"TwoTerminalVSCDCLine","supertype":"ACBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"active_power_flow","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"arc","data_type":"Arc","null_value":"Arc(DCBus(nothing), DCBus(nothing))"},{"name":"r","data_type":"Float64","null_value":"0.0","comment":"Series Resistance system per-unit value"},{"name":"l","data_type":"Float64","null_value":"0.0","comment":"Series Inductance system per-unit value"},{"name":"c","data_type":"Float64","null_value":"0.0","comment":"Shunt capacitance system per-unit value"},{"name":"active_power_limits_from","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"active_power_limits_to","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"a HVDC T-Model DC line.","struct_name":"TModelHVDCLine","supertype":"DCBranch"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"max_active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"max_reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"operation_cost","data_type":"TwoPartCost","null_value":"TwoPartCost(nothing)","comment":"Operation Cost of Generation [`TwoPartCost`](@ref)"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"InterruptiblePowerLoad","supertype":"ControllableLoad"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"Y","data_type":"Complex{Float64}","null_value":"0.0","comment":"System per-unit value"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection model for admittance"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"FixedAdmittance","supertype":"ElectricLoad"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"Y","data_type":"Complex{Float64}","null_value":"0.0","comment":"Initial impedance at N = 0"},{"name":"number_of_steps","default":"0","data_type":"Int","null_value":"0","comment":"Number of steps for adjustable shunt"},{"name":"Y_increase","default":"0","data_type":"Complex{Float64}","null_value":"0","comment":"Admittance increment for each of step increase"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection model for admittance"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"SwitchedAdmittance","supertype":"ElectricLoad"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"max_active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"max_reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data structure for a static power load.","struct_name":"PowerLoad","supertype":"StaticLoad"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"constant_active_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"constant_reactive_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"impedance_active_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"impedance_reactive_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"current_active_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"current_reactive_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"max_constant_active_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"max_constant_reactive_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"max_impedance_active_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"max_impedance_reactive_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"max_current_active_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"max_current_reactive_power","needs_conversion":true,"default":"0.0","data_type":"Float64","null_value":"0.0"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data structure for a standard load.","struct_name":"StandardLoad","supertype":"StaticLoad"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"active_power_coefficient","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Coefficient relating voltage dependence for power P = P0 * V^α","valid_range":{"max":null,"min":0}},{"name":"reactive_power_coefficient","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Coefficient relating voltage dependence for power Q = Q0 * V^β","valid_range":{"max":null,"min":0}},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"max_active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"max_reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data structure for a static exponential load.","struct_name":"ExponentialLoad","supertype":"StaticLoad"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"R_s","data_type":"Float64","null_value":0,"comment":"Armature stator resistance","valid_range":{"max":null,"min":0}},{"name":"R_r","data_type":"Float64","null_value":0,"comment":"Rotor resistance","valid_range":{"max":null,"min":0}},{"name":"X_ls","data_type":"Float64","null_value":0,"comment":"Stator Leakage Reactance","valid_range":{"max":null,"min":0}},{"name":"X_lr","data_type":"Float64","null_value":0,"comment":"Rotor Leakage Reactance","valid_range":{"max":null,"min":0}},{"name":"X_m","data_type":"Float64","null_value":0,"comment":"Stator-Rotor Mutual Reactance","valid_range":{"max":null,"min":0}},{"name":"H","data_type":"Float64","null_value":0,"comment":"Motor Inertia Constant [s]","valid_range":{"max":null,"min":0}},{"name":"A","data_type":"Float64","null_value":"0.0","comment":"Torque-Speed Quadratic Term","valid_range":{"max":1,"min":0}},{"name":"B","data_type":"Float64","null_value":"0.0","comment":"Torque-Speed Linear Term","valid_range":{"max":1,"min":0}},{"name":"base_power","data_type":"Float64","null_value":0,"comment":"Base power","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"C","data_type":"Float64","comment":"Torque-Speed Constant Term","internal_default":"PowerSystems.calculate_IM_torque_params(A, B)"},{"name":"τ_ref","data_type":"Float64","comment":"Reference torque parameter","internal_default":"1.0"},{"name":"B_shunt","data_type":"Float64","comment":"Susceptance Initialization Corrector Term","internal_default":"0.0"},{"name":"X_ad","data_type":"Float64","comment":"Equivalent d-axis reactance","internal_default":"(1.0 / X_m + 1.0 / X_ls + 1.0 / X_lr)^(-1)"},{"name":"X_aq","data_type":"Float64","comment":"Equivalent q-axis reactance","internal_default":"X_ad"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tψ_qs: stator flux in the q-axis,\n\tψ_ds: stator flux in the d-axis,\n\tψ_qr: rotor flux in the q-axis,\n\tψ_dr: rotor flux in the d-axis, \n\tωr: Rotor speed [pu],","internal_default":"[:ψ_qs, :ψ_ds, :ψ_qr, :ψ_dr, :ωr]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SingleCageInductionMachine has 5 states","internal_default":5},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 5-states three-phase single cage induction machine with quadratic torque-speed relationship.","struct_name":"SingleCageInductionMachine","supertype":"DynamicInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"R_s","data_type":"Float64","null_value":0,"comment":"Armature stator resistance","valid_range":{"max":null,"min":0}},{"name":"R_r","data_type":"Float64","null_value":0,"comment":"Rotor resistance","valid_range":{"max":null,"min":0}},{"name":"X_ls","data_type":"Float64","null_value":0,"comment":"Stator Leakage Reactance","valid_range":{"max":null,"min":0}},{"name":"X_lr","data_type":"Float64","null_value":0,"comment":"Rotor Leakage Reactance","valid_range":{"max":null,"min":0}},{"name":"X_m","data_type":"Float64","null_value":0,"comment":"Stator-Rotor Mutual Reactance","valid_range":{"max":null,"min":0}},{"name":"H","data_type":"Float64","null_value":0,"comment":"Motor Inertia Constant [s]","valid_range":{"max":null,"min":0}},{"name":"A","data_type":"Float64","null_value":"0.0","comment":"Torque-Speed Quadratic Term","valid_range":{"max":1,"min":0}},{"name":"B","data_type":"Float64","null_value":"0.0","comment":"Torque-Speed Linear Term","valid_range":{"max":1,"min":0}},{"name":"base_power","data_type":"Float64","null_value":0,"comment":"Base power","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"C","data_type":"Float64","comment":"Torque-Speed Constant Term","internal_default":"PowerSystems.calculate_IM_torque_params(A, B)"},{"name":"τ_ref","data_type":"Float64","comment":"Reference torque parameter","internal_default":"1.0"},{"name":"B_shunt","data_type":"Float64","comment":"Susceptance Initialization Corrector Term","internal_default":"0.0"},{"name":"X_ss","data_type":"Float64","comment":"Stator self reactance","internal_default":"X_ls + X_m"},{"name":"X_rr","data_type":"Float64","comment":"Rotor self reactance","internal_default":"X_lr + X_m"},{"name":"X_p","data_type":"Float64","comment":"Transient reactance","internal_default":"X_ss - X_m^2 / X_rr"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tψ_qr: rotor flux in the q-axis,\n\tψ_dr: rotor flux in the d-axis, \n\tωr: Rotor speed [pu],","internal_default":"[:ψ_qr, :ψ_dr, :ωr]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SimplifiedSingleCageInductionMachine has 3 states","internal_default":3},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 3-states three-phase single cage induction machine with quadratic torque-speed relationship.","struct_name":"SimplifiedSingleCageInductionMachine","supertype":"DynamicInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"a","data_type":"Float64","null_value":0,"comment":"Active power static exponential coefficient","valid_range":{"max":null,"min":0}},{"name":"b","data_type":"Float64","null_value":0,"comment":"Reactive power static exponential coefficient","valid_range":{"max":null,"min":0}},{"name":"α","data_type":"Float64","null_value":0,"comment":"Active power transient exponential coefficient","valid_range":{"max":null,"min":0}},{"name":"β","data_type":"Float64","null_value":0,"comment":"Reactive power transient exponential coefficient","valid_range":{"max":null,"min":0}},{"name":"T_p","data_type":"Float64","null_value":0,"comment":"Active Power Time Constant","valid_range":{"max":null,"min":0}},{"name":"T_q","data_type":"Float64","null_value":0,"comment":"Reactive Power Time Constant","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"base_power","data_type":"Float64","comment":"Base Power","internal_default":"100.0"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tx_p: Integrator state of the active power,\n\tx_q: Integrator state of the reactive power,","internal_default":"[:x_p, :x_q]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"DynamicExponentialLoad has 2 states","internal_default":2},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 2-states of a generic dynamic load model based on VOLTAGE STABILITY ANALYSIS USING GENERIC DYNAMIC LOAD MODELS by W. Xu and Y. Mansour, IEEE Transactions on Power Systems, 1994.","struct_name":"DynamicExponentialLoad","supertype":"DynamicInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"r_load","data_type":"Float64","null_value":0,"comment":"DC-side resistor","valid_range":{"max":null,"min":0}},{"name":"c_dc","data_type":"Float64","null_value":0,"comment":"DC-side capacitor","valid_range":{"max":null,"min":0}},{"name":"rf","data_type":"Float64","null_value":0,"comment":"Converter side filter resistance","valid_range":{"max":null,"min":0}},{"name":"lf","data_type":"Float64","null_value":0,"comment":"Converter side filter inductance","valid_range":{"max":null,"min":0}},{"name":"cf","data_type":"Float64","null_value":0,"comment":"AC Converter filter capacitance","valid_range":{"max":null,"min":0}},{"name":"rg","data_type":"Float64","null_value":0,"comment":"Network side filter resistance","valid_range":{"max":null,"min":0}},{"name":"lg","data_type":"Float64","null_value":0,"comment":"Network side filter inductance","valid_range":{"max":null,"min":0}},{"name":"kp_pll","data_type":"Float64","null_value":0,"comment":"Proportional constant for PI-PLL block","valid_range":{"max":null,"min":0}},{"name":"ki_pll","data_type":"Float64","null_value":0,"comment":"Integral constant for PI-PLL block","valid_range":{"max":null,"min":0}},{"name":"kpv","data_type":"Float64","null_value":0,"comment":"Proportional constant for Voltage Control block","valid_range":{"max":null,"min":0}},{"name":"kiv","data_type":"Float64","null_value":0,"comment":"Integral constant for Voltage Control block","valid_range":{"max":null,"min":0}},{"name":"kpc","data_type":"Float64","null_value":0,"comment":"Proportional constant for Current Control block","valid_range":{"max":null,"min":0}},{"name":"kic","data_type":"Float64","null_value":0,"comment":"Integral constant for Current Control block","valid_range":{"max":null,"min":0}},{"name":"base_power","data_type":"Float64","null_value":0,"comment":"Base power","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"P_ref","data_type":"Float64","comment":"Reference active power parameter","internal_default":"1.0"},{"name":"Q_ref","data_type":"Float64","comment":"Reference reactive power parameter","internal_default":"1.0"},{"name":"V_ref","data_type":"Float64","comment":"Reference voltage parameter","internal_default":"1.0"},{"name":"ω_ref","data_type":"Float64","comment":"Reference frequency parameter","internal_default":"1.0"},{"name":"is_filter_differential","data_type":"Int","comment":"Boolean to decide if filter states are differential or algebraic","internal_default":"1"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tθ_pll: PLL deviation angle, \n\tϵ_pll: PLL integrator state, \n\tη: DC-voltage controller integrator state, \n\tv_dc: DC voltage at the capacitor, \n\tγd: d-axis Current controller integrator state, \n\tγq: q-axis Current controller integrator state, \n\tir_cnv: Real current out of the converter,\n\tii_cnv: Imaginary current out of the converter,\n\tvr_filter: Real voltage at the filter's capacitor,\n\tvi_filter: Imaginary voltage at the filter's capacitor,\n\tir_filter: Real current out of the filter,\n\tii_filter: Imaginary current out of the filter","internal_default":"[:θ_pll, :ϵ_pll, :η, :v_dc, :γd, :γq, :ir_cnv, :ii_cnv, :vr_filter, :vi_filter, :ir_filter, :ii_filter]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ActiveConstantPowerLoad has 12 states","internal_default":12},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 12-states active power load based on the paper Dynamic Stability of a Microgrid With an Active Load from N. Bottrell, M. Prodanovic and T. Green in IEEE Transactions on Power Electronics, 2013.","struct_name":"ActiveConstantPowerLoad","supertype":"DynamicInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"dc_bus","data_type":"DCBus","null_value":"DCBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Active Power on the DCSide","valid_range":"active_power_limits"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the converter. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the converter in MVA","valid_range":{"max":null,"min":0}},{"name":"operation_cost","default":"TwoPartCost(0.0, 0.0)","data_type":"OperationalCost","null_value":"TwoPartCost(nothing)","comment":"Operation Cost of Generation [`OperationalCost`](@ref)"},{"name":"efficiency","default":"1.0","data_type":"Float64","null_value":"0.0","comment":"Conversion efficiency from AC Power to DC Power"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Interconnecting Power Converter (IPC) for transforming power from an ACBus to a DCBus","struct_name":"InterconnectingConverter","supertype":"StaticInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"K","data_type":"Float64","null_value":0,"comment":"Gain in pu","valid_range":{"max":null,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"comment":"Time constant in s","valid_range":{"max":null,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"comment":"Time constant in s","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"comment":"Time constant in s","valid_range":{"max":null,"min":"eps()"}},{"name":"T4","data_type":"Float64","null_value":0,"comment":"Time constant in s","valid_range":{"max":null,"min":0}},{"name":"T5","data_type":"Float64","null_value":0,"comment":"Time constant in s","valid_range":{"max":null,"min":0}},{"name":"Rmin","data_type":"Float64","null_value":0,"comment":"Reactor minimum Mvar","valid_range":{"max":null,"min":0}},{"name":"Vmax","data_type":"Float64","null_value":0,"comment":"Maximum voltage in pu","valid_range":{"max":null,"min":0}},{"name":"Vmin","data_type":"Float64","null_value":0,"comment":"Minimum voltage in pu","valid_range":{"max":null,"min":0}},{"name":"CBase","data_type":"Float64","null_value":0,"comment":"Capacitor Mvar","valid_range":{"max":null,"min":0}},{"name":"base_power","data_type":"Float64","null_value":0,"comment":"Base power","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"R_th","data_type":"Float64","comment":"Source Thevenin resistance","internal_default":"0.0"},{"name":"X_th","data_type":"Float64","comment":"Source Thevenin reactance","internal_default":"0.0"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tthy: thyristor,\n\tvr1: regulator output 1,\n\tvr2: regulator output 2","internal_default":"[:thy, :vr1, :vr2]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"CSVGN1 has 3 states","internal_default":3},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of static shunt compensator: CSVGN1 in PSSE","struct_name":"CSVGN1","supertype":"DynamicInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"reactive_power_limits"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the unit. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.HY","comment":"Prime mover technology according to EIA 923"},{"name":"active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"nothing","validation_action":"warn"},{"name":"ramp_limits","needs_conversion":true,"data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"ramp up and ramp down limits in MW (in component base per unit) per minute","valid_range":{"max":null,"min":0}},{"name":"time_limits","data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"Minimum up and Minimum down time limits in hours","valid_range":{"max":null,"min":0}},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"storage_capacity","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Maximum storage capacity in the reservoir (units can be p.u-hr or m^3).","valid_range":{"max":null,"min":0}},{"name":"inflow","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Baseline inflow into the reservoir (units can be p.u. or m^3/hr)","valid_range":{"max":null,"min":0}},{"name":"initial_storage","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Initial storage capacity in the reservoir (units can be p.u-hr or m^3).","valid_range":{"max":null,"min":0}},{"name":"operation_cost","default":"TwoPartCost(0.0, 0.0)","data_type":"OperationalCost","null_value":"TwoPartCost(nothing)","comment":"Operation Cost of Generation [`OperationalCost`](@ref)"},{"name":"storage_target","default":"1.0","data_type":"Float64","null_value":"0.0","comment":"Storage target at the end of simulation as ratio of storage capacity."},{"name":"conversion_factor","default":"1.0","data_type":"Float64","null_value":"0.0","comment":"Conversion factor from flow/volume to energy: m^3 -> p.u-hr."},{"name":"time_at_status","default":"INFINITE_TIME","data_type":"Float64","null_value":"INFINITE_TIME"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"HydroEnergyReservoir","supertype":"HydroGen"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"reactive_power_limits"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the unit. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.HY","comment":"Prime mover technology according to EIA 923"},{"name":"active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"warn","valid_range":{"max":null,"min":0}},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"nothing","validation_action":"warn"},{"name":"ramp_limits","needs_conversion":true,"data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"ramp up and ramp down limits in MW (in component base per unit) per minute","valid_range":{"max":null,"min":0}},{"name":"time_limits","data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"Minimum up and Minimum down time limits in hours","valid_range":{"max":null,"min":0}},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"operation_cost","default":"TwoPartCost(0.0, 0.0)","data_type":"OperationalCost","null_value":"TwoPartCost(nothing)","comment":"Operation Cost of Generation [`OperationalCost`](@ref)"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"HydroDispatch","supertype":"HydroGen"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the unit. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.HY","comment":"Prime mover technology according to EIA 923"},{"name":"active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"warn","valid_range":{"max":null,"min":0}},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"nothing","validation_action":"warn"},{"name":"ramp_limits","needs_conversion":true,"data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"ramp up and ramp down limits in MW (in component base per unit) per minute","valid_range":{"max":null,"min":0}},{"name":"time_limits","data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"Minimum up and Minimum down time limits in hours","valid_range":{"max":null,"min":0}},{"name":"rating_pump","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Withdrawl of the pump. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"active_power_limits_pump","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"reactive_power_limits_pump","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"nothing","validation_action":"warn"},{"name":"ramp_limits_pump","needs_conversion":true,"data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"ramp up and ramp down limits in MW (in component base per unit) per minute of pump","valid_range":{"max":null,"min":0}},{"name":"time_limits_pump","data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"Minimum up and Minimum down time limits of pump in hours","valid_range":{"max":null,"min":0}},{"name":"storage_capacity","needs_conversion":true,"data_type":"UpDown","null_value":"(up=0.0, down=0.0)","validation_action":"error","comment":"Maximum storage capacity in the upper and lower reservoirs (units can be p.u-hr or m^3).","valid_range":{"max":null,"min":0}},{"name":"inflow","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Baseline inflow into the upper reservoir (units can be p.u. or m^3/hr)","valid_range":{"max":null,"min":0}},{"name":"outflow","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Baseline outflow from the lower reservoir (units can be p.u. or m^3/hr)","valid_range":{"max":null,"min":0}},{"name":"initial_storage","needs_conversion":true,"data_type":"UpDown","null_value":"(up=0.0, down=0.0)","validation_action":"error","comment":"Initial storage capacity in the upper and lower reservoir (units can be p.u-hr or m^3).","valid_range":{"max":null,"min":0}},{"name":"storage_target","default":"(up=1.0, down=1.0)","data_type":"UpDown","null_value":"(up=0.0, down=0.0)","comment":"Storage target of upper reservoir at the end of simulation as ratio of storage capacity."},{"name":"operation_cost","default":"TwoPartCost(0.0, 0.0)","data_type":"OperationalCost","null_value":"TwoPartCost(nothing)","comment":"Operation Cost of Generation [`OperationalCost`](@ref)"},{"name":"pump_efficiency","default":"1.0","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Efficiency of pump","valid_range":{"max":1,"min":0}},{"name":"conversion_factor","default":"1.0","data_type":"Float64","null_value":"0.0","comment":"Conversion factor from flow/volume to energy: m^3 -> p.u-hr."},{"name":"time_at_status","default":"INFINITE_TIME","data_type":"Float64","null_value":"INFINITE_TIME"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"HydroPumpedStorage","supertype":"HydroGen"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the unit. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.OT","comment":"Prime mover technology according to EIA 923"},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"nothing"},{"name":"power_factor","data_type":"Float64","null_value":"1.0","validation_action":"error","valid_range":{"max":1,"min":0}},{"name":"operation_cost","data_type":"TwoPartCost","null_value":"TwoPartCost(nothing)","comment":"Operation Cost of Generation [`TwoPartCost`](@ref)"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"RenewableDispatch","supertype":"RenewableGen"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the unit. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.OT","comment":"Prime mover technology according to EIA 923"},{"name":"power_factor","data_type":"Float64","null_value":"1.0","validation_action":"error","valid_range":{"max":1,"min":0}},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for fixed renewable generation technologies.","struct_name":"RenewableFix","supertype":"RenewableGen"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"status","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"active_power_limits"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"reactive_power_limits"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the unit. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"warn","valid_range":{"max":null,"min":0}},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"nothing"},{"name":"ramp_limits","needs_conversion":true,"data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"ramp up and ramp down limits in MW (in component base per unit) per minute","valid_range":{"max":null,"min":0}},{"name":"operation_cost","data_type":"OperationalCost","null_value":"ThreePartCost(nothing)"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"time_limits","default":"nothing","data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"Minimum up and Minimum down time limits in hours","valid_range":{"max":null,"min":0}},{"name":"must_run","default":"false","data_type":"Bool","null_value":"false"},{"name":"prime_mover_type","default":"PrimeMovers.OT","data_type":"PrimeMovers","null_value":"PrimeMovers.OT","comment":"Prime mover technology according to EIA 923"},{"name":"fuel","default":"ThermalFuels.OTHER","data_type":"ThermalFuels","null_value":"ThermalFuels.OTHER","comment":"Prime mover fuel according to EIA 923"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"time_at_status","default":"INFINITE_TIME","data_type":"Float64","null_value":"INFINITE_TIME"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for thermal generation technologies.","struct_name":"ThermalStandard","supertype":"ThermalGen"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"status","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"active_power_limits"},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"reactive_power_limits"},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Thermal limited MVA Power Output of the unit. <= Capacity","valid_range":{"max":null,"min":0}},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.OT","comment":"Prime mover technology according to EIA 923"},{"name":"fuel","data_type":"ThermalFuels","null_value":"ThermalFuels.OTHER","comment":"Prime mover fuel according to EIA 923"},{"name":"active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)"},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"nothing"},{"name":"ramp_limits","needs_conversion":true,"data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"power_trajectory","needs_conversion":true,"data_type":"Union{Nothing, StartUpShutDown}","null_value":"nothing","validation_action":"error","comment":"Power trajectory the unit will take during the start-up and shut-down ramp process","valid_range":{"max":null,"min":0}},{"name":"time_limits","data_type":"Union{Nothing, UpDown}","null_value":"nothing","validation_action":"error","comment":"Minimum up and Minimum down time limits in hours","valid_range":{"max":null,"min":0}},{"name":"start_time_limits","data_type":"Union{Nothing, NamedTuple{(:hot, :warm, :cold), Tuple{Float64, Float64, Float64}}}","null_value":"nothing","comment":" Time limits for start-up based on turbine temperature in hours"},{"name":"start_types","data_type":"Int","null_value":"1","validation_action":"error","comment":" Number of start-up based on turbine temperature","valid_range":{"max":3,"min":1}},{"name":"operation_cost","data_type":"OperationalCost","null_value":"MultiStartCost(nothing)"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"time_at_status","default":"INFINITE_TIME","data_type":"Float64","null_value":"INFINITE_TIME"},{"name":"must_run","default":"false","data_type":"Bool","null_value":"false"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for thermal generation technologies.","struct_name":"ThermalMultiStart","supertype":"ThermalGen"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.BA","comment":"Prime mover technology according to EIA 923"},{"name":"initial_energy","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"State of Charge of the Battery p.u.-hr","valid_range":{"max":null,"min":0}},{"name":"state_of_charge_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"error","comment":"Maximum and Minimum storage capacity in p.u.-hr","valid_range":{"max":null,"min":0}},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"input_active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"output_active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"efficiency","data_type":"NamedTuple{(:in, :out), Tuple{Float64, Float64}}","null_value":"(in=0.0, out=0.0)","validation_action":"warn","valid_range":{"max":1,"min":0}},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"reactive_power_limits"},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"(min=0.0, max=0.0)"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"operation_cost","default":"StorageManagementCost()","data_type":"Union{StorageManagementCost, MarketBidCost}","null_value":"StorageManagementCost()"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data structure for a generic battery","struct_name":"GenericBattery","supertype":"Storage"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"prime_mover_type","data_type":"PrimeMovers","null_value":"PrimeMovers.BA","comment":"Prime mover technology according to EIA 923"},{"name":"initial_energy","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"State of Charge of the Battery p.u.-hr","valid_range":{"max":null,"min":0}},{"name":"state_of_charge_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"error","comment":"Maximum and Minimum storage capacity in p.u.-hr","valid_range":{"max":null,"min":0}},{"name":"rating","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"active_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0"},{"name":"input_active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"output_active_power_limits","needs_conversion":true,"data_type":"MinMax","null_value":"(min=0.0, max=0.0)","validation_action":"error","valid_range":{"max":null,"min":0}},{"name":"efficiency","data_type":"NamedTuple{(:in, :out), Tuple{Float64, Float64}}","null_value":"(in=0.0, out=0.0)","validation_action":"warn","valid_range":{"max":1,"min":0}},{"name":"reactive_power","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"warn","valid_range":"reactive_power_limits"},{"name":"reactive_power_limits","needs_conversion":true,"data_type":"Union{Nothing, MinMax}","null_value":"(min=0.0, max=0.0)"},{"name":"base_power","data_type":"Float64","null_value":"0.0","validation_action":"warn","comment":"Base power of the unit in MVA","valid_range":{"max":null,"min":0}},{"name":"operation_cost","default":"Union{StorageManagementCost, MarketBidCost}","data_type":"StorageManagementCost","null_value":"StorageManagementCost()"},{"name":"storage_target","default":"0.0","data_type":"Float64","null_value":"0.0","comment":"Storage target at the end of simulation as ratio of storage capacity."},{"name":"cycle_limits","default":"1e4","data_type":"Int","null_value":"0","comment":"Storage Maximum number of cycles per year"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data structure for a battery compatible with energy management formulations.","struct_name":"BatteryEMS","supertype":"Storage"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"time_frame","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the saturation time_frame in minutes to provide reserve contribution","valid_range":{"max":null,"min":0}},{"name":"requirement","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the static value of required reserves in system p.u.","valid_range":{"max":null,"min":0}},{"name":"sustained_time","default":"3600.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the time in secounds reserve contribution must sustained at a specified level","valid_range":{"max":null,"min":0}},{"name":"max_output_fraction","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum fraction of the device's output that can be assigned to the service","valid_range":{"max":1,"min":0}},{"name":"max_participation_factor","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum limit of reserve contribution per device","valid_range":{"max":1,"min":0}},{"name":"deployed_fraction","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Fraction of ancillary services participation deployed from the assignment","valid_range":{"max":1,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for a proportional reserve product for system simulations.","parametric":"ReserveDirection","struct_name":"StaticReserve","supertype":"Reserve{T}"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"time_frame","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the saturation time_frame in minutes to provide reserve contribution","valid_range":{"max":null,"min":0}},{"name":"requirement","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the static value of required reserves in system p.u.","valid_range":{"max":null,"min":0}},{"name":"sustained_time","default":"3600.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the time in secounds reserve contribution must sustained at a specified level","valid_range":{"max":null,"min":0}},{"name":"max_output_fraction","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum fraction of the device's output that can be assigned to the service","valid_range":{"max":1,"min":0}},{"name":"max_participation_factor","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum limit of reserve contribution per device","valid_range":{"max":1,"min":0}},{"name":"deployed_fraction","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Fraction of ancillary services participation deployed from the assignment","valid_range":{"max":1,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for a non-spinning reserve product for system simulations.","struct_name":"StaticReserveNonSpinning","supertype":"ReserveNonSpinning"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"requirement","needs_conversion":true,"data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the static value of required reserves in system p.u.","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"contributing_services","default":"Vector{Service}()","data_type":"Vector{Service}","exclude_setter":true,"null_value":"Vector{Service}()","comment":"Services that contribute for this requirement constraint"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for a group reserve product for system simulations.","parametric":"ReserveDirection","struct_name":"StaticReserveGroup","supertype":"Service"},{"fields":[{"name":"variable","data_type":"Union{Nothing, IS.TimeSeriesKey}","null_value":"nothing","comment":"Variable Cost TimeSeriesKey"},{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"time_frame","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the saturation time_frame in minutes to provide reserve contribution","valid_range":{"max":null,"min":0}},{"name":"sustained_time","default":"3600.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the time in secounds reserve contribution must sustained at a specified level","valid_range":{"max":null,"min":0}},{"name":"max_participation_factor","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum limit of reserve contribution per device","valid_range":{"max":1,"min":0}},{"name":"deployed_fraction","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Fraction of ancillary services participation deployed from the assignment","valid_range":{"max":1,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for a operating reserve with demand curve product for system simulations.","parametric":"ReserveDirection","struct_name":"ReserveDemandCurve","supertype":"Reserve{T}"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"time_frame","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the saturation time_frame in minutes to provide reserve contribution","valid_range":{"max":null,"min":0}},{"name":"requirement","data_type":"Float64","null_value":"0.0","comment":"the required quantity of the product should be scaled by a TimeSeriesData"},{"name":"sustained_time","default":"3600.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the time in secounds reserve contribution must sustained at a specified level","valid_range":{"max":null,"min":0}},{"name":"max_output_fraction","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum fraction of the device's output that can be assigned to the service","valid_range":{"max":1,"min":0}},{"name":"max_participation_factor","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum limit of reserve contribution per device","valid_range":{"max":1,"min":0}},{"name":"deployed_fraction","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Fraction of ancillary services participation deployed from the assignment","valid_range":{"max":1,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for the procurement products for system simulations.","parametric":"ReserveDirection","struct_name":"VariableReserve","supertype":"Reserve{T}"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"time_frame","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the saturation time_frame in minutes to provide reserve contribution","valid_range":{"max":null,"min":0}},{"name":"requirement","needs_conversion":true,"data_type":"Float64","null_value":"0.0","comment":"the required quantity of the product should be scaled by a TimeSeriesData"},{"name":"sustained_time","default":"14400.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"the time in secounds reserve contribution must sustained at a specified level","valid_range":{"max":null,"min":0}},{"name":"max_output_fraction","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum fraction of the device's output that can be assigned to the service","valid_range":{"max":1,"min":0}},{"name":"max_participation_factor","default":"1.0","data_type":"Float64","null_value":"1.0","validation_action":"error","comment":"the maximum limit of reserve contribution per device","valid_range":{"max":1,"min":0}},{"name":"deployed_fraction","default":"0.0","data_type":"Float64","null_value":"0.0","validation_action":"error","comment":"Fraction of ancillary services participation deployed from the assignment","valid_range":{"max":1,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Data Structure for the procurement products for system simulations.","struct_name":"VariableReserveNonSpinning","supertype":"ReserveNonSpinning"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bias","data_type":"Float64","null_value":"0.0"},{"name":"K_p","data_type":"Float64","null_value":"0.0","comment":"PID Proportional Constant"},{"name":"K_i","data_type":"Float64","null_value":"0.0","comment":"PID Integral Constant"},{"name":"K_d","data_type":"Float64","null_value":"0.0","comment":"PID Derrivative Constant"},{"name":"delta_t","data_type":"Float64","null_value":"0.0","comment":"PID Discretization period [Seconds]"},{"name":"area","default":"nothing","data_type":"Union{Nothing, Area}","null_value":"Area(nothing)","comment":"the area controlled by the AGC"},{"name":"initial_ace","default":"0.0","data_type":"Float64","null_value":"0.0","comment":"PID Discretization period [Seconds]"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"AGC","supertype":"Service"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"requirement","data_type":"Float64","null_value":"0.0"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"time_series_container","default":"InfrastructureSystems.TimeSeriesContainer()","data_type":"InfrastructureSystems.TimeSeriesContainer","null_value":"InfrastructureSystems.TimeSeriesContainer()","comment":"internal time_series storage"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"struct_name":"Transfer","supertype":"Service"},{"fields":[{"name":"Vf","data_type":"Float64","null_value":0,"comment":"Fixed voltage field applied to the rotor winding","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"Fixed AVR has no states","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"null_value":0,"comment":"Fixed AVR has no states","internal_default":0},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"Fixed AVR has no states","internal_default":"Vector{StateTypes}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a AVR that returns a fixed voltage to the rotor winding","struct_name":"AVRFixed","supertype":"AVR"},{"fields":[{"name":"Kv","data_type":"Float64","null_value":0,"comment":"Proportional Gain","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVf: field voltage","internal_default":"[:Vf]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"Fixed AVR has 1 states","internal_default":1},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"Simple AVR has 1 differential states","internal_default":"[StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a simple proportional AVR in the derivative of EMF\ni.e. an integrator controller on EMF","struct_name":"AVRSimple","supertype":"AVR"},{"fields":[{"name":"Ta_Tb","data_type":"Float64","null_value":0,"comment":"Ratio of lead and lag time constants","valid_range":{"max":null,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"comment":"Lag time constant","valid_range":{"max":null,"min":"eps()"}},{"name":"K","data_type":"Float64","null_value":0,"comment":"Gain","valid_range":{"max":null,"min":0}},{"name":"Te","data_type":"Float64","null_value":0,"comment":"Field circuit time constant in s","valid_range":{"max":null,"min":0}},{"name":"V_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Field voltage limits"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\tVf: Voltage field,\tVr: Lead-lag state","internal_default":"[:Vf, :Vr]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SEXS has 2 states","internal_default":2},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"SEXS has 2 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of Simplified Excitation System Model - SEXS in PSSE","struct_name":"SEXS","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage Measurement Time Constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Gain","valid_range":{"max":500,"min":10}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Time Constant in s","valid_range":{"max":1,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage regulator limits (regulator output) (Vi_min, Vi_max)"},{"name":"Ke","data_type":"Float64","null_value":0,"comment":"Exciter constant related to self-excited field","valid_range":{"max":null,"min":0}},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter time constant, integration rate associated with exciter control","valid_range":{"max":1,"min":"eps()"}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Excitation control system stabilizer gain","valid_range":{"max":0.3,"min":"eps()"}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Excitation control system stabilizer time constant","valid_range":{"max":null,"min":"eps()"}},{"name":"switch","data_type":"Int","null_value":0,"validation_action":"error","comment":"Switch","valid_range":{"max":1,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(V) = B(V - A)^2/V"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVt: Terminal Voltage,\n\tVr1: input lead lag,\n\tVr2: Regulator Output,\n\tVf: Exciter Output, \n\tVr3: Rate feedback integrator","internal_default":"[:Vt, :Vr1, :Vr2, :Vf, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The ESDC1A has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"ESDC1A has 5 differential states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Self-excited shunt fields with the voltage regulator operating in a mode commonly termed buck-boost. \nParameters of IEEE Std 421.5 Type DC1A Excitacion System. This model corresponds to ESDC1A in PSSE and PSLF","struct_name":"ESDC1A","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage Measurement Time Constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Gain","valid_range":{"max":500,"min":10}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Time Constant in s","valid_range":{"max":1,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage regulator limits (regulator output) (Vi_min, Vi_max)"},{"name":"Ke","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter constant related to self-excited field","valid_range":{"max":1,"min":-1}},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter time constant, integration rate associated with exciter control","valid_range":{"max":2,"min":"eps()"}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Excitation control system stabilizer gain","valid_range":{"max":0.3,"min":0}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Excitation control system stabilizer time constant. Appropiate Data: 5.0 <= Tf/Kf <= 15.0","valid_range":{"max":1.5,"min":"eps()"}},{"name":"switch","data_type":"Int","null_value":0,"validation_action":"error","comment":"Switch","valid_range":{"max":1,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(V) = B(V - A)^2/V"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVt: Terminal Voltage,\n\tVr1: input lead lag,\n\tVr2: Regulator Output,\n\tVf: Exciter Output, \n\tVr3: Rate feedback integrator","internal_default":"[:Vt, :Vr1, :Vr2, :Vf, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The ESDC2A has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"ESDC2A has 5 differential states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Is used to represent field-controlled dc commutator exciters with continuously acting voltage regulators having power supplies derived from the generator or auxiliaries bus.\nParameters of IEEE Std 421.5 Type DC2A Excitacion System. This model corresponds to ESDC2A in PSSE and PSLF","struct_name":"ESDC2A","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage Measurement Time Constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Gain","valid_range":{"max":500,"min":10}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Time Constant in s","valid_range":{"max":1,"min":0}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage regulator limits (regulator output) (Vi_min, Vi_max)"},{"name":"Ke","data_type":"Float64","null_value":0,"comment":"Exciter constant related to self-excited field","valid_range":{"max":1,"min":-1}},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter time constant, integration rate associated with exciter control","valid_range":{"max":1,"min":"eps()"}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Excitation control system stabilizer gain","valid_range":{"max":0.3,"min":"eps()"}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Excitation control system stabilizer time constant. Appropiate Data: 5 <= Tf/Kf <= 15","valid_range":{"max":null,"min":"eps()"}},{"name":"switch","data_type":"Int","null_value":0,"validation_action":"error","comment":"Switch","valid_range":{"max":1,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(V) = B(V - A)^2/V"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVt: Terminal Voltage,\n\tVr: Regulator Output,\n\tVf: Exciter Output, \n\tVr3: Rate feedback integrator","internal_default":"[:Vt, :Vr1, :Vf, :Vr2]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The IEEET1 has 4 states","internal_default":4},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"IEEET1 I has 4 differential states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"1968 IEEE type 1 excitation system model","struct_name":"IEEET1","supertype":"AVR"},{"fields":[{"name":"Ka","data_type":"Float64","null_value":0,"comment":"Amplifier Gain","valid_range":{"max":null,"min":0}},{"name":"Ke","data_type":"Float64","null_value":0,"comment":"Field circuit integral deviation","valid_range":{"max":null,"min":0}},{"name":"Kf","data_type":"Float64","null_value":0,"comment":"Stabilizer Gain in s * pu/pu","valid_range":{"max":null,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"comment":"Amplifier Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Te","data_type":"Float64","null_value":0,"comment":"Field Circuit Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Tf","data_type":"Float64","null_value":0,"comment":"Stabilizer Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Tr","data_type":"Float64","null_value":0,"comment":"Voltage Measurement Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for pi controler `(Va_min, Va_max)`"},{"name":"Ae","data_type":"Float64","null_value":0,"comment":"1st ceiling coefficient","valid_range":{"max":null,"min":0}},{"name":"Be","data_type":"Float64","null_value":0,"comment":"2nd ceiling coefficient","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVf: Voltage field,\n\tVr1: Amplifier State,\n\tVr2: Stabilizing Feedback State,\n\tVm: Measured voltage","internal_default":"[:Vf, :Vr1, :Vr2, :Vm]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The AVR Type I has 4 states","internal_default":4},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"AVR Type I has 4 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of an Automatic Voltage Regulator Type I - Resembles IEEE Type DC1","struct_name":"AVRTypeI","supertype":"AVR"},{"fields":[{"name":"K0","data_type":"Float64","null_value":0,"comment":"Regulator Gain","valid_range":{"max":null,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"comment":"First Pole in s","valid_range":{"max":null,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"comment":"First zero in s","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"comment":"First Pole in s","valid_range":{"max":null,"min":0}},{"name":"T4","data_type":"Float64","null_value":0,"comment":"First zero in s","valid_range":{"max":null,"min":0}},{"name":"Te","data_type":"Float64","null_value":0,"comment":"Field Circuit Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Tr","data_type":"Float64","null_value":0,"comment":"Voltage Measurement Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for pi controler `(Va_min, Va_max)`"},{"name":"Ae","data_type":"Float64","null_value":0,"comment":"1st ceiling coefficient","valid_range":{"max":null,"min":0}},{"name":"Be","data_type":"Float64","null_value":0,"comment":"2nd ceiling coefficient","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVf: Voltage field,\n\tVr1: First Lead-Lag state,\n\tVr2: Second lead-lag state,\n\tVm: Measured voltage","internal_default":"[:Vf, :Vr1, :Vr2, :Vm]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"AVR Type II has 4 states","internal_default":4},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"AVR Type II has 4 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of an Automatic Voltage Regulator Type II - Typical static exciter model","struct_name":"AVRTypeII","supertype":"AVR"},{"fields":[{"name":"Ta_Tb","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Lead input constant ratio","valid_range":{"max":0.3,"min":0.05}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Lag input constant in s","valid_range":{"max":20,"min":5}},{"name":"K","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator Gain","valid_range":{"max":100,"min":20}},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator Time Constant","valid_range":{"max":1,"min":0}},{"name":"Efd_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Field Voltage regulator limits (regulator output) (Efd_min, Efd_max)"},{"name":"switch","data_type":"Int","null_value":0,"validation_action":"error","comment":"Switch","valid_range":{"max":1,"min":0}},{"name":"rc_rfd","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Field current capability. Set = 0 for negative current capability. Typical value 10","valid_range":{"max":10,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVr1: First integrator,\n\tVr2: Second integrator","internal_default":"[:Vr1, :Vr2]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SCRX has 2 states","internal_default":2},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"SCRX has 2 differential states","internal_default":"[StateTypes.Differential, StateTypes.Hybrid]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"This exciter is based on an IEEE type SCRX solid state exciter. The output field voltage is varied by a control system to maintain the system voltage at Vref. Please note that this exciter model has no initialization capabilities - this means that it will respond to whatever inputs it receives regardless of the state of the machine model.","struct_name":"SCRX","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator denominator (lag) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator numerator (lead) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator output gain","valid_range":{"max":1000,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"comment":"Regulator output time constant in s","valid_range":{"max":10,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for regulator output `(Va_min, Va_max)`"},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter field time constant in s","valid_range":{"max":2,"min":"eps()"}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rate feedback excitation system stabilizer gain","valid_range":{"max":0.3,"min":0}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Rate feedback time constant","valid_range":{"max":1.5,"min":"eps()"}},{"name":"Kc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rectifier loading factor proportional to commutating reactance","valid_range":{"max":1,"min":0}},{"name":"Kd","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Demagnetizing factor, function of exciter alternator reactances","valid_range":{"max":1,"min":0}},{"name":"Ke","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field proportional constant","valid_range":{"max":1,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for exciter field voltage: `(Vr_min, Vr_max)`"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(x) = B(x - A)^2/x"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVr1: Lead-lag state,\n\tVr2: Regulator output state,\n\tVe: Integrator output state,\n\tVr3: Feedback output state","internal_default":"[:Vm, :Vr1, :Vr2, :Ve, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ESAC1A has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"ESAC1A has 5 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"This excitation systems consists of an alternator main exciter feeding its output via non-controlled rectifiers.\nThe exciter does not employ self-excitation, and the voltage regulator power is taken from a source that is not affected by external transients.\nParameters of IEEE Std 421.5 Type AC1A Excitacion System. This model corresponds to ESAC1A in PSSE and PSLF","struct_name":"ESAC1A","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator denominator (lag) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator numerator (lead) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator output gain","valid_range":{"max":1000,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"comment":"Regulator output time constant in s","valid_range":{"max":10,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for regulator output `(Va_min, Va_max)`"},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter field time constant in s","valid_range":{"max":2,"min":"eps()"}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rate feedback excitation system stabilizer gain","valid_range":{"max":0.3,"min":0}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Rate feedback time constant","valid_range":{"max":1.5,"min":"eps()"}},{"name":"Kc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rectifier loading factor proportional to commutating reactance","valid_range":{"max":1,"min":0}},{"name":"Kd","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Demagnetizing factor, function of exciter alternator reactances","valid_range":{"max":1,"min":0}},{"name":"Ke","data_type":"Float64","null_value":0,"comment":"Exciter field proportional constant","valid_range":{"max":1,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for exciter field voltage: `(Vr_min, Vr_max)`"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(x) = B(x - A)^2/x"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVr1: Lead-lag state,\n\tVr2: Regulator output state,\n\tVe: Integrator output state,\n\tVr3: Feedback output state","internal_default":"[:Vm, :Vr1, :Vr2, :Ve, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"EXAC1A has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"EXAC1A has 5 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Modified ESAC1A. This excitation systems consists of an alternator main exciter feeding its output via non-controlled rectifiers.\nThe exciter does not employ self-excitation, and the voltage regulator power is taken from a source that is not affected by external transients.\nParameters of IEEE Std 421.5 Type AC1A Excitacion System. EXAC1A in PSSE and PSLF","struct_name":"EXAC1A","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator denominator (lag) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator numerator (lead) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"comment":"Regulator output gain","valid_range":{"max":1000,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator output time constant in s","valid_range":{"max":10,"min":0}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for regulator output `(Vr_min, Vr_max)`"},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter field time constant in s","valid_range":{"max":2,"min":"eps()"}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rate feedback excitation system stabilizer gain","valid_range":{"max":0.3,"min":0}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Rate feedback time constant","valid_range":{"max":1.5,"min":"eps()"}},{"name":"Kc","data_type":"Float64","null_value":0,"comment":"Rectifier loading factor proportional to commutating reactance","valid_range":{"max":1,"min":0}},{"name":"Kd","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Demagnetizing factor, function of exciter alternator reactances","valid_range":{"max":1,"min":0}},{"name":"Ke","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field proportional constant","valid_range":{"max":1,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(V) = B(V - A)^2/V"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVr1: Lead-lag state,\n\tVr2: Regulator output state,\n\tVe: Integrator output state,\n\tVr3: Feedback output state","internal_default":"[:Vm, :Vr1, :Vr2, :Ve, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"EXAC1 has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"EXAC1 has 5 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Modified ESAC1A. This excitation systems consists of an alternator main exciter feeding its output via non-controlled rectifiers.\nThe exciter does not employ self-excitation, and the voltage regulator power is taken from a source that is not affected by external transients.\nParameters of IEEE Std 421.5 Type AC1A. EXAC1 in PSSE and PSLF","struct_name":"EXAC1","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator denominator (lag) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator numerator (lead) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"comment":"Regulator output gain","valid_range":{"max":1000,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator output time constant in s","valid_range":{"max":10,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for regulator output `(Va_min, Va_max)`"},{"name":"Kb","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Second Stage regulator gain","valid_range":{"max":500,"min":"eps()"}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for exciter field voltage `(Vr_min, Vr_max)`"},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter field time constant","valid_range":{"max":2,"min":"eps()"}},{"name":"Kl","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field current limiter gain","valid_range":{"max":1.1,"min":0}},{"name":"Kh","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field current regulator feedback gain","valid_range":{"max":1.1,"min":0}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rate feedback excitation system stabilizer gain","valid_range":{"max":0.3,"min":0}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Rate feedback time constant","valid_range":{"max":null,"min":"eps()"}},{"name":"Kc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rectifier loading factor proportional to commutating reactance","valid_range":{"max":1,"min":0}},{"name":"Kd","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Demagnetizing factor, function of exciter alternator reactances","valid_range":{"max":1,"min":0}},{"name":"Ke","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field proportional constant","valid_range":{"max":1,"min":0}},{"name":"V_lr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Maximum exciter field current","valid_range":{"max":null,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(V) = B(V - A)^2/V"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVr1: Lead-lag state,\n\tVr2: Regulator output state,\n\tVe: Integrator output state,\n\tVr3: Feedback output state","internal_default":"[:Vm, :Vr1, :Vr2, :Ve, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"EXAC2 has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"EXAC2 has 5 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Modified AC2. This excitation systems consists of an alternator main exciter feeding its output via non-controlled rectifiers.\nThe exciter does not employ self-excitation, and the voltage regulator power is taken from a source that is not affected by external transients.\nParameters of IEEE Std 421.5 Type AC2A Excitacion System. The alternator main exciter is used, feeding its output via non-controlled rectifiers. The Type AC2C model is similar to that of Type AC1C except for the inclusion of exciter time constant compensation and exciter field current limiting elements. EXAC2 in PSSE and PSLF.","struct_name":"EXAC2","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator output gain","valid_range":{"max":1000,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator output lag time constant in s","valid_range":{"max":10,"min":0}},{"name":"Tk","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage Regulator lead time constant","valid_range":{"max":10,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator denominator (lag) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator numerator (lead) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for regulator output `(Va_min, Va_max)`"},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for exciter field voltage `(Vr_min, Vr_max)`"},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Exciter field time constant","valid_range":{"max":2,"min":"eps()"}},{"name":"VFE_lim","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field current limiter reference","valid_range":{"max":20,"min":-5}},{"name":"Kh","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field current regulator feedback gain","valid_range":{"max":100,"min":0}},{"name":"VH_max","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field current limiter maximum output","valid_range":{"max":100,"min":0}},{"name":"Th","data_type":"Float64","null_value":0,"comment":"Exciter field current limiter denominator (lag) time constant","valid_range":{"max":1,"min":0}},{"name":"Tj","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field current limiter numerator (lead) time constant","valid_range":{"max":1,"min":0}},{"name":"Kc","data_type":"Float64","null_value":0,"comment":"Rectifier loading factor proportional to commutating reactance","valid_range":{"max":1,"min":0}},{"name":"Kd","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Demagnetizing factor, function of exciter alternator reactances","valid_range":{"max":2,"min":0}},{"name":"Ke","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter field proportional constant","valid_range":{"max":2,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(V) = B(V - A)^2/V"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVr1: Lead-lag state,\n\tVr2: Regulator output state,\n\tVe: Integrator output state,\n\tVr3: Feedback output state","internal_default":"[:Vm, :Vr1, :Vr2, :Ve, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ESAC6A has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"ESAC6A has 5 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Hybrid]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Modified AC6A. Used to represent field-controlled alternator-rectifier excitation systems with system-supplied electronic voltage regulators. \nParameters of IEEE Std 421.5 Type AC6A Excitacion System. ESAC6A in PSSE and PSLF.","struct_name":"ESAC6A","supertype":"AVR"},{"fields":[{"name":"UEL_flags","data_type":"Int","null_value":1,"validation_action":"warn","comment":"Code input for Underexcitization limiter (UEL) entry. Not supported.","valid_range":{"max":3,"min":1}},{"name":"PSS_flags","data_type":"Int","null_value":1,"comment":"Code input for Power System Stabilizer (PSS) or (VOS) entry.","valid_range":{"max":2,"min":1}},{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.1,"min":0}},{"name":"Vi_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Voltage error limits (regulator input) (Vi_min, Vi_max)"},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"First regulator denominator (lead) time constant in s","valid_range":{"max":10,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"comment":"First regulator denominator (lag) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Tc1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Second regulator denominator (lead) time constant in s","valid_range":{"max":10,"min":0}},{"name":"Tb1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Second regulator denominator (lead) time constant in s","valid_range":{"max":20,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator gain","valid_range":{"max":1000,"min":50}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for regulator output `(Va_min, Va_max)`"},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for exciter output `(Vr_min, Vr_max)`"},{"name":"Kc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rectifier loading factor proportional to commutating reactance","valid_range":{"max":0.3,"min":0}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rate feedback gain","valid_range":{"max":0.3,"min":0}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Rate feedback time constant in s","valid_range":{"max":1.5,"min":"eps()"}},{"name":"K_lr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter output current limiter gain","valid_range":{"max":5,"min":0}},{"name":"I_lr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter output current limit reference","valid_range":{"max":5,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVr1: First Lead-lag state,\n\tVr2: Second lead-lag state,\n\tVa: Regulator output state,\n\tVr3: Feedback output state","internal_default":"[:Vm, :Vr1, :Vr2, :Va, :Vr3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ST1A has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"ST1A has 5 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"This excitation system supplies power through a transformer from the generator terminals and its regulated by a controlled rectifier (via thyristors).\nParameters of IEEE Std 421.5 Type ST1A Excitacion System. ESST1A in PSSE and PSLF","struct_name":"ESST1A","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator gain","valid_range":{"max":500,"min":1}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator time constant in s","valid_range":{"max":10,"min":0}},{"name":"Va_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for pi controler `(Vr_min, Vr_max)`"},{"name":"Ta_2","data_type":"Float64","null_value":0,"comment":"Voltage regulator time constant in s","valid_range":{"max":null,"min":0}},{"name":"Ta_3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator time constant in s","valid_range":{"max":null,"min":0}},{"name":"Ta_4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator time constant in s","valid_range":{"max":null,"min":0}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage regulator limits (regulator output) (Vi_min, Vi_max)"},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rate feedback gain","valid_range":{"max":0.3,"min":0}},{"name":"Tf_1","validation_actions":"error","data_type":"Float64","null_value":0,"comment":"Rate Feedback time constant in s","valid_range":{"max":15,"min":"eps()"}},{"name":"Tf_2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rate Feedback time constant in s","valid_range":{"max":5,"min":0}},{"name":"Efd_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Field Voltage regulator limits (regulator output) (Efd_min, Efd_max)"},{"name":"Ke","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter constant","valid_range":{"max":1,"min":0}},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter time constant","valid_range":{"max":2,"min":0}},{"name":"E_sat","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter output voltage for saturation factor: (E1, E2)"},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Exciter saturation factor at exciter output voltage: (Se(E1), Se(E2))"},{"name":"Kp","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Potential source gain","valid_range":{"max":5,"min":0}},{"name":"Ki","data_type":"Float64","null_value":0,"comment":"current source gain","valid_range":{"max":1.1,"min":0}},{"name":"Kc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter regulation factor","valid_range":{"max":2,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"saturation_coeffs","default":"PowerSystems.get_avr_saturation(E_sat, Se)","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Coefficients (A,B) of the function: Se(V) = B(V - A)^2/V"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVr1: First Lead-lag state,\n\tVr2: Second regulator lead-lag state,\n\tVr2: Third regulator lead-lag state \n\tVf: Exciter output \n\tVr3: First feedback integrator,\n\tVr4: second feedback integrator","internal_default":"[:Vm, :Vr1, :Vr2, :Vf, :Vr3, :Vr4]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"EXPIC1 has 6 states","internal_default":6},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"EXPIC has 6 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Hybrid]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Generic Proportional/Integral Excitation System","struct_name":"EXPIC1","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator input filter time constant in s","valid_range":{"max":0.5,"min":0}},{"name":"K_pr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator propotional gain","valid_range":{"max":75,"min":0}},{"name":"K_ir","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Regulator integral gain","valid_range":{"max":75,"min":0}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage regulator limits (Vi_min, Vi_max)"},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator time constant in s","valid_range":{"max":1,"min":0}},{"name":"K_pm","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator proportional gain output","valid_range":{"max":1.2,"min":0}},{"name":"K_im","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage regulator integral gain output","valid_range":{"max":18,"min":0}},{"name":"Vm_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for inner loop output `(Vm_min, Vm_max)`"},{"name":"Kg","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Feedback gain constant of the inner loop field regulator","valid_range":{"max":1.1,"min":0}},{"name":"Kp","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Potential circuit (voltage) gain coefficient","valid_range":{"max":10,"min":0}},{"name":"Ki","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Compound circuit (current) gain coefficient","valid_range":{"max":1.1,"min":0}},{"name":"VB_max","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Maximum available exciter voltage","valid_range":{"max":20,"min":1}},{"name":"Kc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Rectifier loading factor proportional to commutating reactance","valid_range":{"max":1,"min":0}},{"name":"Xl","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Reactance associated with potential source","valid_range":{"max":0.5,"min":0}},{"name":"θp","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Potential circuit phase angle (degrees)","valid_range":{"max":90,"min":-90}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"θp_rad","default":"θp*π*inv(180)","data_type":"Float64","null_value":0,"comment":"Potential circuit phase angle (radians)"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed terminal voltage,\n\tVt: Sensed Terminal Voltage,\n\tVr1: Regulator Integrator,\n\tVr2: Regulator Output,\n\tVm: Output integrator","internal_default":"[:Vt, :Vr1, :Vr2, :Vm]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ST4B has 4 states","internal_default":4},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"ST4B has 4 states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"In these excitation systems, voltage (and also current in compounded systems) is transformed to an appropriate level. Rectifiers, either controlled or non-controlled, provide the necessary direct current for the generator field.\nParameters of IEEE Std 421.5 Type ST4B Excitacion System. ESST4B in PSSE and PSLF","struct_name":"ESST4B","supertype":"AVR"},{"fields":[{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Voltage Measurement Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Vi_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage input limits (Vi_min, Vi_max)"},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Numerator lead-lag (lead) time constant in s","valid_range":{"max":null,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Denominator lead-lag (lag) time constant in s","valid_range":{"max":null,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Gain","valid_range":{"max":null,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Amplifier Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"Vr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage regulator limits (regulator output) (Vr_min, Vr_max)"},{"name":"Kc","data_type":"Float64","null_value":0,"comment":"Current field constant limiter multiplier","valid_range":{"max":null,"min":0}},{"name":"Kf","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Excitation control system stabilizer gain","valid_range":{"max":0.3,"min":"eps()"}},{"name":"Tf","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Excitation control system stabilizer time constant","valid_range":{"max":null,"min":"eps()"}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVm: Sensed Terminal Voltage,\n\tVrll: Lead-Lag state,\n\tVr: Regulator Output, \n\tVfb: Feedback state","internal_default":"[:Vm, :Vrll, :Vr, :Vfb]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The EXST1 has 4 states","internal_default":4},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"IEEE Type ST1 Excitation System (PTI version)","struct_name":"EXST1","supertype":"AVR"},{"fields":[{"name":"Iflim","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"OEL Field current limit","valid_range":{"max":null,"min":0}},{"name":"d","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"OEL parameter d","valid_range":{"max":null,"min":0}},{"name":"f","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"OEL parameter f","valid_range":{"max":null,"min":0}},{"name":"Spar","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"OEL parameter Spar","valid_range":{"max":null,"min":0}},{"name":"K1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"OEL delay time constant","valid_range":{"max":null,"min":0}},{"name":"K2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"OEL parameter K2","valid_range":{"max":null,"min":0}},{"name":"Oel_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Oel integrator limits (Oel_min, Oel_max)"},{"name":"G","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"AVR Exciter Gain","valid_range":{"max":null,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Numerator lead-lag (lag) time constant in s","valid_range":{"max":null,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Denominator lead-lag (lag) time constant in s","valid_range":{"max":null,"min":0}},{"name":"Te","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Exciter Time Constant in s","valid_range":{"max":null,"min":0}},{"name":"E_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage regulator limits (regulator output) (E_min, E_max)"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tVll: Lead-lag internal state,\n\tVex: Exciter Output, \n\toel: OEL integrator state","internal_default":"[:Vll, :Vex, :oel]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The EX4VSA has 3 states","internal_default":3},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"IEEE Excitation System for Voltage Security Assesment","struct_name":"EX4VSA","supertype":"AVR"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"eq_p","data_type":"Float64","null_value":0,"comment":"Fixed EMF behind the impedance","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"BaseMachine has no states","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"BaseMachine has no states","internal_default":0},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a Classic Machine: GENCLS in PSSE and PSLF","struct_name":"BaseMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Armature resistance","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Td0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in d-axis per unit. Note: Xd_pp = Xq_pp","valid_range":{"max":null,"min":0}},{"name":"Xl","data_type":"Float64","null_value":0,"comment":"Stator leakage reactance","valid_range":{"max":null,"min":0}},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Saturation factor at 1 and 1.2 pu flux: S(1.0) = B(|ψ_pp|-A)^2"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"γ_d1","data_type":"Float64","comment":"γ_d1 parameter","internal_default":"(Xd_pp - Xl) / (Xd_p - Xl)"},{"name":"γ_q1","data_type":"Float64","comment":"γ_q1 parameter","internal_default":"(Xd_pp - Xl) / (Xq_p - Xl)"},{"name":"γ_d2","data_type":"Float64","comment":"γ_d2 parameter","internal_default":"(Xd_p - Xd_pp) / (Xd_p - Xl)^2"},{"name":"γ_q2","data_type":"Float64","comment":"γ_q2 parameter","internal_default":"(Xq_p - Xd_pp) / (Xq_p - Xl)^2"},{"name":"γ_qd","data_type":"Float64","comment":"γ_qd parameter","internal_default":"(Xq - Xl) / (Xd - Xl)"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\teq_p: q-axis generator voltage behind the transient reactance,\n\ted_p: d-axis generator voltage behind the transient reactance,\n\tψ_kd: flux linkage in the first equivalent damping circuit in the d-axis,\n\tψ_kq: flux linkage in the first equivalent damping circuit in the d-axis","internal_default":"[:eq_p, :ed_p, :ψ_kd, :ψ_kq]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"RoundRotorMachine has 4 states","internal_default":4},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 4-states round-rotor synchronous machine with quadratic/exponential saturation:\nIEEE Std 1110 §5.3.2 (Model 2.2). GENROU or GENROE model in PSSE and PSLF.","struct_name":"RoundRotorMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Armature resistance","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Td0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in d-axis per unit. Note: Xd_pp = Xq_pp","valid_range":{"max":null,"min":0}},{"name":"Xl","data_type":"Float64","null_value":0,"comment":"Stator leakage reactance","valid_range":{"max":null,"min":0}},{"name":"Se","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Saturation factor at 1 and 1.2 pu flux: Se(eq_p) = B(eq_p-A)^2"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"γ_d1","data_type":"Float64","comment":"γ_d1 parameter","internal_default":"(Xd_pp - Xl) / (Xd_p - Xl)"},{"name":"γ_q1","data_type":"Float64","comment":"γ_q1 parameter","internal_default":"(Xd_p - Xd_pp) / (Xd_p - Xl)"},{"name":"γ_d2","data_type":"Float64","comment":"γ_d2 parameter","internal_default":"(Xd_p - Xd_pp) / (Xd_p - Xl)^2"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\teq_p: q-axis generator voltage behind the transient reactance,\n\tψ_kd: flux linkage in the first equivalent damping circuit in the d-axis,\n\tψq_pp: phasonf of the subtransient flux linkage in the q-axis","internal_default":"[:eq_p, :ψ_kd, :ψq_pp]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SalientPoleMachine has 3 states","internal_default":3},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 3-states salient-pole synchronous machine with quadratic/exponential saturation:\nIEEE Std 1110 §5.3.1 (Model 2.1). GENSAL or GENSAE model in PSSE and PSLF.","struct_name":"SalientPoleMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Td0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tψq: q-axis stator flux,\n\tψd: d-axis stator flux,\n\teq_p: q-axis transient voltage,\n\ted_p: d-axis transient voltage,\n\teq_pp: q-axis subtransient voltage,\n\ted_pp: d-axis subtransient voltage","internal_default":"[:ψq, :ψd, :eq_p, :ed_p, :eq_pp, :ed_pp]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"AndersonFouadMachine has 6 states","internal_default":6},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 6-states synchronous machine: Anderson-Fouad model","struct_name":"AndersonFouadMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"R_f","data_type":"Float64","null_value":0,"comment":"Field rotor winding resistance in per unit","valid_range":{"max":null,"min":0}},{"name":"R_1d","data_type":"Float64","null_value":0,"comment":" Damping rotor winding resistance on d-axis in per unit. This value is denoted as RD in Machowski.","valid_range":{"max":null,"min":0}},{"name":"R_1q","data_type":"Float64","null_value":0,"comment":"Damping rotor winding resistance on q-axis in per unit. This value is denoted as RQ in Machowski.","valid_range":{"max":null,"min":0}},{"name":"L_d","data_type":"Float64","null_value":1,"comment":"Inductance of fictitious damping that represent the effect of the three-phase stator winding in the d-axis of the rotor, in per unit. This value is denoted as L_ad + L_l in Kundur (and Ld in Machowski).","valid_range":{"max":null,"min":0}},{"name":"L_q","data_type":"Float64","null_value":1,"comment":"Inductance of fictitious damping that represent the effect of the three-phase stator winding in the q-axis of the rotor, in per unit. This value is denoted as L_aq + L_l in Kundur.","valid_range":{"max":null,"min":0}},{"name":"L_ad","data_type":"Float64","null_value":2,"comment":"Mutual inductance between stator winding and rotor field (and damping) winding inductance on d-axis, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_aq","data_type":"Float64","null_value":2,"comment":"Mutual inductance between stator winding and rotor damping winding inductance on q-axis, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_f1d","data_type":"Float64","null_value":1,"comment":"Mutual inductance between rotor field winding and rotor damping winding inductance on d-axis, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_ff","data_type":"Float64","null_value":2,"comment":"Field rotor winding inductance, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_1d","data_type":"Float64","null_value":1,"comment":"Inductance of the d-axis rotor damping circuit, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_1q","data_type":"Float64","null_value":1,"comment":"Inductance of the q-axis rotor damping circuit, in per unit","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"inv_d_fluxlink","data_type":"Array{Float64,2}","comment":"Equations 3.127, 3.130, 3.131 From Kundur","internal_default":"inv([[-L_d L_ad L_ad]; [-L_ad L_ff L_f1d]; [-L_ad L_f1d L_1d]])"},{"name":"inv_q_fluxlink","data_type":"Array{Float64,2}","comment":"Equations 3.128, 3.132 From Kundur","internal_default":"inv([[-L_q L_aq]; [-L_aq L_1q]])"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tψd: d-axis stator flux,\n\tψq: q-axis stator flux,\n\tψf: field rotor flux,\n\tψ1d: d-axis rotor damping flux,\n\tψ1q: q-axis rotor damping flux","internal_default":"[:ψd, :ψq, :ψf, :ψ1d, :ψ1q]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"FullMachine has 5 states","internal_default":5},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameter of a full order flux stator-rotor model without zero sequence flux in the stator.\n The derivative of stator fluxes (ψd and ψq) is NOT neglected. Only one q-axis damping circuit is considered. All parameters are in machine per unit.\n Refer to Chapter 3 of Power System Stability and Control by P. Kundur or Chapter 11 of Power System Dynamics: Stability and Control, by J. Machowski, J. Bialek and J. Bumby, for more details.\n Note that the models are somewhat different (but equivalent) due to the different Park Transformation used in both books.","struct_name":"FullMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xl","data_type":"Float64","null_value":0,"comment":"Stator Leakage Reactance","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Td0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"γ_d1","data_type":"Float64","comment":"","internal_default":"(Xd_pp-Xl)/(Xd_p-Xl)"},{"name":"γ_q1","data_type":"Float64","comment":"","internal_default":"(Xq_pp-Xl)/(Xq_p-Xl)"},{"name":"γ_d2","data_type":"Float64","comment":"","internal_default":"(Xd_p - Xd_pp) / (Xd_p - Xl)^2"},{"name":"γ_q2","data_type":"Float64","comment":"","internal_default":"(Xq_p - Xq_pp) / (Xq_p - Xl)^2"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tψq: q-axis stator flux,\n\tψd: d-axis stator flux,\n\teq_p: q-axis transient voltage,\n\ted_p: d-axis transient voltage\n\tψd_pp: subtransient flux linkage in the d-axis\n\tψq_pp: subtransient flux linkage in the q-axis","internal_default":"[:ψq, :ψd, :eq_p, :ed_p, :ψd_pp, :ψq_pp]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SauerPaiMachine has 6 states","internal_default":6},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of synchronous machine: Sauer Pai model","struct_name":"SauerPaiMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Td0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"T_AA","data_type":"Float64","null_value":0,"comment":"Time constant of d-axis additional leakage","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"γd","data_type":"Float64","comment":"","internal_default":"((Td0_pp*Xd_pp)/(Td0_p*Xd_p) )*(Xd-Xd_p)"},{"name":"γq","data_type":"Float64","comment":"","internal_default":"((Tq0_pp*Xq_pp)/(Tq0_p*Xq_p) )*(Xq-Xq_p)"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tψq: q-axis stator flux,\n\tψd: d-axis stator flux,\n\teq_p: q-axis transient voltage,\n\ted_p: d-axis transient voltage,\n\teq_pp: q-axis subtransient voltage,\n\ted_pp: d-axis subtransient voltage","internal_default":"[:ψq, :ψd, :eq_p, :ed_p, :eq_pp, :ed_pp]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"MarconatoMachine has 6 states","internal_default":6},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 6-states synchronous machine: Marconato model","struct_name":"MarconatoMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\teq_p: q-axis transient voltage,\n\ted_p: d-axis transient voltage","internal_default":"[:eq_p, :ed_p]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"OneDOneQMachine has 2 states","internal_default":2},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 4-states synchronous machine: Simplified Marconato model\n The derivative of stator fluxes (ψd and ψq) is neglected and ωψd = ψd and\n ωψq = ψq is assumed (i.e. ω=1.0). This is standard when\n transmission network dynamics is neglected.","struct_name":"OneDOneQMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Td0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\teq_p: q-axis transient voltage,\n\ted_p: d-axis transient voltage,\n\teq_pp: q-axis subtransient voltage,\n\ted_pp: d-axis subtransient voltage","internal_default":"[:eq_p, :ed_p, :eq_pp, :ed_pp]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SimpleAFMachine has 4 states","internal_default":4},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 4-states simplified Anderson-Fouad (SimpleAFMachine) model.\n The derivative of stator fluxes (ψd and ψq) is neglected and ωψd = ψd and\n ωψq = ψq is assumed (i.e. ω=1.0). This is standard when transmission network\n dynamics is neglected.\n If transmission dynamics is considered use the full order Anderson Fouad model.","struct_name":"SimpleAFMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"R_f","data_type":"Float64","null_value":0,"comment":"Field rotor winding resistance in per unit","valid_range":{"max":null,"min":0}},{"name":"R_1d","data_type":"Float64","null_value":0,"comment":" Damping rotor winding resistance on d-axis in per unit. This value is denoted as RD in Machowski.","valid_range":{"max":null,"min":0}},{"name":"R_1q","data_type":"Float64","null_value":0,"comment":"Damping rotor winding resistance on q-axis in per unit. This value is denoted as RQ in Machowski.","valid_range":{"max":null,"min":0}},{"name":"L_d","data_type":"Float64","null_value":1,"comment":"Inductance of fictitious damping that represent the effect of the three-phase stator winding in the d-axis of the rotor, in per unit. This value is denoted as L_ad + L_l in Kundur (and Ld in Machowski).","valid_range":{"max":null,"min":0}},{"name":"L_q","data_type":"Float64","null_value":1,"comment":"Inductance of fictitious damping that represent the effect of the three-phase stator winding in the q-axis of the rotor, in per unit. This value is denoted as L_aq + L_l in Kundur.","valid_range":{"max":null,"min":0}},{"name":"L_ad","data_type":"Float64","null_value":2,"comment":"Mutual inductance between stator winding and rotor field (and damping) winding inductance on d-axis, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_aq","data_type":"Float64","null_value":1,"comment":"Mutual inductance between stator winding and rotor damping winding inductance on q-axis, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_f1d","data_type":"Float64","null_value":1,"comment":"Mutual inductance between rotor field winding and rotor damping winding inductance on d-axis, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_ff","data_type":"Float64","null_value":2,"comment":"Field rotor winding inductance, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_1d","data_type":"Float64","null_value":1,"comment":"Inductance of the d-axis rotor damping circuit, in per unit","valid_range":{"max":null,"min":0}},{"name":"L_1q","data_type":"Float64","null_value":2,"comment":"Inductance of the q-axis rotor damping circuit, in per unit","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"inv_d_fluxlink","data_type":"Array{Float64,2}","comment":"Equations 3.127, 3.130, 3.131 From Kundur","internal_default":"inv([[-L_d L_ad L_ad]; [-L_ad L_ff L_f1d]; [-L_ad L_f1d L_1d]])"},{"name":"inv_q_fluxlink","data_type":"Array{Float64,2}","comment":"Equations 3.128, 3.132 From Kundur","internal_default":"inv([[-L_q L_aq]; [-L_aq L_1q]])"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tψf: field rotor flux,\n\tψ1d: d-axis rotor damping flux,\n\tψ1q: q-axis rotor damping flux","internal_default":"[:ψf, :ψ1d, :ψ1q]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SimpleFullMachine has 3 states","internal_default":3},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameter of a full order flux stator-rotor model without zero sequence flux in the stator.\n The derivative of stator fluxes (ψd and ψq) is neglected. This is standard when\n transmission network dynamics is neglected. Only one q-axis damping circuit\n is considered. All per unit are in machine per unit.\n Refer to Chapter 3 of Power System Stability and Control by P. Kundur or Chapter 11 of Power System Dynamics: Stability and Control, by J. Machowski, J. Bialek and J. Bumby, for more details.\n Note that the models are somewhat different (but equivalent) due to the different Park Transformation used in both books.","struct_name":"SimpleFullMachine","supertype":"Machine"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Resistance after EMF in machine per unit","valid_range":{"max":null,"min":0}},{"name":"Xd","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq","data_type":"Float64","null_value":0,"comment":"Reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_p","data_type":"Float64","null_value":0,"comment":"Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xd_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in d-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Xq_pp","data_type":"Float64","null_value":0,"comment":"Sub-Transient reactance after EMF in q-axis per unit","valid_range":{"max":null,"min":0}},{"name":"Td0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_p","data_type":"Float64","null_value":0,"comment":"Time constant of transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Td0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient d-axis voltage","valid_range":{"max":null,"min":0}},{"name":"Tq0_pp","data_type":"Float64","null_value":0,"comment":"Time constant of sub-transient q-axis voltage","valid_range":{"max":null,"min":0}},{"name":"T_AA","data_type":"Float64","null_value":0,"comment":"Time constant of d-axis additional leakage","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"γd","data_type":"Float64","comment":"","internal_default":"((Td0_pp*Xd_pp)/(Td0_p*Xd_p) )*(Xd-Xd_p)"},{"name":"γq","data_type":"Float64","comment":"","internal_default":"((Tq0_pp*Xq_pp)/(Tq0_p*Xq_p) )*(Xq-Xq_p)"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\teq_p: q-axis transient voltage,\n\ted_p: d-axis transient voltage,\n\teq_pp: q-axis subtransient voltage,\n\ted_pp: d-axis subtransient voltage","internal_default":"[:eq_p, :ed_p, :eq_pp, :ed_pp]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SimpleMarconatoMachine has 4 states","internal_default":4},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 4-states synchronous machine: Simplified Marconato model\n The derivative of stator fluxes (ψd and ψq) is neglected and ωψd = ψd and\n ωψq = ψq is assumed (i.e. ω=1.0). This is standard when transmission network\n dynamics is neglected.","struct_name":"SimpleMarconatoMachine","supertype":"Machine"},{"fields":[{"name":"V_pss","data_type":"Float64","null_value":0,"comment":"Fixed voltage stabilization signal","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"PSSFixed has no states","internal_default":0},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a PSS that returns a fixed voltage to add to the reference for the AVR","struct_name":"PSSFixed","supertype":"PSS"},{"fields":[{"name":"K_ω","data_type":"Float64","null_value":0,"comment":"Proportional gain for frequency","valid_range":{"max":null,"min":0}},{"name":"K_p","data_type":"Float64","null_value":0,"comment":"Proportional gain for active power","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"PSSSimple has no states","internal_default":0},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a PSS that returns a proportional droop voltage to add to the reference for the AVR","struct_name":"PSSSimple","supertype":"PSS"},{"fields":[{"name":"input_code","data_type":"Int","null_value":1,"validation_action":"error","comment":"Code input for stabilizer","valid_range":{"max":6,"min":1}},{"name":"remote_bus_control","data_type":"Int","null_value":0,"comment":"Remote Bus number for control."},{"name":"A1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Filter coefficient","valid_range":{"max":null,"min":0}},{"name":"A2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Filter coefficient","valid_range":{"max":null,"min":0}},{"name":"A3","data_type":"Float64","null_value":0,"comment":"Filter coefficient","valid_range":{"max":null,"min":0}},{"name":"A4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Filter coefficient","valid_range":{"max":null,"min":0}},{"name":"A5","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Filter coefficient","valid_range":{"max":null,"min":0}},{"name":"A6","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Filter coefficient","valid_range":{"max":null,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant","valid_range":{"max":10,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant","valid_range":{"max":10,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant","valid_range":{"max":10,"min":0}},{"name":"T4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant","valid_range":{"max":10,"min":0}},{"name":"T5","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant","valid_range":{"max":10,"min":0}},{"name":"T6","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Time constant","valid_range":{"max":"2.0","min":"eps()"}},{"name":"Ks","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Proportional gain","valid_range":{"max":null,"min":0}},{"name":"Ls_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"PSS output limits for regulator output `(Ls_min, Ls_max)`"},{"name":"Vcu","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Cutoff limiter upper bound","valid_range":{"max":"1.25","min":0}},{"name":"Vcl","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Cutoff limiter lower bound","valid_range":{"max":"1.0","min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tx_p1: 1st filter integration,\n\tx_p2: 2nd filter integration, \n\tx_p3: 3rd filter integration, \n\tx_p4: 4rd filter integration, \n\tx_p5: T1/T2 lead-lag integrator, \n\tx_p6: T3/T4 lead-lag integrator, \n\t:x_p7 last integer,","internal_default":"[:x_p1, :x_p2, :x_p3, :x_p4, :x_p5, :x_p6, :x_p7]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"IEEEST has 7 states","internal_default":7},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"IEEEST has 7 differential states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"IEEE Stabilizing Model PSS. ","struct_name":"IEEEST","supertype":"PSS"},{"fields":[{"name":"KT","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"K/T for washout filter","valid_range":{"max":null,"min":0}},{"name":"T","data_type":"Float64","null_value":0.01,"validation_action":"warn","comment":"Time constant for washout filter","valid_range":{"max":null,"min":0.01}},{"name":"T1T3","data_type":"Float64","null_value":0,"comment":"Time constant division T1/T3","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0.01,"validation_action":"warn","comment":"Time constant","valid_range":{"max":null,"min":0.01}},{"name":"T2T4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant division T2/T4","valid_range":{"max":null,"min":0}},{"name":"T4","data_type":"Float64","null_value":0.01,"validation_action":"warn","comment":"Time constant","valid_range":{"max":null,"min":0.01}},{"name":"H_lim","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"PSS output limit","valid_range":{"max":0.5,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tx_p1: washout filter,\n\tx_p2: T1/T3 lead-lag block, \n\tx_p3: T2/T4 lead-lag block,","internal_default":"[:x_p1, :x_p2, :x_p3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"STAB1 has 3 states","internal_default":3},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"STAB1 has 3 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Speed-Sensitive Stabilizing Model","struct_name":"STAB1","supertype":"PSS"},{"fields":[{"name":"input_code_1","data_type":"Int","null_value":1,"validation_action":"error","comment":"First Input Code for stabilizer","valid_range":{"max":6,"min":1}},{"name":"remote_bus_control_1","data_type":"Int","null_value":0,"comment":"First Input Remote Bus number for control."},{"name":"input_code_2","data_type":"Int","null_value":1,"validation_action":"error","comment":"Second Input Code for stabilizer","valid_range":{"max":6,"min":1}},{"name":"remote_bus_control_2","data_type":"Int","null_value":0,"comment":"Second Input Remote Bus number for control."},{"name":"M_rtf","data_type":"Int","null_value":0,"validation_action":"error","comment":"M parameter for ramp tracking filter","valid_range":{"max":8,"min":0}},{"name":"N_rtf","data_type":"Int","null_value":0,"validation_action":"error","comment":"N parameter for ramp tracking filter","valid_range":{"max":8,"min":0}},{"name":"Tw1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first washout filter for first input","valid_range":{"max":null,"min":"eps()"}},{"name":"Tw2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second washout filter for first input","valid_range":{"max":null,"min":0}},{"name":"T6","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for low-pass filter for first input","valid_range":{"max":null,"min":0}},{"name":"Tw3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first washout filter for second input","valid_range":{"max":null,"min":"eps()"}},{"name":"Tw4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second washout filter for second input","valid_range":{"max":null,"min":0}},{"name":"T7","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for low-pass filter for second input","valid_range":{"max":null,"min":0}},{"name":"Ks2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain for low-pass filter for second input","valid_range":{"max":null,"min":0}},{"name":"Ks3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain for second input","valid_range":{"max":null,"min":0}},{"name":"T8","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for ramp tracking filter","valid_range":{"max":null,"min":0}},{"name":"T9","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for ramp tracking filter","valid_range":{"max":null,"min":"eps()"}},{"name":"Ks1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain before lead-lag blocks","valid_range":{"max":null,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second lead-lag block","valid_range":{"max":null,"min":0}},{"name":"Vst_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"PSS output limits `(Vst_min, Vst_max)`"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tx_p1: 1st washout 1st input, \n\tx_p2: 2nd washout 1st input, \n\tx_p3: transducer 1st input, \n\tx_p4: 1st washout 2nd input, \n\tx_p5: 2nd washout 2nd input, \n\tx_p6: transducer 2nd input, \n\tx_p7: ramp tracking filter state 1, \n\tx_p8: ramp tracking filter state 2, \n\tx_p9: ramp tracking filter state 3, \n\tx_p10: ramp tracking filter state 4, \n\tx_p11: ramp tracking filter state 5, \n\tx_p12: ramp tracking filter state 6, \n\tx_p13: ramp tracking filter state 7, \n\tx_p14: ramp tracking filter state 8, \n\tx_p15: 1st lead-lag, \n\tx_p16: 2nd lead-lag,","internal_default":"[:x_p1, :x_p2, :x_p3, :x_p4, :x_p5, :x_p6, :x_p7, :x_p8, :x_p9, :x_p10, :x_p11, :x_p12, :x_p13, :x_p14, :x_p15, :x_p16]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"IEEEST has 16 states","internal_default":16},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"IEEEST has 16 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"IEEE Dual-Input Stabilizer Model","struct_name":"PSS2A","supertype":"PSS"},{"fields":[{"name":"input_code_1","data_type":"Int","null_value":1,"validation_action":"error","comment":"First Input Code for stabilizer","valid_range":{"max":6,"min":1}},{"name":"remote_bus_control_1","data_type":"Int","null_value":0,"comment":"First Input Remote Bus number for control."},{"name":"input_code_2","data_type":"Int","null_value":1,"validation_action":"error","comment":"Second Input Code for stabilizer","valid_range":{"max":6,"min":1}},{"name":"remote_bus_control_2","data_type":"Int","null_value":0,"comment":"Second Input Remote Bus number for control."},{"name":"M_rtf","data_type":"Int","null_value":0,"validation_action":"error","comment":"M parameter for ramp tracking filter","valid_range":{"max":8,"min":0}},{"name":"N_rtf","data_type":"Int","null_value":0,"validation_action":"error","comment":"N parameter for ramp tracking filter","valid_range":{"max":8,"min":0}},{"name":"Tw1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first washout filter for first input","valid_range":{"max":null,"min":"eps()"}},{"name":"Tw2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second washout filter for first input","valid_range":{"max":null,"min":0}},{"name":"T6","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for low-pass filter for first input","valid_range":{"max":null,"min":0}},{"name":"Tw3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first washout filter for second input","valid_range":{"max":null,"min":"eps()"}},{"name":"Tw4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second washout filter for second input","valid_range":{"max":null,"min":0}},{"name":"T7","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for low-pass filter for second input","valid_range":{"max":null,"min":0}},{"name":"Ks2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain for low-pass filter for second input","valid_range":{"max":null,"min":0}},{"name":"Ks3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain for second input","valid_range":{"max":null,"min":0}},{"name":"T8","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for ramp tracking filter","valid_range":{"max":null,"min":0}},{"name":"T9","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for ramp tracking filter","valid_range":{"max":null,"min":"eps()"}},{"name":"Ks1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain before lead-lag blocks","valid_range":{"max":null,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T10","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for third lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T11","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for third lead-lag block","valid_range":{"max":null,"min":0}},{"name":"Vs1_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"First input limits `(Vs1_min, Vs1_max)`"},{"name":"Vs2_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Second input limits `(Vs2_min, Vs2_max)`"},{"name":"Vst_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"PSS output limits `(Vst_min, Vst_max)`"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tx_p1: 1st washout 1st input, \n\tx_p2: 2nd washout 1st input, \n\tx_p3: transducer 1st input, \n\tx_p4: 1st washout 2nd input, \n\tx_p5: 2nd washout 2nd input, \n\tx_p6: transducer 2nd input, \n\tx_p7: ramp tracking filter state 1, \n\tx_p8: ramp tracking filter state 2, \n\tx_p9: ramp tracking filter state 3, \n\tx_p10: ramp tracking filter state 4, \n\tx_p11: ramp tracking filter state 5, \n\tx_p12: ramp tracking filter state 6, \n\tx_p13: ramp tracking filter state 7, \n\tx_p14: ramp tracking filter state 8, \n\tx_p15: 1st lead-lag, \n\tx_p16: 2nd lead-lag, \n\tx_p17: 3rd lead-lag,","internal_default":"[:x_p1, :x_p2, :x_p3, :x_p4, :x_p5, :x_p6, :x_p7, :x_p8, :x_p9, :x_p10, :x_p11, :x_p12, :x_p13, :x_p14, :x_p15, :x_p16, :x_p17]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"IEEEST has 17 states","internal_default":17},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"IEEEST has 17 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"IEEE 421.5 2005 PSS2B IEEE Dual-Input Stabilizer Model","struct_name":"PSS2B","supertype":"PSS"},{"fields":[{"name":"input_code_1","data_type":"Int","null_value":1,"validation_action":"error","comment":"First Input Code for stabilizer","valid_range":{"max":7,"min":1}},{"name":"remote_bus_control_1","data_type":"Int","null_value":0,"comment":"First Input Remote Bus number for control."},{"name":"input_code_2","data_type":"Int","null_value":1,"validation_action":"error","comment":"Second Input Code for stabilizer","valid_range":{"max":6,"min":1}},{"name":"remote_bus_control_2","data_type":"Int","null_value":0,"comment":"Second Input Remote Bus number for control."},{"name":"M_rtf","data_type":"Int","null_value":0,"validation_action":"error","comment":"M parameter for ramp tracking filter","valid_range":{"max":8,"min":0}},{"name":"N_rtf","data_type":"Int","null_value":0,"validation_action":"error","comment":"N parameter for ramp tracking filter","valid_range":{"max":8,"min":0}},{"name":"Tw1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first washout filter for first input","valid_range":{"max":null,"min":"eps()"}},{"name":"Tw2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second washout filter for first input","valid_range":{"max":null,"min":0}},{"name":"T6","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for low-pass filter for first input","valid_range":{"max":null,"min":0}},{"name":"Tw3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first washout filter for second input","valid_range":{"max":null,"min":"eps()"}},{"name":"Tw4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second washout filter for second input","valid_range":{"max":null,"min":0}},{"name":"T7","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for low-pass filter for second input","valid_range":{"max":null,"min":0}},{"name":"Ks2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain for low-pass filter for second input","valid_range":{"max":null,"min":0}},{"name":"Ks3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain for second input","valid_range":{"max":null,"min":0}},{"name":"T8","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for ramp tracking filter","valid_range":{"max":null,"min":0}},{"name":"T9","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for ramp tracking filter","valid_range":{"max":null,"min":"eps()"}},{"name":"Ks1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Gain before lead-lag blocks","valid_range":{"max":null,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for first lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T10","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for third lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T11","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for third lead-lag block","valid_range":{"max":null,"min":0}},{"name":"Vs1_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"First input limits `(Vs1_min, Vs1_max)`"},{"name":"Vs2_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Second input limits `(Vs2_min, Vs2_max)`"},{"name":"Vst_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"PSS output limits `(Vst_min, Vst_max)`"},{"name":"T12","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for fourth lead-lag block","valid_range":{"max":null,"min":0}},{"name":"T13","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for fourth lead-lag block","valid_range":{"max":null,"min":0}},{"name":"PSS_Hysteresis_param","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"PSS output hysteresis parameters `(PSSOFF, PSSON)`"},{"name":"Xcomp","data_type":"Float64","null_value":0,"comment":"Stator Leakage Reactance","valid_range":{"max":null,"min":0}},{"name":"Tcomp","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Time measured with compensated frequency","valid_range":{"max":null,"min":"eps()"}},{"name":"hysteresis_binary_logic","default":"1","data_type":"Int","null_value":0,"comment":"Hysteresis memory variable"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tx_p1: 1st washout 1st input, \n\tx_p2: 2nd washout 1st input, \n\tx_p3: transducer 1st input, \n\tx_p4: 1st washout 2nd input, \n\tx_p5: 2nd washout 2nd input, \n\tx_p6: transducer 2nd input, \n\tx_p7: ramp tracking filter state 1, \n\tx_p8: ramp tracking filter state 2, \n\tx_p9: ramp tracking filter state 3, \n\tx_p10: ramp tracking filter state 4, \n\tx_p11: ramp tracking filter state 5, \n\tx_p12: ramp tracking filter state 6, \n\tx_p13: ramp tracking filter state 7, \n\tx_p14: ramp tracking filter state 8, \n\tx_p15: 1st lead-lag, \n\tx_p16: 2nd lead-lag, \n\tx_p17: 3rd lead-lag, \n\tx_p18: 4th lead-lag, \n\tx_p19: washout block for compensated frequency,","internal_default":"[:x_p1, :x_p2, :x_p3, :x_p4, :x_p5, :x_p6, :x_p7, :x_p8, :x_p9, :x_p10, :x_p11, :x_p12, :x_p13, :x_p14, :x_p15, :x_p16, :x_p17, :x_p18, :x_p19]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"IEEEST has 19 states","internal_default":19},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"IEEEST has 19 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"IEEE 421.5 2016 PSS2C IEEE Dual-Input Stabilizer Model","struct_name":"PSS2C","supertype":"PSS"},{"fields":[{"name":"H","data_type":"Float64","null_value":0,"comment":"Rotor inertia constant in MWs/MVA","valid_range":{"max":null,"min":0}},{"name":"D","data_type":"Float64","null_value":0,"comment":"Rotor natural damping in pu","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tδ: rotor angle,\n\tω: rotor speed","internal_default":"[:δ, :ω]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"SingleMass has 1 state","internal_default":2},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of single mass shaft model. Typically represents the rotor mass.","struct_name":"SingleMass","supertype":"Shaft"},{"fields":[{"name":"H","data_type":"Float64","null_value":0,"comment":"Rotor inertia constant in MWs/MVA","valid_range":{"max":null,"min":0}},{"name":"H_hp","data_type":"Float64","null_value":0,"comment":"High pressure turbine inertia constant in MWs/MVA","valid_range":{"max":null,"min":0}},{"name":"H_ip","data_type":"Float64","null_value":0,"comment":"Intermediate pressure turbine inertia constant in MWs/MVA","valid_range":{"max":null,"min":0}},{"name":"H_lp","data_type":"Float64","null_value":0,"comment":"Low pressure turbine inertia constant in MWs/MVA","valid_range":{"max":null,"min":0}},{"name":"H_ex","data_type":"Float64","null_value":0,"comment":" Exciter inertia constant in MWs/MVA","valid_range":{"max":null,"min":0}},{"name":"D","data_type":"Float64","null_value":0,"comment":"Rotor natural damping in pu","valid_range":{"max":null,"min":0}},{"name":"D_hp","data_type":"Float64","null_value":0,"comment":"High pressure turbine natural damping in pu","valid_range":{"max":null,"min":0}},{"name":"D_ip","data_type":"Float64","null_value":0,"comment":"Intermediate pressure turbine natural damping in pu","valid_range":{"max":null,"min":0}},{"name":"D_lp","data_type":"Float64","null_value":0,"comment":"Low pressure turbine natural damping in pu","valid_range":{"max":null,"min":0}},{"name":"D_ex","data_type":"Float64","null_value":0,"comment":"Exciter natural damping in pu","valid_range":{"max":null,"min":0}},{"name":"D_12","data_type":"Float64","null_value":0,"comment":"High-Intermediate pressure turbine damping","valid_range":{"max":null,"min":0}},{"name":"D_23","data_type":"Float64","null_value":0,"comment":"Intermediate-Low pressure turbine damping","valid_range":{"max":null,"min":0}},{"name":"D_34","data_type":"Float64","null_value":0,"comment":"Low pressure turbine-Rotor damping","valid_range":{"max":null,"min":0}},{"name":"D_45","data_type":"Float64","null_value":0,"comment":"Rotor-Exciter damping","valid_range":{"max":null,"min":0}},{"name":"K_hp","data_type":"Float64","null_value":0,"comment":"High pressure turbine angle coefficient","valid_range":{"max":null,"min":0}},{"name":"K_ip","data_type":"Float64","null_value":0,"comment":"Intermediate pressure turbine angle coefficient","valid_range":{"max":null,"min":0}},{"name":"K_lp","data_type":"Float64","null_value":0,"comment":"Low pressure turbine angle coefficient","valid_range":{"max":null,"min":0}},{"name":"K_ex","data_type":"Float64","null_value":0,"comment":"Exciter angle coefficient","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\n\tδ: rotor angle,\n\tω: rotor speed,\n\tδ_hp: rotor angle of high pressure turbine,\n\tω_hp: rotor speed of high pressure turbine,\n\tδ_ip: rotor angle of intermediate pressure turbine,\n\tω_ip: rotor speed of intermediate pressure turbine,\n\tδ_lp: rotor angle of low pressure turbine,\n\tω_lp: rotor speed of low pressure turbine,\n\tδ_ex: rotor angle of exciter,\n\tω_lp: rotor speed of exciter","internal_default":"[:δ, :ω, :δ_hp, :ω_hp, :δ_ip, :ω_ip, :δ_lp, :ω_lp, :δ_ex, :ω_ex]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"FiveMassShaft has 10 states","internal_default":10},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of 5 mass-spring shaft model.\n It contains a High-Pressure (HP) steam turbine, Intermediate-Pressure (IP)\n steam turbine, Low-Pressure (LP) steam turbine, the Rotor and an Exciter (EX) mover.","struct_name":"FiveMassShaft","supertype":"Shaft"},{"fields":[{"name":"efficiency","data_type":"Float64","null_value":0,"comment":" Efficiency factor that multiplies P_ref","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"TGFixed has no states","internal_default":0},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a fixed Turbine Governor that returns a fixed mechanical torque\n given by the product of P_ref*efficiency","struct_name":"TGFixed","supertype":"TurbineGov"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Speed droop parameter","valid_range":{"max":0.1,"min":"eps()"}},{"name":"T1","data_type":"Float64","null_value":0,"comment":"Governor time constant in s","valid_range":{"max":0.5,"min":"eps()"}},{"name":"T2","data_type":"Float64","null_value":0,"comment":"Combustion chamber time constant","valid_range":{"max":0.5,"min":"eps()"}},{"name":"T3","data_type":"Float64","null_value":0,"comment":"Load limit time constant (exhaust gas measurement time)","valid_range":{"max":5,"min":"eps()"}},{"name":"AT","data_type":"Float64","null_value":0,"comment":"Ambient temperature load limit","valid_range":{"max":1,"min":0}},{"name":"Kt","data_type":"Float64","null_value":0,"comment":"Load limit feedback gain","valid_range":{"max":5,"min":0}},{"name":"V_lim","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Operational control limits on fuel valve opening (V_min, V_max)"},{"name":"D_turb","data_type":"Float64","null_value":0,"comment":"Speed damping coefficient of gas turbine rotor","valid_range":{"max":0.5,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Load Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the GAST model are:\n\tx_g1: Fuel valve opening,\n\tx_g2: Fuel flow,\n\tx_g3: Exhaust temperature load","internal_default":"[:x_g1, :x_g2, :x_g3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"GasTG has 3 states","internal_default":3},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"GAST has 3 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of Gas Turbine-Governor. GAST in PSSE and GAST_PTI in PowerWorld.","struct_name":"GasTG","supertype":"TurbineGov"},{"fields":[{"name":"T1","data_type":"Float64","null_value":0,"comment":"Governor mechanism time constant","valid_range":{"max":100,"min":"eps()"}},{"name":"T2","data_type":"Float64","null_value":0,"comment":"Turbine power time constant","valid_range":{"max":100,"min":"eps()"}},{"name":"T3","data_type":"Float64","null_value":0,"comment":"Turbine exhaust temperature time constant","valid_range":{"max":100,"min":"eps()"}},{"name":"K","data_type":"Float64","null_value":0,"comment":"Governor gain (reciprocal of droop)","valid_range":{"max":100,"min":"eps()"}},{"name":"T4","data_type":"Float64","null_value":0,"comment":"Governor lead time constant","valid_range":{"max":100,"min":"eps()"}},{"name":"T5","data_type":"Float64","null_value":0,"comment":"Governor lag time constant","valid_range":{"max":100,"min":"eps()"}},{"name":"T6","data_type":"Float64","null_value":0,"comment":"Actuator time constant","valid_range":{"max":100,"min":"eps()"}},{"name":"Td","data_type":"Float64","null_value":0,"comment":"Engine time delay","valid_range":{"max":100,"min":"eps()"}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Load Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the DEGOV model are:\n\tx_ecb1: Electric control box 1,\n\tx_ecb2: Electric control box 2,\n\tx_a1: Actuator 1,\n\tx_a2: Actuator 2,\n\tx_a3: Actuator 3,","internal_default":"[:x_ecb1, :x_ecb2, :x_a1, :x_a2, :x_a3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"DEGOV has 5 states","internal_default":5},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"DEGOV has 5 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters Woodward Diesel Governor Model. DEGOV in PowerWorld.","struct_name":"DEGOV","supertype":"TurbineGov"},{"fields":[{"name":"Rselect","data_type":"Int","null_value":1,"validation_action":"error","comment":"Feedback signal for governor droop","valid_range":{"max":1,"min":-2}},{"name":"fuel_flag","data_type":"Int","null_value":0,"validation_action":"error","comment":"Flag Switch for fuel source characteristic","valid_range":{"max":1,"min":0}},{"name":"R","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Speed droop parameter","valid_range":{"max":null,"min":"eps()"}},{"name":"Tpelec","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Electrical power transducer time constant, seconds","valid_range":{"max":null,"min":"eps()"}},{"name":"speed_error_signal","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Speed error signal limits"},{"name":"Kp_gov","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Governor proportional gain","valid_range":{"max":null,"min":0}},{"name":"Ki_gov","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Governor integral gain","valid_range":{"max":null,"min":0}},{"name":"Kd_gov","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Governor derivative gain","valid_range":{"max":null,"min":0}},{"name":"Td_gov","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Governor derivative time constant","valid_range":{"max":null,"min":0}},{"name":"valve_position_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Valve position limits"},{"name":"T_act","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Actuator time constant","valid_range":{"max":null,"min":0}},{"name":"K_turb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine gain","valid_range":{"max":null,"min":0}},{"name":"Wf_nl","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"No load fuel flow, pu","valid_range":{"max":null,"min":0}},{"name":"Tb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine lag time constant, sec","valid_range":{"max":null,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine lead time constant, sec","valid_range":{"max":null,"min":0}},{"name":"T_eng","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Transport lag time constant for diesel engine, sec","valid_range":{"max":null,"min":0}},{"name":"Tf_load","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Load limiter time constant","valid_range":{"max":null,"min":0}},{"name":"Kp_load","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Load limiter proportional gain for PI controller","valid_range":{"max":null,"min":0}},{"name":"Ki_load","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Load integral gain for PI controller","valid_range":{"max":null,"min":0}},{"name":"Ld_ref","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Load limiter integral gain for PI controller","valid_range":{"max":null,"min":0}},{"name":"Dm","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Mechanical damping coefficient, pu","valid_range":{"max":null,"min":0}},{"name":"R_open","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Maximum valve opening rate, pu/sec","valid_range":{"max":null,"min":0}},{"name":"R_close","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Maximum valve closing rate, pu/sec","valid_range":{"max":null,"min":0}},{"name":"Ki_mw","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Power controller (reset) gain","valid_range":{"max":null,"min":0}},{"name":"A_set","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Acceleration limiter setpoint, pu/sec","valid_range":{"max":null,"min":0}},{"name":"Ka","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Acceleration limiter gain","valid_range":{"max":null,"min":0}},{"name":"Ta","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Acceleration limiter time constant ","valid_range":{"max":null,"min":"eps()"}},{"name":"T_rate","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine rating","valid_range":{"max":null,"min":0}},{"name":"db","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Speed governor deadband","valid_range":{"max":null,"min":0}},{"name":"Tsa","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Temperature detection lead time constant","valid_range":{"max":null,"min":0}},{"name":"Tsb","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Temperature detection lag time constant","valid_range":{"max":null,"min":0}},{"name":"R_lim","data_type":"UpDown","null_value":"(up = 0.0, down = 0.0)","comment":"Maximum rate of load increa"},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the GGOV1 model are:\n\tPe: Machine Electrical Power Measurement,\n\tx_g1: Governor differential control,\n\tx_g2: Governor integral control, \n\tx_g3: Turbine actuator, \n\tx_g4: Turbine Lead-Lag, \n\tx_g5: Turbine load limiter measurement, \n\tx_g6: Turbine Load Limiter Integral Control, \n\tx_g7: Supervisory Load Control, \n\tx_g8: Acceleration Control, \n\tx_g9 Temperature Detection Lead - Lag:","internal_default":"[:Pe, :x_g1, :x_g2, :x_g3, :x_g4, :x_g5, :x_g6, :x_g7, :x_g8, :x_g9]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"GeneralGovModel has 10 states","internal_default":10},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"GGOV1 has 10 differential states","internal_default":"[StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Differential, StateTypes.Hybrid]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"GE General Governor/Turbine Model. The GeneralGovModel (GGOV1) model is a general purpose governor model used for a variety of prime movers controlled by proportional-integral-derivative (PID) governors including gas turbines.","struct_name":"GeneralGovModel","supertype":"TurbineGov"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Droop parameter","valid_range":{"max":0.1,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Governor time constant","valid_range":{"max":0.5,"min":"eps()"}},{"name":"valve_position_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Valve position limits"},{"name":"T2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Lead Lag Lead Time constant ","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Lead Lag Lag Time constant ","valid_range":{"max":10,"min":"eps()"}},{"name":"D_T","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine Damping","valid_range":{"max":0.5,"min":0}},{"name":"DB_h","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Deadband for overspeed","valid_range":{"max":null,"min":0}},{"name":"DB_l","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Deadband for underspeed","valid_range":{"max":0,"min":null}},{"name":"T_rate","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine Rate (MW). If zero, generator base is used.","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the SteamTurbineGov1 model are:\n\tx_g1: Valve Opening,\n\tx_g2: Lead-lag state","internal_default":"[:x_g1, :x_g2]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"TGOV1 has 2 states","internal_default":2},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"TGOV1 has 2 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Steam Turbine-Governor. This model considers both TGOV1 or TGOV1DU in PSS/E.","struct_name":"SteamTurbineGov1","supertype":"TurbineGov"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Permanent droop parameter","valid_range":{"max":0.1,"min":0}},{"name":"r","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Temporary Droop","valid_range":{"max":2,"min":0}},{"name":"Tr","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Governor time constant","valid_range":{"max":30,"min":"eps()"}},{"valid_range":{"max":0.1,"min":"eps()"},"name":"Tf","data_type":"Float64","null_value":0,"valiation_action":"error","comment":"Filter Time constant"},{"name":"Tg","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Servo time constant","valid_range":{"max":1,"min":"eps()"}},{"name":"VELM","data_type":"Float64","null_value":0,"validation_action":"error","comment":"gate velocity limit","valid_range":{"max":0.3,"min":"eps()"}},{"name":"gate_position_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Gate position limits"},{"name":"Tw","data_type":"Float64","null_value":0,"validation_action":"error","comment":"water time constant","valid_range":{"max":3,"min":"eps()"}},{"name":"At","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine gain","valid_range":{"max":1.5,"min":0.8}},{"name":"D_T","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Turbine Damping","valid_range":{"max":0.5,"min":0}},{"name":"q_nl","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"No-power flow","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the HydroTurbineGov model are:\n\tx_g1: filter_output,\n\tx_g2: desired gate, \n\tx_g3: gate opening, \n\tx_g4: turbine flow","internal_default":"[:x_g1, :x_g2, :x_g3, :x_g4]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"HYGOV has 4 states","internal_default":4},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"HYGOV has 4 differential states","internal_default":"[StateTypes.Differential, StateTypes.Differential, StateTypes.Differential, StateTypes.Differential]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Hydro Turbine-Governor.","struct_name":"HydroTurbineGov","supertype":"TurbineGov"},{"fields":[{"name":"K","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Governor Gain","valid_range":{"max":30,"min":5}},{"name":"T1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Input Filter Lag","valid_range":{"max":5,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Input Filter Lead","valid_range":{"max":10,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"validation_action":"error","comment":"Valve position Time Constant","valid_range":{"max":1,"min":"eps()"}},{"name":"U0","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Maximum Valve Opening Rate","valid_range":{"max":0.03,"min":0.01}},{"name":"U_c","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Maximum Valve closing rate","valid_range":{"max":0,"min":-0.3}},{"name":"valve_position_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Valve position limits in MW"},{"name":"T4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time Constant inlet steam","valid_range":{"max":1,"min":0}},{"name":"K1","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of high presure shaft power","valid_range":{"max":1,"min":-2}},{"name":"K2","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of low presure shaft power","valid_range":{"max":null,"min":0}},{"name":"T5","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for second boiler pass","valid_range":{"max":10,"min":0}},{"name":"K3","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of high presure shaft power second boiler pass","valid_range":{"max":0.5,"min":0}},{"name":"K4","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of low presure shaft power second boiler pass","valid_range":{"max":0.5,"min":0}},{"name":"T6","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for third boiler pass","valid_range":{"max":10,"min":0}},{"name":"K5","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of high presure shaft power third boiler pass","valid_range":{"max":0.35,"min":0}},{"name":"K6","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of low presure shaft power third boiler pass","valid_range":{"max":0.55,"min":0}},{"name":"T7","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Time constant for fourth boiler pass","valid_range":{"max":10,"min":0}},{"name":"K7","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of high presure shaft power fourth boiler pass","valid_range":{"max":0.3,"min":0}},{"name":"K8","data_type":"Float64","null_value":0,"validation_action":"warn","comment":"Fraction of low presure shaft power fourth boiler pass","valid_range":{"max":0.3,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the IEEETurbineGov model are:\n\tx_g1: First Governor integrator,\n\tx_g2: Governor output,\n\tx_g3: First Turbine integrator, \n\tx_g4: Second Turbine Integrator, \n\tx_g5: Third Turbine Integrator, \n\tx_g6: Fourth Turbine Integrator, ","internal_default":"[:x_g1, :x_g2, :x_g3, :x_g4, :x_g5, :x_g6]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"IEEEG1 has 6 states","internal_default":6},{"name":"states_types","data_type":"Vector{StateTypes}","comment":"IEEEG1 has 6 differential states","internal_default":"[StateTypes.Differential, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid, StateTypes.Hybrid]"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"IEEE Type 1 Speed-Governing Model","struct_name":"IEEETurbineGov1","supertype":"TurbineGov"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Droop parameter","valid_range":{"max":null,"min":0}},{"name":"Ts","data_type":"Float64","null_value":0,"comment":"Governor time constant","valid_range":{"max":null,"min":0}},{"name":"Tc","data_type":"Float64","null_value":0,"comment":"Servo time constant","valid_range":{"max":null,"min":0}},{"name":"T3","data_type":"Float64","null_value":0,"comment":"Transient gain time constant","valid_range":{"max":null,"min":0}},{"name":"T4","data_type":"Float64","null_value":0,"comment":"Power fraction time constant","valid_range":{"max":null,"min":0}},{"name":"T5","data_type":"Float64","null_value":0,"comment":"Reheat time constant","valid_range":{"max":null,"min":0}},{"name":"valve_position_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Valve position limits in MW"},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the TGTypeI model are:\n\tx_g1: Governor state,\n\tx_g2: Servo state,\n\tx_g3: Reheat state","internal_default":"[:x_g1, :x_g2, :x_g3]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"TGTypeI has 3 states","internal_default":3},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a Turbine Governor Type I.","struct_name":"TGTypeI","supertype":"TurbineGov"},{"fields":[{"name":"R","data_type":"Float64","null_value":0,"comment":"Droop parameter","valid_range":{"max":null,"min":0}},{"name":"T1","data_type":"Float64","null_value":0,"comment":"Transient gain time constant","valid_range":{"max":null,"min":0}},{"name":"T2","data_type":"Float64","null_value":0,"comment":"Power fraction time constant","valid_range":{"max":null,"min":0}},{"name":"τ_limits","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Power into the governor limits"},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the TGTypeI model are:\n\tx_g1: lead-lag state","internal_default":"[:xg]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"TGTypeII has 1 state","internal_default":1},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a Turbine Governor Type II.","struct_name":"TGTypeII","supertype":"TurbineGov"},{"fields":[{"name":"rated_voltage","data_type":"Float64","null_value":0,"comment":"rated voltage","valid_range":{"max":null,"min":0}},{"name":"rated_current","data_type":"Float64","null_value":0,"comment":"rated VA","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"AverageConverter has no states","internal_default":0}],"docstring":"Parameters of an average converter model","struct_name":"AverageConverter","supertype":"Converter"},{"fields":[{"name":"T_g","data_type":"Float64","null_value":0,"comment":"Converter time constant (s)","valid_range":{"max":null,"min":0}},{"name":"Rrpwr","data_type":"Float64","null_value":0,"comment":"Low Voltage Power Logic (LVPL) ramp rate limit (pu/s)","valid_range":{"max":null,"min":0}},{"name":"Brkpt","data_type":"Float64","null_value":0,"comment":"LVPL characteristic voltage 2 (pu)","valid_range":{"max":null,"min":0}},{"name":"Zerox","data_type":"Float64","null_value":0,"comment":"LVPL characteristic voltage 1 (pu)","valid_range":{"max":null,"min":0}},{"name":"Lvpl1","data_type":"Float64","null_value":0,"comment":"LVPL gain (pu)","valid_range":{"max":null,"min":0}},{"name":"Vo_lim","data_type":"Float64","null_value":0,"comment":"Voltage limit for high voltage reactive current management (pu)","valid_range":{"max":null,"min":0}},{"name":"Lv_pnts","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage points for low voltage active current management (pu) (Lvpnt0, Lvpnt1)"},{"name":"Io_lim","data_type":"Float64","null_value":0,"comment":"Current limit (pu) for high voltage reactive current management (specified as a negative value)","valid_range":{"max":0,"min":null}},{"name":"T_fltr","data_type":"Float64","null_value":0,"comment":"Voltage filter time constant for low voltage active current management (s)","valid_range":{"max":null,"min":0}},{"name":"K_hv","data_type":"Float64","null_value":0,"comment":"Overvoltage compensation gain used in the high voltage reactive current management","valid_range":{"max":null,"min":0}},{"name":"Iqr_lims","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limit on rate of change for reactive current (pu/s) (Iqr_min, Iqr_max)"},{"name":"Accel","data_type":"Float64","null_value":0,"comment":"Acceleration factor","valid_range":{"max":1,"min":0}},{"name":"Lvpl_sw","data_type":"Int","null_value":0,"comment":"Low voltage power logic (LVPL) switch. (0: LVPL not present, 1: LVPL present)","valid_range":{"max":1,"min":0}},{"name":"Q_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Initial machine reactive power from power flow","valid_range":{"max":null,"min":0}},{"name":"R_source","default":"0.0","data_type":"Float64","null_value":0,"comment":"Output resistor used for the Thevenin Equivalent","valid_range":{"max":null,"min":0}},{"name":"X_source","default":"1.0e5","data_type":"Float64","null_value":0,"comment":"Output resistor used for the Thevenin Equivalent","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\tIp: Converter lag for Ipcmd,\tIq: Converter lag for Iqcmd,\tVmeas: Voltage filter for low voltage active current management","internal_default":"[:Ip, :Iq, :Vmeas]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"RenewableEnergyConverterTypeA has 3 states","internal_default":3}],"docstring":"Parameters of a renewable energy generator/converter model, this model corresponds to REGCA1 in PSSE","struct_name":"RenewableEnergyConverterTypeA","supertype":"Converter"},{"fields":[{"name":"T_g","data_type":"Float64","null_value":0,"comment":"Converter time constant (s)","valid_range":{"max":null,"min":0}},{"name":"Rrpwr","data_type":"Float64","null_value":0,"comment":"Low Voltage Power Logic (LVPL) ramp rate limit (pu/s)","valid_range":{"max":null,"min":0}},{"name":"Brkpt","data_type":"Float64","null_value":0,"comment":"LVPL characteristic voltage 2 (pu)","valid_range":{"max":null,"min":0}},{"name":"Zerox","data_type":"Float64","null_value":0,"comment":"LVPL characteristic voltage 1 (pu)","valid_range":{"max":null,"min":0}},{"name":"Lvpl1","data_type":"Float64","null_value":0,"comment":"LVPL gain (pu)","valid_range":{"max":null,"min":0}},{"name":"Vo_lim","data_type":"Float64","null_value":0,"comment":"Voltage limit for high voltage reactive current management (pu)","valid_range":{"max":null,"min":0}},{"name":"Lv_pnts","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Voltage points for low voltage active current management (pu) (Lvpnt0, Lvpnt1)"},{"name":"Io_lim","data_type":"Float64","null_value":0,"comment":"Current limit (pu) for high voltage reactive current management (specified as a negative value)","valid_range":{"max":0,"min":null}},{"name":"T_fltr","data_type":"Float64","null_value":0,"comment":"Voltage filter time constant for low voltage active current management (s)","valid_range":{"max":null,"min":0}},{"name":"K_hv","data_type":"Float64","null_value":0,"comment":"Overvoltage compensation gain used in the high voltage reactive current management","valid_range":{"max":null,"min":0}},{"name":"Iqr_lims","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limit on rate of change for reactive current (pu/s) (Iqr_min, Iqr_max)"},{"name":"Accel","data_type":"Float64","null_value":0,"comment":"Acceleration factor","valid_range":{"max":1,"min":0}},{"name":"Lvpl_sw","data_type":"Int","null_value":0,"comment":"Low voltage power logic (LVPL) switch. (0: LVPL not present, 1: LVPL present)","valid_range":{"max":1,"min":0}},{"name":"Q_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Initial machine reactive power from power flow","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states are:\tIp: Converter lag for Ipcmd,\tIq: Converter lag for Iqcmd,\tVmeas: Voltage filter for low voltage active current management","internal_default":"[:Ip, :Iq, :Vmeas]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"RenewableEnergyVoltageConverterTypeA has 3 states","internal_default":3}],"docstring":"Parameters of a renewable energy generator/converter model, this model corresponds to REGCA1 in PSSE, but to be interfaced using a Voltage Source instead of a Current Source.","struct_name":"RenewableEnergyVoltageConverterTypeA","supertype":"Converter"},{"fields":[{"name":"voltage","data_type":"Float64","null_value":0,"comment":"rated VA","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"FixedDCSource has no states","internal_default":0},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a Fixed DC Source that returns a fixed DC voltage","struct_name":"FixedDCSource","supertype":"DCSource"},{"fields":[{"name":"rated_voltage","data_type":"Float64","null_value":0,"comment":"rated voltage","valid_range":{"max":null,"min":0}},{"name":"rated_current","data_type":"Float64","null_value":0,"comment":"rated current","valid_range":{"max":null,"min":0}},{"name":"battery_voltage","data_type":"Float64","null_value":0,"comment":"battery voltage","valid_range":{"max":null,"min":0}},{"name":"battery_resistance","data_type":"Float64","null_value":0,"comment":"battery_resistance","valid_range":{"max":null,"min":0}},{"name":"dc_dc_inductor","data_type":"Float64","null_value":0,"comment":"DC/DC inductance","valid_range":{"max":null,"min":0}},{"name":"dc_link_capacitance","data_type":"Float64","null_value":0,"comment":"DC-link capacitor","valid_range":{"max":null,"min":0}},{"name":"fs","data_type":"Float64","null_value":0,"comment":"DC/DC converter switching frequency","valid_range":{"max":null,"min":0}},{"name":"kpv","data_type":"Float64","null_value":0,"comment":"voltage controller proportional gain","valid_range":{"max":null,"min":0}},{"name":"kiv","data_type":"Float64","null_value":0,"comment":"voltage controller integral gain","valid_range":{"max":null,"min":0}},{"name":"kpi","data_type":"Float64","null_value":0,"comment":"current controller proportional gain","valid_range":{"max":null,"min":0}},{"name":"kii","data_type":"Float64","null_value":0,"comment":"current controller integral gain","valid_range":{"max":null,"min":0}},{"name":"Vdc_ref","default":"1.1","data_type":"Float64","null_value":0,"comment":"Reference DC-Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ZeroOrderBESS model are:\n\tv_dc: DC-link votlage,\n\ti_b: Battery current,\n\t ν: integrator state of the voltage controller,\n\t ζ: integrator state of the PI current controller","internal_default":"[:v_dc, :i_b, :ν, :ζ]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ZeroOrderBESS has 4 states","internal_default":4}],"docstring":"Parameters for the DC-side with a Battery Energy Storage System from paper at https://arxiv.org/abs/2007.11776","struct_name":"ZeroOrderBESS","supertype":"DCSource"},{"fields":[{"name":"lf","data_type":"Float64","null_value":0,"comment":"Series inductance in p.u. of converter filter","valid_range":{"max":null,"min":0}},{"name":"rf","data_type":"Float64","null_value":0,"comment":"Series resistance in p.u. of converter filter","valid_range":{"max":null,"min":0}},{"name":"cf","data_type":"Float64","null_value":0,"comment":"Shunt capacitance in p.u. of converter filter","valid_range":{"max":null,"min":0}},{"name":"lg","data_type":"Float64","null_value":0,"comment":"Series inductance in p.u. of converter filter to the grid","valid_range":{"max":null,"min":0}},{"name":"rg","data_type":"Float64","null_value":0,"comment":"Series resistance in p.u. of converter filter to the grid","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the LCLFilter model are:\n\tir_cnv: Real current out of the converter,\n\tii_cnv: Imaginary current out of the converter,\n\tvr_filter: Real voltage at the filter's capacitor,\n\tvi_filter: Imaginary voltage at the filter's capacitor,\n\tir_filter: Real current out of the filter,\n\tii_filter: Imaginary current out of the filter","internal_default":"[:ir_cnv, :ii_cnv, :vr_filter, :vi_filter, :ir_filter, :ii_filter]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"LCLFilter has 6 states","internal_default":6}],"docstring":"Parameters of a LCL filter outside the converter, the states are in the grid's reference frame","struct_name":"LCLFilter","supertype":"Filter"},{"fields":[{"name":"lf","data_type":"Float64","null_value":0,"comment":"filter inductance","valid_range":{"max":null,"min":0}},{"name":"rf","data_type":"Float64","null_value":0,"comment":"filter resistance","valid_range":{"max":null,"min":0}},{"name":"cf","data_type":"Float64","null_value":0,"comment":"filter capacitance","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the LCFilter model are:\n\tir_filter: Real current out of the filter,\n\tii_filter: Imaginary current out of the filter","internal_default":"[:ir_filter, :ii_filter]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"LCFilter has two states","internal_default":2}],"docstring":"Parameters of a LCL filter outside the converter","struct_name":"LCFilter","supertype":"Filter"},{"fields":[{"name":"rf","data_type":"Float64","null_value":0,"comment":"Series resistance in p.u. of converter filter to the grid","valid_range":{"max":null,"min":0}},{"name":"lf","data_type":"Float64","null_value":0,"comment":"Series inductance in p.u. of converter filter to the grid","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"RLFilter has zero states","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"RLFilter has zero states","internal_default":0}],"docstring":"Parameters of RL series filter in algebraic representation","struct_name":"RLFilter","supertype":"Filter"},{"fields":[{"name":"ω_lp","data_type":"Float64","null_value":0,"comment":"PLL low-pass filter frequency (rad/sec)","valid_range":{"max":null,"min":0}},{"name":"kp_pll","data_type":"Float64","null_value":0,"comment":"PLL proportional gain","valid_range":{"max":null,"min":0}},{"name":"ki_pll","data_type":"Float64","null_value":0,"comment":"PLL integral gain","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the KauraPLL model are:\n\tvd_pll: d-axis of the measured voltage in the PLL synchronous reference frame (SRF),\n\tvq_pll: q-axis of the measured voltage in the PLL SRF,\n\tε_pll: Integrator state of the PI controller,\n\tθ_pll: Phase angle displacement in the PLL SRF","internal_default":"[:vd_pll, :vq_pll, :ε_pll, :θ_pll]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"KauraPLL has 4 states","internal_default":4}],"docstring":"Parameters of a Phase-Locked Loop (PLL) based on Kaura, Vikram, and Vladimir Blasko.\n\"Operation of a phase locked loop system under distorted utility conditions.\"\nIEEE Transactions on Industry applications 33.1 (1997): 58-63.","struct_name":"KauraPLL","supertype":"FrequencyEstimator"},{"fields":[{"name":"ω_lp","data_type":"Float64","null_value":0,"comment":"PLL low-pass filter frequency (rad/sec)","valid_range":{"max":null,"min":0}},{"name":"kp_pll","data_type":"Float64","null_value":0,"comment":"PLL proportional gain","valid_range":{"max":null,"min":0}},{"name":"ki_pll","data_type":"Float64","null_value":0,"comment":"PLL integral gain","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ReducedOrderPLL model are:\n\tvq_pll: q-axis of the measured voltage in the PLL synchronous reference frame (SRF),\n\tε_pll: Integrator state of the PI controller,\n\tθ_pll: Phase angle displacement in the PLL SRF","internal_default":"[:vq_pll, :ε_pll, :θ_pll]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ReducedOrderPLL has 3 states","internal_default":3}],"docstring":"Parameters of a Phase-Locked Loop (PLL) based on Purba, Dhople, Jafarpour, Bullo and Johnson.\n\"Reduced-order Structure-preserving Model for Parallel-connected Three-phase Grid-tied Inverters.\"\n2017 IEEE 18th Workshop on Control and Modeling for Power Electronics (COMPEL): 1-7.","struct_name":"ReducedOrderPLL","supertype":"FrequencyEstimator"},{"fields":[{"name":"frequency","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference used"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"FixedFrequency has no states","internal_default":"Vector{Symbol}()"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"FixedFrequency has no states","internal_default":0}],"docstring":"Parameters of a Fixed Frequency Estimator (i.e. no PLL).","struct_name":"FixedFrequency","supertype":"FrequencyEstimator"},{"fields":[{"name":"Ta","data_type":"Float64","null_value":0,"comment":"VSM inertia constant","valid_range":{"max":null,"min":0}},{"name":"kd","data_type":"Float64","null_value":0,"comment":"VSM damping constant","valid_range":{"max":null,"min":0}},{"name":"kω","data_type":"Float64","null_value":0,"comment":"frequency droop gain","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the VirtualInertia model are:\n\tθ_oc: Phase angle displacement of the virtual synchronous generator model\n\tω_oc: Speed of the rotating reference frame of the virtual synchronous generator model","internal_default":"[:θ_oc, :ω_oc]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"VirtualInertia has two states","internal_default":2}],"docstring":"Parameters of a Virtual Inertia with SRF using VSM for active power controller","struct_name":"VirtualInertia","supertype":"ActivePowerControl"},{"fields":[{"name":"Rp","data_type":"Float64","null_value":0,"comment":"Droop Gain","valid_range":{"max":null,"min":0}},{"name":"ωz","data_type":"Float64","null_value":0,"comment":"filter frequency cutoff","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ActivePowerDroop model are:\n\tθ_oc: Phase angle displacement of the inverter model,\n\tp_oc: Measured active power of the inverter model","internal_default":"[:θ_oc, :p_oc]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ActivePowerDroop has two states","internal_default":2}],"docstring":"Parameters of an Active Power droop controller","struct_name":"ActivePowerDroop","supertype":"ActivePowerControl"},{"fields":[{"name":"Kp_p","data_type":"Float64","null_value":0,"comment":"Proportional Gain","valid_range":{"max":null,"min":0}},{"name":"Ki_p","data_type":"Float64","null_value":0,"comment":"Integral Gain","valid_range":{"max":null,"min":0}},{"name":"ωz","data_type":"Float64","null_value":0,"comment":"filter frequency cutoff","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ActivePowerPI model are:\n\tσp_oc: Integrator state of the PI Controller,\n\tp_oc: Measured active power of the inverter model","internal_default":"[:σp_oc, :p_oc]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ActivePowerPI has two states","internal_default":2}],"docstring":"Parameters of a Proportional-Integral Active Power controller for a specified power reference","struct_name":"ActivePowerPI","supertype":"ActivePowerControl"},{"fields":[{"name":"k1","data_type":"Float64","null_value":0,"comment":"VOC Synchronization Gain","valid_range":{"max":null,"min":0}},{"name":"ψ","data_type":"Float64","null_value":0,"comment":"Rotation angle of the controller","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ActiveVirtualOscillator model are:\n\tθ_oc: Phase angle displacement of the inverter model","internal_default":"[:θ_oc]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ActiveVirtualOscillator has one state","internal_default":1}],"docstring":"Parameters of an Active Virtual Oscillator controller. Model is based from the paper Model Reduction for Inverters with Current Limiting and Dispatchable Virtual Oscillator Control by O. Ajala et al.","struct_name":"ActiveVirtualOscillator","supertype":"ActivePowerControl"},{"fields":[{"name":"bus_control","data_type":"Int","null_value":0,"comment":"Bus Number for voltage control; ","valid_range":{"max":null,"min":0}},{"name":"from_branch_control","data_type":"Int","null_value":0,"comment":"Monitored branch FROM bus number for line drop compensation (if 0 generator power will be used)","valid_range":{"max":null,"min":0}},{"name":"to_branch_control","data_type":"Int","null_value":0,"comment":"Monitored branch TO bus number for line drop compensation (if 0 generator power will be used)","valid_range":{"max":null,"min":0}},{"name":"branch_id_control","data_type":"String","null_value":0,"comment":"Branch circuit id for line drop compensation (as a string). If 0 generator power will be used"},{"name":"Freq_Flag","data_type":"Int","null_value":0,"comment":"Frequency Flag for REPCA1: 0: disable, 1:enable","valid_range":{"max":1,"min":0}},{"name":"K_pg","data_type":"Float64","null_value":0,"comment":"Active power PI control proportional gain","valid_range":{"max":null,"min":0}},{"name":"K_ig","data_type":"Float64","null_value":0,"comment":"Active power PI control integral gain","valid_range":{"max":null,"min":0}},{"name":"T_p","data_type":"Float64","null_value":0,"comment":"Real power measurement filter time constant (s)","valid_range":{"max":null,"min":0}},{"name":"fdbd_pnts","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Frequency error dead band thresholds `(fdbd1, fdbd2)`"},{"name":"fe_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on frequency error `(fe_min, fe_max)`"},{"name":"P_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on power reference `(P_min, P_max)`"},{"name":"T_g","data_type":"Float64","null_value":0,"comment":"Power Controller lag time constant","valid_range":{"max":null,"min":0}},{"name":"D_dn","data_type":"Float64","null_value":0,"comment":"Droop for over-frequency conditions","valid_range":{"max":0,"min":null}},{"name":"D_up","data_type":"Float64","null_value":0,"comment":"Droop for under-frequency conditions","valid_range":{"max":null,"min":0}},{"name":"dP_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on power reference ramp rates`(dP_min, dP_max)`"},{"name":"P_lim_inner","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on power reference for REECB`(P_min_inner, P_max_inner)`"},{"name":"T_pord","data_type":"Float64","null_value":0,"comment":"Power filter time constant REECB time constant","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ActiveRenewableControllerAB model depends on the Flag","internal_default":"PowerSystems.get_activeRETypeAB_states(Freq_Flag)[1]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The states of the ActiveRenewableControllerAB model depends on the Flag","internal_default":"PowerSystems.get_activeRETypeAB_states(Freq_Flag)[2]"}],"docstring":"Parameters of Active Power Controller including REPCA1 and REECB1","struct_name":"ActiveRenewableControllerAB","supertype":"ActivePowerControl"},{"fields":[{"name":"bus_control","data_type":"Int","null_value":0,"comment":"Bus Number for voltage control; ","valid_range":{"max":null,"min":0}},{"name":"from_branch_control","data_type":"Int","null_value":0,"comment":"Monitored branch FROM bus number for line drop compensation (if 0 generator power will be used)","valid_range":{"max":null,"min":0}},{"name":"to_branch_control","data_type":"Int","null_value":0,"comment":"Monitored branch TO bus number for line drop compensation (if 0 generator power will be used)","valid_range":{"max":null,"min":0}},{"name":"branch_id_control","data_type":"String","null_value":0,"comment":"Branch circuit id for line drop compensation (as a string). If 0 generator power will be used"},{"name":"VC_Flag","data_type":"Int","null_value":0,"comment":"Voltage Compensator Flag for REPCA1","valid_range":{"max":1,"min":0}},{"name":"Ref_Flag","data_type":"Int","null_value":0,"comment":"Flag for Reactive Power Control for REPCA1. 0: Q-control, 1: V-control","valid_range":{"max":1,"min":0}},{"name":"PF_Flag","data_type":"Int","null_value":0,"comment":"Flag for Power Factor Control for Outer Control of REECB1. 0: Q-control, 1: Power Factor Control","valid_range":{"max":1,"min":0}},{"name":"V_Flag","data_type":"Int","null_value":0,"comment":"Flag for Voltage Control for Outer Control of REECB1. 0: Voltage Control, 1: Q-Control","valid_range":{"max":1,"min":0}},{"name":"T_fltr","data_type":"Float64","null_value":0,"comment":"Voltage or Q-power of REPCA Filter Time Constant","valid_range":{"max":null,"min":0}},{"name":"K_p","data_type":"Float64","null_value":0,"comment":"Reactive power PI control proportional gain","valid_range":{"max":null,"min":0}},{"name":"K_i","data_type":"Float64","null_value":0,"comment":"Reactive power PI control integral gain","valid_range":{"max":null,"min":0}},{"name":"T_ft","data_type":"Float64","null_value":0,"comment":"Reactive power lead time constant (s)","valid_range":{"max":null,"min":0}},{"name":"T_fv","data_type":"Float64","null_value":0,"comment":"Reactive power lag time constant (s)","valid_range":{"max":null,"min":0}},{"name":"V_frz","data_type":"Float64","null_value":0,"comment":"Voltage below which state ξq_oc (integrator state) is freeze","valid_range":{"max":null,"min":0}},{"name":"R_c","data_type":"Float64","null_value":0,"comment":"Line drop compensation resistance (used when VC_Flag = 1)","valid_range":{"max":null,"min":0}},{"name":"X_c","data_type":"Float64","null_value":0,"comment":"Line drop compensation reactance (used when VC_Flag = 1)","valid_range":{"max":null,"min":0}},{"name":"K_c","data_type":"Float64","null_value":0,"comment":"Reactive current compensation gain (pu) (used when VC_Flag = 0)","valid_range":{"max":null,"min":0}},{"name":"e_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on Voltage or Q-power deadband output `(e_min, e_max)`"},{"name":"dbd_pnts","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Voltage or Q-power error dead band thresholds `(dbd1, dbd2)`"},{"name":"Q_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on reactive power V/Q control in REPCA `(Q_min, Q_max)`"},{"name":"T_p","data_type":"Float64","null_value":0,"comment":"Active power lag time constant in REECB (s). Used only when PF_Flag = 1","valid_range":{"max":null,"min":0}},{"name":"Q_lim_inner","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on reactive power input in REECB `(Q_min_inner, Q_max_inner)`. Only used when V_Flag = 1"},{"name":"V_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Upper/Lower limit on reactive power PI controller in REECB `(V_min, V_max)`. Only used when V_Flag = 1"},{"name":"K_qp","data_type":"Float64","null_value":0,"comment":"Reactive power regulator proportional gain (used when V_Flag = 1)","valid_range":{"max":null,"min":0}},{"name":"K_qi","data_type":"Float64","null_value":0,"comment":"Reactive power regulator integral gain (used when V_Flag = 1)","valid_range":{"max":null,"min":0}},{"name":"Q_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Power Set-point","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ReactiveRenewableControllerAB model depends on the Flag","internal_default":"PowerSystems.get_reactiveRETypeAB_states(Ref_Flag, PF_Flag, V_Flag)[1]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The states of the ReactiveRenewableControllerAB model depends on the Flag","internal_default":"PowerSystems.get_reactiveRETypeAB_states(Ref_Flag, PF_Flag, V_Flag)[2]"}],"docstring":"Parameters of Reactive Power Controller including REPCA1 and REECB1","struct_name":"ReactiveRenewableControllerAB","supertype":"ReactivePowerControl"},{"fields":[{"name":"kq","data_type":"Float64","null_value":0,"comment":"frequency droop gain","valid_range":{"max":null,"min":0}},{"name":"ωf","data_type":"Float64","null_value":0,"comment":"filter frequency cutoff","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ReactivePowerDroop model are:\n\tq_oc: Filtered reactive output power","internal_default":"[:q_oc]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ReactivePowerDroop has 1 state","internal_default":1}],"docstring":"Parameters of a Reactive Power droop controller","struct_name":"ReactivePowerDroop","supertype":"ReactivePowerControl"},{"fields":[{"name":"Kp_q","data_type":"Float64","null_value":0,"comment":"Proportional Gain","valid_range":{"max":null,"min":0}},{"name":"Ki_q","data_type":"Float64","null_value":0,"comment":"Integral Gain","valid_range":{"max":null,"min":0}},{"name":"ωf","data_type":"Float64","null_value":0,"comment":"filter frequency cutoff","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"Q_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reactive Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ReactivePowerPI model are:\n\tσq_oc: Integrator state of the PI Controller,\n\tq_oc: Measured reactive power of the inverter model","internal_default":"[:σq_oc, :q_oc]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ReactivePowerPI has two states","internal_default":2}],"docstring":"Parameters of a Proportional-Integral Reactive Power controller for a specified power reference","struct_name":"ReactivePowerPI","supertype":"ReactivePowerControl"},{"fields":[{"name":"k2","data_type":"Float64","null_value":0,"comment":"VOC voltage-amplitude control gain","valid_range":{"max":null,"min":0}},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Voltage Set-point","valid_range":{"max":null,"min":0}},{"name":"Q_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference Reactive Power Set-point","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the ReactiveVirtualOscilator model are:\n\tE_oc: voltage reference state for inner control in the d-axis","internal_default":"[:E_oc]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"ReactiveVirtualOscillator has 1 state","internal_default":1}],"docstring":"Parameters of a Reactive Virtual Oscillator controller. Model is based from the paper Model Reduction for Inverters with Current Limiting and Dispatchable Virtual Oscillator Control by O. Ajala et al.","struct_name":"ReactiveVirtualOscillator","supertype":"ReactivePowerControl"},{"fields":[{"name":"kpv","data_type":"Float64","null_value":0,"comment":"voltage controller proportional gain","valid_range":{"max":null,"min":0}},{"name":"kiv","data_type":"Float64","null_value":0,"comment":"voltage controller integral gain","valid_range":{"max":null,"min":0}},{"name":"kffv","data_type":"Float64","null_value":0,"comment":"Binary variable to enable feed-forward gain of voltage.","valid_range":{"max":null,"min":0}},{"name":"rv","data_type":"Float64","null_value":0,"comment":"virtual resistance","valid_range":{"max":null,"min":0}},{"name":"lv","data_type":"Float64","null_value":0,"comment":"virtual inductance","valid_range":{"max":null,"min":0}},{"name":"kpc","data_type":"Float64","null_value":0,"comment":"current controller proportional gain","valid_range":{"max":null,"min":0}},{"name":"kic","data_type":"Float64","null_value":0,"comment":"current controller integral gain","valid_range":{"max":null,"min":0}},{"name":"kffi","data_type":"Float64","null_value":0,"comment":"Binary variable to enable feed-forward gain of current","valid_range":{"max":null,"min":0}},{"name":"ωad","data_type":"Float64","null_value":0,"comment":"active damping filter cutoff frequency (rad/sec)","valid_range":{"max":null,"min":0}},{"name":"kad","data_type":"Float64","null_value":0,"comment":"active damping gain","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the VoltageModeControl model are:\n\tξd_ic: d-axis integrator state of the PI voltage controller,\n\tξq_ic: q-axis integrator state of the PI voltage controller,\n\tγd_ic: d-axis integrator state of the PI current controller,\n\tγq_ic: q-axis integrator state of the PI current controller,\n\tϕd_ic: d-axis low-pass filter of active damping,\n\tϕq_ic: q-axis low-pass filter of active damping","internal_default":"[:ξd_ic, :ξq_ic, :γd_ic, :γq_ic, :ϕd_ic, :ϕq_ic]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"VoltageModeControl has 6 states","internal_default":6}],"docstring":"Parameters of an inner loop current control PID using virtual impedance based on D'Arco, Suul and Fosso.\n\"A Virtual Synchronous Machine implementation for distributed control of power converters in SmartGrids.\"\nElectric Power Systems Research 122 (2015) 180–197.","struct_name":"VoltageModeControl","supertype":"InnerControl"},{"fields":[{"name":"kpc","data_type":"Float64","null_value":0,"comment":"Current controller proportional gain","valid_range":{"max":null,"min":0}},{"name":"kic","data_type":"Float64","null_value":0,"comment":"Current controller integral gain","valid_range":{"max":null,"min":0}},{"name":"kffv","data_type":"Float64","null_value":0,"comment":"Gain to enable feed-forward gain of voltage.","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the CurrentModeControl model are:\n\tγd_ic: d-axis integrator state of the PI current controller,\n\tγq_ic: q-axis integrator state of the PI current controller","internal_default":"[:γd_ic, :γq_ic]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"CurrentControl has 2 states","internal_default":2}],"docstring":"Parameters of an inner loop PI current control using based on Purba, Dhople, Jafarpour, Bullo and Johnson.\n\"Reduced-order Structure-preserving Model for Parallel-connected Three-phase Grid-tied Inverters.\"\n2017 IEEE 18th Workshop on Control and Modeling for Power Electronics (COMPEL): 1-7.","struct_name":"CurrentModeControl","supertype":"InnerControl"},{"fields":[{"name":"Q_Flag","data_type":"Int","null_value":0,"comment":"Q Flag used for I_qinj","valid_range":{"max":1,"min":0}},{"name":"PQ_Flag","data_type":"Int","null_value":0,"comment":"PQ Flag used for the Current Limit Logic","valid_range":{"max":1,"min":0}},{"name":"Vdip_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for Voltage Dip Logic `(Vdip, Vup)`"},{"name":"T_rv","data_type":"Float64","null_value":0,"comment":"Voltage Filter Time Constant","valid_range":{"max":null,"min":0}},{"name":"dbd_pnts","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Voltage error deadband thresholds `(dbd1, dbd2)`"},{"name":"K_qv","data_type":"Float64","null_value":0,"comment":"Reactive current injection gain during over and undervoltage conditions","valid_range":{"max":null,"min":0}},{"name":"Iqinj_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limits for Iqinj `(I_qh1, I_ql1)`"},{"name":"V_ref0","data_type":"Float64","null_value":0,"comment":"User defined reference. If 0, PSID initializes to initial terminal voltage","valid_range":{"max":null,"min":0}},{"name":"K_vp","data_type":"Float64","null_value":0,"comment":"Voltage regulator proportional gain (used when QFlag = 1)","valid_range":{"max":null,"min":0}},{"name":"K_vi","data_type":"Float64","null_value":0,"comment":"Voltage regulator integral gain (used when QFlag = 1)","valid_range":{"max":null,"min":0}},{"name":"T_iq","data_type":"Float64","null_value":0,"comment":"Time constant for low-pass filter for state q_V when QFlag = 0","valid_range":{"max":null,"min":0}},{"name":"I_max","data_type":"Float64","null_value":0,"comment":"Maximum limit on total converter current","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of the RECurrentControlB depends on the Flags","internal_default":"PowerSystems.get_REControlB_states(Q_Flag)"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The states of the RECurrentControlB depends on the Flags","internal_default":"2"}],"docstring":"Parameters of the Inner Control part of the REECB model in PSS/E","struct_name":"RECurrentControlB","supertype":"InnerControl"},{"fields":[{"name":"I_max","data_type":"Float64","null_value":0,"comment":"Maximum limit on current controller input current (device base)","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"}],"docstring":"Parameters of Magnitude (Circular) Current Controller Limiter","struct_name":"MagnitudeCurrentLimiter","supertype":"InverterLimiter"},{"fields":[{"name":"Id_max","data_type":"Float64","null_value":0,"comment":"Maximum limit on d-axis current controller input current (device base)","valid_range":{"max":null,"min":0}},{"name":"Iq_max","data_type":"Float64","null_value":0,"comment":"Maximum limit on d-axis current controller input current (device base)","valid_range":{"max":null,"min":0}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"}],"docstring":"Parameters of Instantaneous (Square) Current Controller Limiter","struct_name":"InstantaneousCurrentLimiter","supertype":"InverterLimiter"},{"fields":[{"name":"I_max","data_type":"Float64","null_value":0,"comment":"Maximum limit on current controller input current (device base)","valid_range":{"max":null,"min":0}},{"name":"ϕ_I","data_type":"Float64","null_value":0,"comment":"Pre-defined angle (measured against the d-axis) for Iref once limit is hit","valid_range":{"max":1.571,"min":-1.571}},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"}],"docstring":"Parameters of Priority-Based Current Controller Limiter","struct_name":"PriorityCurrentLimiter","supertype":"InverterLimiter"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"Pf_Flag","data_type":"Int","null_value":0,"comment":"Flag for Power Factor Control","valid_range":{"max":1,"min":0}},{"name":"Freq_Flag","data_type":"Int","null_value":0,"comment":"Flag to enable/disable frequency control","valid_range":{"max":1,"min":0}},{"name":"PQ_Flag","data_type":"Int","null_value":0,"comment":"Flag used to enforce maximum current","valid_range":{"max":1,"min":0}},{"name":"Gen_Flag","data_type":"Int","null_value":0,"comment":"Flag to specify generator or storage","valid_range":{"max":1,"min":0}},{"name":"Vtrip_Flag","data_type":"Int","null_value":0,"comment":"Flag to enable/disable voltage trip logic","valid_range":{"max":1,"min":0}},{"name":"Ftrip_Flag","data_type":"Int","null_value":0,"comment":"Flag to enable/disable frequency trip logic","valid_range":{"max":1,"min":0}},{"name":"T_rv","data_type":"Float64","null_value":0,"comment":"Voltage measurement transducer time constant","valid_range":{"max":null,"min":0}},{"name":"Trf","data_type":"Float64","null_value":0,"comment":"Frequency measurement transducer time constant","valid_range":{"max":null,"min":0}},{"name":"dbd_pnts","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Voltage deadband thresholds `(dbd1, dbd2)`"},{"name":"K_qv","data_type":"Float64","null_value":0,"comment":"Proportional voltage control gain (pu)","valid_range":{"max":null,"min":0}},{"name":"Tp","data_type":"Float64","null_value":0,"comment":"Power measurement transducer time constant","valid_range":{"max":null,"min":0}},{"name":"T_iq","data_type":"Float64","null_value":0,"comment":"Time constant for low-pass filter for state q_V when QFlag = 0","valid_range":{"max":null,"min":0}},{"name":"D_dn","data_type":"Float64","null_value":0,"comment":"Reciprocal of droop for over-frequency conditions (>0) (pu)","valid_range":{"max":null,"min":0}},{"name":"D_up","data_type":"Float64","null_value":0,"comment":"Reciprocal of droop for under-frequency conditions <=0) (pu)","valid_range":{"max":null,"min":0}},{"name":"fdbd_pnts","data_type":"Tuple{Float64, Float64}","null_value":"(0.0, 0.0)","comment":"Frequency control deadband thresholds `(fdbd1, fdbd2)`"},{"name":"fe_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Frequency error limits (femin, femax)"},{"name":"P_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Power limits (Pmin, Pmax)"},{"name":"dP_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Power reference ramp rate limits (dPmin, dPmax)"},{"name":"Tpord","data_type":"Float64","null_value":0,"comment":"Power filter time constant","valid_range":{"max":null,"min":0}},{"name":"Kpg","data_type":"Float64","null_value":0,"comment":"PI controller proportional gain (pu)","valid_range":{"max":null,"min":0}},{"name":"Kig","data_type":"Float64","null_value":0,"comment":"PI controller integral gain (pu)","valid_range":{"max":null,"min":0}},{"name":"I_max","data_type":"Float64","null_value":0,"comment":"Maximum limit on total converter current (pu)","valid_range":{"max":null,"min":0}},{"name":"vl_pnts","data_type":"Vector{Tuple{Float64,Float64}}","null_value":"[(0.0, 0.0), (0.0, 0.0)]","comment":"Low voltage cutout points `[(tv10, vl0), (tv11, vl1)]`"},{"name":"vh_pnts","data_type":"Vector{Tuple{Float64,Float64}}","null_value":"[(0.0, 0.0), (0.0, 0.0)]","comment":"High voltage cutout points `[(tvh0, vh0), (tvh1, vh1)]`"},{"name":"Vrfrac","data_type":"Float64","null_value":0,"comment":"Fraction of device that recovers after voltage comes back to within vl1 < V < vh1 (0 <= Vrfrac <= 1)","valid_range":{"max":1,"min":0}},{"name":"fl","data_type":"Float64","null_value":0,"comment":"Inverter frequency break-point for low frequency cut-out (Hz)","valid_range":{"max":null,"min":0}},{"name":"fh","data_type":"Float64","null_value":0,"comment":"Inverter frequency break-point for high frequency cut-out (Hz)","valid_range":{"max":null,"min":0}},{"name":"tfl","data_type":"Float64","null_value":0,"comment":"Low frequency cut-out timer corresponding to frequency fl (s)","valid_range":{"max":null,"min":0}},{"name":"tfh","data_type":"Float64","null_value":0,"comment":"High frequency cut-out timer corresponding to frequency fh (s)","valid_range":{"max":null,"min":0}},{"name":"Tg","data_type":"Float64","null_value":0,"comment":"Current control time constant (to represent behavior of inner control loops) (> 0) (s)","valid_range":{"max":null,"min":0}},{"name":"rrpwr","data_type":"Float64","null_value":0,"comment":"Ramp rate for real power increase following a fault (pu/s)","valid_range":{"max":null,"min":0}},{"name":"Tv","data_type":"Float64","null_value":0,"comment":"Time constant on the output of the multiplier (s)","valid_range":{"max":null,"min":0}},{"name":"Vpr","data_type":"Float64","null_value":0,"comment":"Voltage below which frequency tripping is disabled (pu)","valid_range":{"max":null,"min":0}},{"name":"Iq_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Reactive current injection limits (Iqll, Iqhl)"},{"name":"V_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"User defined voltage reference. If 0, PSID initializes to initial terminal voltage","valid_range":{"max":null,"min":0}},{"name":"Pfa_ref","default":"0.0","data_type":"Float64","null_value":0,"comment":"Reference power factor","valid_range":{"max":null,"min":0}},{"name":"ω_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference frequency","valid_range":{"max":null,"min":0}},{"name":"Q_ref","default":"0.0","data_type":"Float64","null_value":0,"comment":"Reference reactive power, in pu","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference active power, in pu","valid_range":{"max":null,"min":0}},{"name":"base_power","default":"100.0","data_type":"Float64","null_value":0,"comment":"Base power"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of AggregateDistributedGenerationA depends on the Flags","internal_default":"PowerSystems.get_AggregateDistributedGenerationA_states(Freq_Flag)[1]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The states of AggregateDistributedGenerationA depends on the Flags","internal_default":"PowerSystems.get_AggregateDistributedGenerationA_states(Freq_Flag)[2]"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of the DERA1 model in PSS/E","struct_name":"AggregateDistributedGenerationA","supertype":"DynamicInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"available","data_type":"Bool","null_value":"false"},{"name":"bus","data_type":"ACBus","null_value":"ACBus(nothing)"},{"name":"active_power","data_type":"Float64","null_value":"0.0"},{"name":"reactive_power","data_type":"Float64","null_value":"0.0"},{"name":"R_th","data_type":"Float64","null_value":0,"comment":"Source Thevenin resistance","valid_range":{"max":null,"min":0}},{"name":"X_th","data_type":"Float64","null_value":0,"comment":"Source Thevenin reactance","valid_range":{"max":null,"min":0}},{"name":"internal_voltage","default":"1.0","data_type":"Float64","null_value":0,"comment":"Internal Voltage","valid_range":{"max":null,"min":0}},{"name":"internal_angle","default":"0.0","data_type":"Float64","null_value":0,"comment":"Internal Angle"},{"name":"dynamic_injector","default":"nothing","data_type":"Union{Nothing, DynamicInjection}","exclude_setter":true,"null_value":"nothing","comment":"corresponding dynamic injection device"},{"name":"services","default":"Device[]","data_type":"Vector{Service}","null_value":"Device[]","comment":"Services that this device contributes to"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"This struct acts as an infinity bus.","struct_name":"Source","supertype":"StaticInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"R_th","data_type":"Float64","null_value":0,"comment":"Source Thevenin resistance","valid_range":{"max":null,"min":0}},{"name":"X_th","data_type":"Float64","null_value":0,"comment":"Source Thevenin reactance","valid_range":{"max":null,"min":0}},{"name":"internal_voltage_bias","default":"0.0","data_type":"Float64","null_value":0,"comment":"a0 term of the Fourier Series for the voltage"},{"name":"internal_voltage_frequencies","default":"[0.0]","data_type":"Vector{Float64}","null_value":[0],"comment":"Frequencies in radians/s"},{"name":"internal_voltage_coefficients","default":"[(0.0, 0.0)]","data_type":"Vector{Tuple{Float64,Float64}}","null_value":"[(0.0, 0.0)]","comment":"Coefficients for terms n > 1. First component corresponds to sin and second component to cos"},{"name":"internal_angle_bias","default":"0.0","data_type":"Float64","null_value":0,"comment":"a0 term of the Fourier Series for the angle"},{"name":"internal_angle_frequencies","default":"[0.0]","data_type":"Vector{Float64}","null_value":[0],"comment":"Frequencies in radians/s"},{"name":"internal_angle_coefficients","default":"[(0.0, 0.0)]","data_type":"Vector{Tuple{Float64,Float64}}","null_value":"[(0.0, 0.0)]","comment":"Coefficients for terms n > 1. First component corresponds to sin and second component to cos"},{"name":"base_power","default":"100.0","data_type":"Float64","null_value":0,"comment":"Base power"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"State for time, voltage and angle","internal_default":"[:Vt, :θt]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"null_value":2,"internal_default":2},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"This struct acts as an infinity bus with time varying phasor values magnitude and angle V(t) \theta(t). Time varying functions are represented using fourier series","struct_name":"PeriodicVariableSource","supertype":"DynamicInjection"},{"fields":[{"name":"name","data_type":"String","exclude_setter":true,"null_value":"init"},{"name":"Qref_Flag","data_type":"Int","null_value":1,"comment":"Reactive Power Control Mode. 1 VoltVar Control, 2 Constant Q Control, 3 Constant PF Control","valid_range":{"max":3,"min":1}},{"name":"PQ_Flag","data_type":"Int","null_value":0,"comment":"Active and reactive power priority mode. 0 for Q priority, 1 for P priority","valid_range":{"max":1,"min":0}},{"name":"Gen_Flag","data_type":"Int","null_value":0,"comment":"Define generator or storage system. 0 unit is a storage device, 1 unit is a generator","valid_range":{"max":1,"min":0}},{"name":"PerOp_Flag","data_type":"Int","null_value":0,"comment":"Defines operation of permisible region in VRT characteristic. 0 for cease, 1 for continuous operation","valid_range":{"max":1,"min":0}},{"name":"Recon_Flag","data_type":"Int","null_value":0,"comment":"Defines if DER can reconnect after voltage ride-through disconnection","valid_range":{"max":1,"min":0}},{"name":"Trv","data_type":"Float64","null_value":0,"comment":"Voltage measurement transducer's time constant, in s","valid_range":{"max":null,"min":0}},{"name":"VV_pnts","data_type":"NamedTuple{(:V1, :V2, :V3, :V4), Tuple{Float64, Float64, Float64, Float64}}","null_value":"(V1=0.0, V2=0.0, V3=0.0, V4=0.0)","comment":"Y-axis Volt-var curve points (V1,V2,V3,V4)"},{"name":"Q_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Reactive power limits in pu (Q_min, Q_max)"},{"name":"Tp","data_type":"Float64","null_value":0,"comment":"Power measurement transducer's time constant, in s","valid_range":{"max":null,"min":0}},{"name":"e_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Error limit in PI controller for q control (e_min, e_max)"},{"name":"Kpq","data_type":"Float64","null_value":0,"comment":"PI controller proportional gain for q control","valid_range":{"max":null,"min":0}},{"name":"Kiq","data_type":"Float64","null_value":0,"comment":"PI controller integral gain for q control","valid_range":{"max":null,"min":0}},{"name":"Iqr_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Limit on rate of change for reactive current (pu/s) (Iqr_min, Iqr_max)"},{"name":"I_max","data_type":"Float64","null_value":0,"comment":"Max. inverter's current","valid_range":{"max":null,"min":0}},{"name":"Tg","data_type":"Float64","null_value":0,"comment":"Current control's time constant, in s","valid_range":{"max":null,"min":0}},{"name":"kWh_Cap","data_type":"Float64","null_value":0,"comment":"BESS capacity in kWh","valid_range":{"max":null,"min":0}},{"name":"SOC_ini","data_type":"Float64","null_value":0,"comment":"Initial state of charge (SOC) in pu","valid_range":{"max":1,"min":0}},{"name":"SOC_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Battery's SOC limits (SOC_min, SOC_max)"},{"name":"Trf","data_type":"Float64","null_value":0,"comment":"Time constant to estimate system frequency, in s","valid_range":{"max":null,"min":0}},{"name":"fdbd_pnts","data_type":"NamedTuple{(:fdbd1, :fdbd2), Tuple{Float64, Float64}}","null_value":"(fdbd1=0.0, fdbd2=0.0)","comment":"Frequency error dead band thresholds `(fdbd1, fdbd2)`"},{"name":"D_dn","data_type":"Float64","null_value":0,"comment":"reciprocal of droop for over-frequency conditions, in pu","valid_range":{"max":null,"min":0}},{"name":"D_up","data_type":"Float64","null_value":0,"comment":"reciprocal of droop for under-frequency conditions, in pu","valid_range":{"max":null,"min":0}},{"name":"fe_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Frequency error limits in pu (fe_min, fe_max)"},{"name":"Kpp","data_type":"Float64","null_value":0,"comment":"PI controller proportional gain for p control","valid_range":{"max":null,"min":0}},{"name":"Kip","data_type":"Float64","null_value":0,"comment":"PI controller integral gain for p control","valid_range":{"max":null,"min":0}},{"name":"P_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Active power limits in pu (P_min, P_max)"},{"name":"dP_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Ramp rate limits for active power in pu/s (dP_min, dP_max)"},{"name":"T_pord","data_type":"Float64","null_value":0,"comment":"Power filter time constant in s","valid_range":{"max":null,"min":0}},{"name":"rrpwr","data_type":"Float64","null_value":0,"comment":"Ramp rate for real power increase following a fault, in pu/s","valid_range":{"max":null,"min":0}},{"name":"VRT_pnts","data_type":"NamedTuple{(:vrt1, :vrt2, :vrt3, :vrt4, :vrt5), Tuple{Float64, Float64, Float64, Float64, Float64}}","null_value":"(vrt1=0.0, vrt2=0.0, vrt3=0.0, vrt4=0.0, vrt5=0.0)","comment":"Voltage ride through v points (vrt1,vrt2,vrt3,vrt4,vrt5)"},{"name":"TVRT_pnts","data_type":"NamedTuple{(:tvrt1, :tvrt2, :tvrt3), Tuple{Float64, Float64, Float64}}","null_value":"(tvrt1=0.0, tvrt2=0.0, tvrt3=0.0)","comment":"Voltage ride through time points (tvrt1,tvrt2,tvrt3)"},{"name":"tV_delay","data_type":"Float64","null_value":0,"comment":"Time delay for reconnection after voltage ride-through disconnection","valid_range":{"max":null,"min":0}},{"name":"VES_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Min and max voltage for entering service (VES_min,VES_max)"},{"name":"FRT_pnts","data_type":"NamedTuple{(:frt1, :frt2, :frt3, :frt4), Tuple{Float64, Float64, Float64, Float64}}","null_value":"(frt1=0.0, frt2=0.0, frt3=0.0, frt4=0.0)","comment":"Frequency ride through v points (frt1,frt2,frt3,frt4)"},{"name":"TFRT_pnts","data_type":"NamedTuple{(:tfrt1, :tfrt2), Tuple{Float64, Float64}}","null_value":"(tfrt1=0.0, tfrt2=0.0)","comment":"Frequency ride through time points (tfrt1,tfrt2)"},{"name":"tF_delay","data_type":"Float64","null_value":0,"comment":"Time delay for reconnection after frequency ride-through disconnection","valid_range":{"max":null,"min":0}},{"name":"FES_lim","data_type":"MinMax","null_value":"(min=0.0, max=0.0)","comment":"Min and max frequency for entering service (FES_min,FES_max)"},{"name":"Pfa_ref","default":"0.0","data_type":"Float64","null_value":0,"comment":"Reference power factor","valid_range":{"max":null,"min":0}},{"name":"Q_ref","default":"0.0","data_type":"Float64","null_value":0,"comment":"Reference reactive power, in pu","valid_range":{"max":null,"min":0}},{"name":"P_ref","default":"1.0","data_type":"Float64","null_value":0,"comment":"Reference active power, in pu","valid_range":{"max":null,"min":0}},{"name":"base_power","default":"100.0","data_type":"Float64","null_value":0,"comment":"Base power"},{"name":"states","data_type":"Vector{Symbol}","exclude_setter":true,"comment":"The states of GenericDER depend on the Flags","internal_default":"PowerSystems.get_GenericDER_states(Qref_Flag)[1]"},{"name":"n_states","data_type":"Int","exclude_setter":true,"comment":"The states of GenericDER depend on the Flags","internal_default":"PowerSystems.get_GenericDER_states(Qref_Flag)[2]"},{"name":"ext","default":"Dict{String, Any}()","data_type":"Dict{String, Any}","null_value":"Dict{String, Any}()"},{"name":"internal","data_type":"InfrastructureSystemsInternal","exclude_setter":true,"comment":"power system internal reference, do not modify","internal_default":"InfrastructureSystemsInternal()"}],"docstring":"Parameters of a Generic Distributed Energy Resource Model. Based on https://scholarspace.manoa.hawaii.edu/bitstream/10125/70994/0304.pdf","struct_name":"GenericDER","supertype":"DynamicInjection"},{"fields":[{"name":"device"},{"name":"droop","data_type":"Float64","valid_range":{"max":null,"min":0}},{"name":"participation_factor","data_type":"UpDown"},{"name":"reserve_limit_dn","data_type":"Float64","valid_range":{"max":null,"min":0}},{"name":"reserve_limit_up","data_type":"Float64","valid_range":{"max":null,"min":0}},{"name":"inertia","data_type":"Float64","valid_range":{"max":null,"min":0}},{"name":"cost","data_type":"Float64","valid_range":{"max":null,"min":0}},{"name":"time_series_container","data_type":"InfrastructureSystems.TimeSeriesContainer"},{"name":"internal","data_type":"InfrastructureSystems.InfrastructureSystemsInternal"}],"struct_name":"RegulationDevice"}]} \ No newline at end of file diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/recorder/execution.log b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/recorder/execution.log new file mode 100644 index 0000000000..6cd505cbaa --- /dev/null +++ b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/recorder/execution.log @@ -0,0 +1,2339 @@ +{"timestamp":"2024-03-06T15:40:34.875","model_name":"UC","name":"StateUpdateEvent","simulation_time":"2020-01-01T00:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:35.912","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:00:00.0"} +{"timestamp":"2024-03-06T15:40:36.177","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:00:00.0"} +{"timestamp":"2024-03-06T15:40:36.413","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:00:00.0"} +{"timestamp":"2024-03-06T15:40:36.74","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:00:00.0"} +{"timestamp":"2024-03-06T15:40:36.742","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:00:00.0"} +{"timestamp":"2024-03-06T15:40:37.0","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:00:00.0"} +{"timestamp":"2024-03-06T15:40:37.003","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:00:00.0"} +{"timestamp":"2024-03-06T15:40:37.134","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:00:00.0"} +{"timestamp":"2024-03-06T15:40:37.158","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:00:00.0"} +{"timestamp":"2024-03-06T15:40:38.168","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T00:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:39.421","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T00:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:40.495","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:15:00.0"} +{"timestamp":"2024-03-06T15:40:40.495","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:15:00.0"} +{"timestamp":"2024-03-06T15:40:40.496","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:15:00.0"} +{"timestamp":"2024-03-06T15:40:40.497","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:15:00.0"} +{"timestamp":"2024-03-06T15:40:40.497","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:15:00.0"} +{"timestamp":"2024-03-06T15:40:40.498","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:15:00.0"} +{"timestamp":"2024-03-06T15:40:40.498","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:15:00.0"} +{"timestamp":"2024-03-06T15:40:40.499","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:15:00.0"} +{"timestamp":"2024-03-06T15:40:40.499","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:15:00.0"} +{"timestamp":"2024-03-06T15:40:40.729","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T00:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:40.729","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T00:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:40.74","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:30:00.0"} +{"timestamp":"2024-03-06T15:40:40.74","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:30:00.0"} +{"timestamp":"2024-03-06T15:40:40.74","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:30:00.0"} +{"timestamp":"2024-03-06T15:40:40.741","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:30:00.0"} +{"timestamp":"2024-03-06T15:40:40.741","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:30:00.0"} +{"timestamp":"2024-03-06T15:40:40.742","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:30:00.0"} +{"timestamp":"2024-03-06T15:40:40.742","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:30:00.0"} +{"timestamp":"2024-03-06T15:40:40.743","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:30:00.0"} +{"timestamp":"2024-03-06T15:40:40.743","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:30:00.0"} +{"timestamp":"2024-03-06T15:40:40.971","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T00:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:40.972","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T00:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:40.982","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:45:00.0"} +{"timestamp":"2024-03-06T15:40:40.982","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:45:00.0"} +{"timestamp":"2024-03-06T15:40:40.983","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:45:00.0"} +{"timestamp":"2024-03-06T15:40:40.984","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:45:00.0"} +{"timestamp":"2024-03-06T15:40:40.984","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:45:00.0"} +{"timestamp":"2024-03-06T15:40:40.984","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:45:00.0"} +{"timestamp":"2024-03-06T15:40:40.984","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:45:00.0"} +{"timestamp":"2024-03-06T15:40:40.985","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:45:00.0"} +{"timestamp":"2024-03-06T15:40:40.985","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T00:45:00.0"} +{"timestamp":"2024-03-06T15:40:41.211","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T00:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:41.212","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T00:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:41.222","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:00:00.0"} +{"timestamp":"2024-03-06T15:40:41.222","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:00:00.0"} +{"timestamp":"2024-03-06T15:40:41.223","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:00:00.0"} +{"timestamp":"2024-03-06T15:40:41.224","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:00:00.0"} +{"timestamp":"2024-03-06T15:40:41.224","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:00:00.0"} +{"timestamp":"2024-03-06T15:40:41.224","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:00:00.0"} +{"timestamp":"2024-03-06T15:40:41.224","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:00:00.0"} +{"timestamp":"2024-03-06T15:40:41.225","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:00:00.0"} +{"timestamp":"2024-03-06T15:40:41.225","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:00:00.0"} +{"timestamp":"2024-03-06T15:40:41.456","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T01:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:41.456","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T01:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:41.473","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:15:00.0"} +{"timestamp":"2024-03-06T15:40:41.473","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:15:00.0"} +{"timestamp":"2024-03-06T15:40:41.543","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:15:00.0"} +{"timestamp":"2024-03-06T15:40:41.544","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:15:00.0"} +{"timestamp":"2024-03-06T15:40:41.544","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:15:00.0"} +{"timestamp":"2024-03-06T15:40:41.545","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:15:00.0"} +{"timestamp":"2024-03-06T15:40:41.545","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:15:00.0"} +{"timestamp":"2024-03-06T15:40:41.546","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:15:00.0"} +{"timestamp":"2024-03-06T15:40:41.546","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:15:00.0"} +{"timestamp":"2024-03-06T15:40:41.788","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T01:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:41.788","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T01:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:41.798","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:30:00.0"} +{"timestamp":"2024-03-06T15:40:41.798","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:30:00.0"} +{"timestamp":"2024-03-06T15:40:41.799","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:30:00.0"} +{"timestamp":"2024-03-06T15:40:41.8","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:30:00.0"} +{"timestamp":"2024-03-06T15:40:41.8","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:30:00.0"} +{"timestamp":"2024-03-06T15:40:41.8","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:30:00.0"} +{"timestamp":"2024-03-06T15:40:41.8","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:30:00.0"} +{"timestamp":"2024-03-06T15:40:41.801","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:30:00.0"} +{"timestamp":"2024-03-06T15:40:41.801","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:30:00.0"} +{"timestamp":"2024-03-06T15:40:42.03","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T01:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:42.031","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T01:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:42.041","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:45:00.0"} +{"timestamp":"2024-03-06T15:40:42.041","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:45:00.0"} +{"timestamp":"2024-03-06T15:40:42.042","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:45:00.0"} +{"timestamp":"2024-03-06T15:40:42.043","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:45:00.0"} +{"timestamp":"2024-03-06T15:40:42.043","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:45:00.0"} +{"timestamp":"2024-03-06T15:40:42.043","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:45:00.0"} +{"timestamp":"2024-03-06T15:40:42.043","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:45:00.0"} +{"timestamp":"2024-03-06T15:40:42.044","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:45:00.0"} +{"timestamp":"2024-03-06T15:40:42.044","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T01:45:00.0"} +{"timestamp":"2024-03-06T15:40:42.286","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T01:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:42.287","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T01:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:42.297","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:00:00.0"} +{"timestamp":"2024-03-06T15:40:42.297","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:00:00.0"} +{"timestamp":"2024-03-06T15:40:42.298","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:00:00.0"} +{"timestamp":"2024-03-06T15:40:42.299","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:00:00.0"} +{"timestamp":"2024-03-06T15:40:42.299","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:00:00.0"} +{"timestamp":"2024-03-06T15:40:42.299","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:00:00.0"} +{"timestamp":"2024-03-06T15:40:42.3","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:00:00.0"} +{"timestamp":"2024-03-06T15:40:42.3","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:00:00.0"} +{"timestamp":"2024-03-06T15:40:42.3","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:00:00.0"} +{"timestamp":"2024-03-06T15:40:42.53","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T02:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:42.531","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T02:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:42.547","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:15:00.0"} +{"timestamp":"2024-03-06T15:40:42.547","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:15:00.0"} +{"timestamp":"2024-03-06T15:40:42.548","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:15:00.0"} +{"timestamp":"2024-03-06T15:40:42.549","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:15:00.0"} +{"timestamp":"2024-03-06T15:40:42.549","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:15:00.0"} +{"timestamp":"2024-03-06T15:40:42.549","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:15:00.0"} +{"timestamp":"2024-03-06T15:40:42.549","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:15:00.0"} +{"timestamp":"2024-03-06T15:40:42.55","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:15:00.0"} +{"timestamp":"2024-03-06T15:40:42.55","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:15:00.0"} +{"timestamp":"2024-03-06T15:40:42.782","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T02:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:42.782","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T02:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:42.793","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:30:00.0"} +{"timestamp":"2024-03-06T15:40:42.793","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:30:00.0"} +{"timestamp":"2024-03-06T15:40:42.793","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:30:00.0"} +{"timestamp":"2024-03-06T15:40:42.794","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:30:00.0"} +{"timestamp":"2024-03-06T15:40:42.794","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:30:00.0"} +{"timestamp":"2024-03-06T15:40:42.795","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:30:00.0"} +{"timestamp":"2024-03-06T15:40:42.795","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:30:00.0"} +{"timestamp":"2024-03-06T15:40:42.796","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:30:00.0"} +{"timestamp":"2024-03-06T15:40:42.796","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:30:00.0"} +{"timestamp":"2024-03-06T15:40:43.025","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T02:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:43.026","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T02:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:43.037","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:45:00.0"} +{"timestamp":"2024-03-06T15:40:43.037","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:45:00.0"} +{"timestamp":"2024-03-06T15:40:43.038","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:45:00.0"} +{"timestamp":"2024-03-06T15:40:43.039","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:45:00.0"} +{"timestamp":"2024-03-06T15:40:43.039","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:45:00.0"} +{"timestamp":"2024-03-06T15:40:43.039","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:45:00.0"} +{"timestamp":"2024-03-06T15:40:43.039","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:45:00.0"} +{"timestamp":"2024-03-06T15:40:43.04","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:45:00.0"} +{"timestamp":"2024-03-06T15:40:43.04","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T02:45:00.0"} +{"timestamp":"2024-03-06T15:40:43.271","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T02:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:43.272","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T02:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:43.283","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:00:00.0"} +{"timestamp":"2024-03-06T15:40:43.284","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:00:00.0"} +{"timestamp":"2024-03-06T15:40:43.284","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:00:00.0"} +{"timestamp":"2024-03-06T15:40:43.285","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:00:00.0"} +{"timestamp":"2024-03-06T15:40:43.285","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:00:00.0"} +{"timestamp":"2024-03-06T15:40:43.286","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:00:00.0"} +{"timestamp":"2024-03-06T15:40:43.286","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:00:00.0"} +{"timestamp":"2024-03-06T15:40:43.287","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:00:00.0"} +{"timestamp":"2024-03-06T15:40:43.287","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:00:00.0"} +{"timestamp":"2024-03-06T15:40:43.52","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T03:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:43.521","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T03:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:43.538","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:15:00.0"} +{"timestamp":"2024-03-06T15:40:43.538","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:15:00.0"} +{"timestamp":"2024-03-06T15:40:43.539","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:15:00.0"} +{"timestamp":"2024-03-06T15:40:43.54","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:15:00.0"} +{"timestamp":"2024-03-06T15:40:43.54","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:15:00.0"} +{"timestamp":"2024-03-06T15:40:43.54","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:15:00.0"} +{"timestamp":"2024-03-06T15:40:43.541","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:15:00.0"} +{"timestamp":"2024-03-06T15:40:43.541","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:15:00.0"} +{"timestamp":"2024-03-06T15:40:43.541","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:15:00.0"} +{"timestamp":"2024-03-06T15:40:43.774","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T03:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:43.775","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T03:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:43.786","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:30:00.0"} +{"timestamp":"2024-03-06T15:40:43.786","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:30:00.0"} +{"timestamp":"2024-03-06T15:40:43.787","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:30:00.0"} +{"timestamp":"2024-03-06T15:40:43.788","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:30:00.0"} +{"timestamp":"2024-03-06T15:40:43.788","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:30:00.0"} +{"timestamp":"2024-03-06T15:40:43.789","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:30:00.0"} +{"timestamp":"2024-03-06T15:40:43.789","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:30:00.0"} +{"timestamp":"2024-03-06T15:40:43.79","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:30:00.0"} +{"timestamp":"2024-03-06T15:40:43.79","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:30:00.0"} +{"timestamp":"2024-03-06T15:40:44.024","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T03:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:44.025","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T03:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:44.036","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:45:00.0"} +{"timestamp":"2024-03-06T15:40:44.036","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:45:00.0"} +{"timestamp":"2024-03-06T15:40:44.037","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:45:00.0"} +{"timestamp":"2024-03-06T15:40:44.038","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:45:00.0"} +{"timestamp":"2024-03-06T15:40:44.038","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:45:00.0"} +{"timestamp":"2024-03-06T15:40:44.038","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:45:00.0"} +{"timestamp":"2024-03-06T15:40:44.038","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:45:00.0"} +{"timestamp":"2024-03-06T15:40:44.039","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:45:00.0"} +{"timestamp":"2024-03-06T15:40:44.039","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T03:45:00.0"} +{"timestamp":"2024-03-06T15:40:44.272","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T03:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:44.272","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T03:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:44.284","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:00:00.0"} +{"timestamp":"2024-03-06T15:40:44.284","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:00:00.0"} +{"timestamp":"2024-03-06T15:40:44.284","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:00:00.0"} +{"timestamp":"2024-03-06T15:40:44.285","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:00:00.0"} +{"timestamp":"2024-03-06T15:40:44.285","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:00:00.0"} +{"timestamp":"2024-03-06T15:40:44.286","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:00:00.0"} +{"timestamp":"2024-03-06T15:40:44.286","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:00:00.0"} +{"timestamp":"2024-03-06T15:40:44.287","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:00:00.0"} +{"timestamp":"2024-03-06T15:40:44.287","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:00:00.0"} +{"timestamp":"2024-03-06T15:40:44.53","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T04:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:44.531","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T04:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:44.549","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:15:00.0"} +{"timestamp":"2024-03-06T15:40:44.549","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:15:00.0"} +{"timestamp":"2024-03-06T15:40:44.549","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:15:00.0"} +{"timestamp":"2024-03-06T15:40:44.55","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:15:00.0"} +{"timestamp":"2024-03-06T15:40:44.55","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:15:00.0"} +{"timestamp":"2024-03-06T15:40:44.551","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:15:00.0"} +{"timestamp":"2024-03-06T15:40:44.551","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:15:00.0"} +{"timestamp":"2024-03-06T15:40:44.552","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:15:00.0"} +{"timestamp":"2024-03-06T15:40:44.552","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:15:00.0"} +{"timestamp":"2024-03-06T15:40:44.79","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T04:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:44.791","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T04:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:44.803","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:30:00.0"} +{"timestamp":"2024-03-06T15:40:44.803","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:30:00.0"} +{"timestamp":"2024-03-06T15:40:44.804","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:30:00.0"} +{"timestamp":"2024-03-06T15:40:44.804","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:30:00.0"} +{"timestamp":"2024-03-06T15:40:44.805","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:30:00.0"} +{"timestamp":"2024-03-06T15:40:44.805","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:30:00.0"} +{"timestamp":"2024-03-06T15:40:44.805","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:30:00.0"} +{"timestamp":"2024-03-06T15:40:44.806","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:30:00.0"} +{"timestamp":"2024-03-06T15:40:44.806","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:30:00.0"} +{"timestamp":"2024-03-06T15:40:45.044","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T04:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:45.045","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T04:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:45.057","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:45:00.0"} +{"timestamp":"2024-03-06T15:40:45.057","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:45:00.0"} +{"timestamp":"2024-03-06T15:40:45.058","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:45:00.0"} +{"timestamp":"2024-03-06T15:40:45.059","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:45:00.0"} +{"timestamp":"2024-03-06T15:40:45.059","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:45:00.0"} +{"timestamp":"2024-03-06T15:40:45.059","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:45:00.0"} +{"timestamp":"2024-03-06T15:40:45.059","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:45:00.0"} +{"timestamp":"2024-03-06T15:40:45.06","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:45:00.0"} +{"timestamp":"2024-03-06T15:40:45.06","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T04:45:00.0"} +{"timestamp":"2024-03-06T15:40:45.295","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T04:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:45.296","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T04:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:45.308","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:00:00.0"} +{"timestamp":"2024-03-06T15:40:45.308","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:00:00.0"} +{"timestamp":"2024-03-06T15:40:45.309","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:00:00.0"} +{"timestamp":"2024-03-06T15:40:45.31","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:00:00.0"} +{"timestamp":"2024-03-06T15:40:45.31","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:00:00.0"} +{"timestamp":"2024-03-06T15:40:45.31","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:00:00.0"} +{"timestamp":"2024-03-06T15:40:45.31","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:00:00.0"} +{"timestamp":"2024-03-06T15:40:45.311","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:00:00.0"} +{"timestamp":"2024-03-06T15:40:45.311","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:00:00.0"} +{"timestamp":"2024-03-06T15:40:45.555","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T05:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:45.556","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T05:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:45.574","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:15:00.0"} +{"timestamp":"2024-03-06T15:40:45.574","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:15:00.0"} +{"timestamp":"2024-03-06T15:40:45.575","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:15:00.0"} +{"timestamp":"2024-03-06T15:40:45.576","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:15:00.0"} +{"timestamp":"2024-03-06T15:40:45.576","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:15:00.0"} +{"timestamp":"2024-03-06T15:40:45.576","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:15:00.0"} +{"timestamp":"2024-03-06T15:40:45.576","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:15:00.0"} +{"timestamp":"2024-03-06T15:40:45.577","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:15:00.0"} +{"timestamp":"2024-03-06T15:40:45.577","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:15:00.0"} +{"timestamp":"2024-03-06T15:40:45.813","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T05:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:45.813","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T05:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:45.826","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:30:00.0"} +{"timestamp":"2024-03-06T15:40:45.826","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:30:00.0"} +{"timestamp":"2024-03-06T15:40:45.826","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:30:00.0"} +{"timestamp":"2024-03-06T15:40:45.827","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:30:00.0"} +{"timestamp":"2024-03-06T15:40:45.827","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:30:00.0"} +{"timestamp":"2024-03-06T15:40:45.828","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:30:00.0"} +{"timestamp":"2024-03-06T15:40:45.828","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:30:00.0"} +{"timestamp":"2024-03-06T15:40:45.829","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:30:00.0"} +{"timestamp":"2024-03-06T15:40:45.829","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:30:00.0"} +{"timestamp":"2024-03-06T15:40:46.061","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T05:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:46.061","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T05:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:46.073","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:45:00.0"} +{"timestamp":"2024-03-06T15:40:46.073","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:45:00.0"} +{"timestamp":"2024-03-06T15:40:46.074","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:45:00.0"} +{"timestamp":"2024-03-06T15:40:46.075","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:45:00.0"} +{"timestamp":"2024-03-06T15:40:46.075","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:45:00.0"} +{"timestamp":"2024-03-06T15:40:46.075","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:45:00.0"} +{"timestamp":"2024-03-06T15:40:46.075","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:45:00.0"} +{"timestamp":"2024-03-06T15:40:46.076","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:45:00.0"} +{"timestamp":"2024-03-06T15:40:46.076","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T05:45:00.0"} +{"timestamp":"2024-03-06T15:40:46.699","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T05:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:46.7","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T05:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:46.71","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:00:00.0"} +{"timestamp":"2024-03-06T15:40:46.71","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:00:00.0"} +{"timestamp":"2024-03-06T15:40:46.711","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:00:00.0"} +{"timestamp":"2024-03-06T15:40:46.712","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:00:00.0"} +{"timestamp":"2024-03-06T15:40:46.712","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:00:00.0"} +{"timestamp":"2024-03-06T15:40:46.713","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:00:00.0"} +{"timestamp":"2024-03-06T15:40:46.713","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:00:00.0"} +{"timestamp":"2024-03-06T15:40:46.713","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:00:00.0"} +{"timestamp":"2024-03-06T15:40:46.714","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:00:00.0"} +{"timestamp":"2024-03-06T15:40:46.939","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T06:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:46.939","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T06:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:46.956","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:15:00.0"} +{"timestamp":"2024-03-06T15:40:46.956","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:15:00.0"} +{"timestamp":"2024-03-06T15:40:46.956","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:15:00.0"} +{"timestamp":"2024-03-06T15:40:46.957","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:15:00.0"} +{"timestamp":"2024-03-06T15:40:46.957","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:15:00.0"} +{"timestamp":"2024-03-06T15:40:46.958","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:15:00.0"} +{"timestamp":"2024-03-06T15:40:46.958","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:15:00.0"} +{"timestamp":"2024-03-06T15:40:46.959","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:15:00.0"} +{"timestamp":"2024-03-06T15:40:46.959","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:15:00.0"} +{"timestamp":"2024-03-06T15:40:47.196","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T06:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:47.196","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T06:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:47.206","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:30:00.0"} +{"timestamp":"2024-03-06T15:40:47.206","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:30:00.0"} +{"timestamp":"2024-03-06T15:40:47.207","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:30:00.0"} +{"timestamp":"2024-03-06T15:40:47.208","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:30:00.0"} +{"timestamp":"2024-03-06T15:40:47.208","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:30:00.0"} +{"timestamp":"2024-03-06T15:40:47.209","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:30:00.0"} +{"timestamp":"2024-03-06T15:40:47.209","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:30:00.0"} +{"timestamp":"2024-03-06T15:40:47.21","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:30:00.0"} +{"timestamp":"2024-03-06T15:40:47.21","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:30:00.0"} +{"timestamp":"2024-03-06T15:40:47.456","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T06:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:47.456","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T06:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:47.466","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:45:00.0"} +{"timestamp":"2024-03-06T15:40:47.466","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:45:00.0"} +{"timestamp":"2024-03-06T15:40:47.467","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:45:00.0"} +{"timestamp":"2024-03-06T15:40:47.468","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:45:00.0"} +{"timestamp":"2024-03-06T15:40:47.468","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:45:00.0"} +{"timestamp":"2024-03-06T15:40:47.468","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:45:00.0"} +{"timestamp":"2024-03-06T15:40:47.468","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:45:00.0"} +{"timestamp":"2024-03-06T15:40:47.469","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:45:00.0"} +{"timestamp":"2024-03-06T15:40:47.469","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T06:45:00.0"} +{"timestamp":"2024-03-06T15:40:47.737","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T06:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:47.738","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T06:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:47.749","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:00:00.0"} +{"timestamp":"2024-03-06T15:40:47.749","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:00:00.0"} +{"timestamp":"2024-03-06T15:40:47.75","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:00:00.0"} +{"timestamp":"2024-03-06T15:40:47.751","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:00:00.0"} +{"timestamp":"2024-03-06T15:40:47.751","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:00:00.0"} +{"timestamp":"2024-03-06T15:40:47.751","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:00:00.0"} +{"timestamp":"2024-03-06T15:40:47.751","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:00:00.0"} +{"timestamp":"2024-03-06T15:40:47.752","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:00:00.0"} +{"timestamp":"2024-03-06T15:40:47.752","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:00:00.0"} +{"timestamp":"2024-03-06T15:40:48.034","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T07:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:48.034","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T07:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:48.052","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:15:00.0"} +{"timestamp":"2024-03-06T15:40:48.052","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:15:00.0"} +{"timestamp":"2024-03-06T15:40:48.052","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:15:00.0"} +{"timestamp":"2024-03-06T15:40:48.053","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:15:00.0"} +{"timestamp":"2024-03-06T15:40:48.053","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:15:00.0"} +{"timestamp":"2024-03-06T15:40:48.054","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:15:00.0"} +{"timestamp":"2024-03-06T15:40:48.054","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:15:00.0"} +{"timestamp":"2024-03-06T15:40:48.055","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:15:00.0"} +{"timestamp":"2024-03-06T15:40:48.055","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:15:00.0"} +{"timestamp":"2024-03-06T15:40:48.348","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T07:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:48.349","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T07:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:48.36","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:30:00.0"} +{"timestamp":"2024-03-06T15:40:48.36","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:30:00.0"} +{"timestamp":"2024-03-06T15:40:48.361","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:30:00.0"} +{"timestamp":"2024-03-06T15:40:48.362","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:30:00.0"} +{"timestamp":"2024-03-06T15:40:48.362","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:30:00.0"} +{"timestamp":"2024-03-06T15:40:48.362","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:30:00.0"} +{"timestamp":"2024-03-06T15:40:48.362","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:30:00.0"} +{"timestamp":"2024-03-06T15:40:48.363","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:30:00.0"} +{"timestamp":"2024-03-06T15:40:48.363","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:30:00.0"} +{"timestamp":"2024-03-06T15:40:48.677","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T07:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:48.678","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T07:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:48.689","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:45:00.0"} +{"timestamp":"2024-03-06T15:40:48.689","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:45:00.0"} +{"timestamp":"2024-03-06T15:40:48.69","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:45:00.0"} +{"timestamp":"2024-03-06T15:40:48.691","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:45:00.0"} +{"timestamp":"2024-03-06T15:40:48.691","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:45:00.0"} +{"timestamp":"2024-03-06T15:40:48.691","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:45:00.0"} +{"timestamp":"2024-03-06T15:40:48.691","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:45:00.0"} +{"timestamp":"2024-03-06T15:40:48.692","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:45:00.0"} +{"timestamp":"2024-03-06T15:40:48.692","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T07:45:00.0"} +{"timestamp":"2024-03-06T15:40:48.999","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T07:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:48.999","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T07:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:49.011","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:00:00.0"} +{"timestamp":"2024-03-06T15:40:49.011","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:00:00.0"} +{"timestamp":"2024-03-06T15:40:49.011","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:00:00.0"} +{"timestamp":"2024-03-06T15:40:49.012","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:00:00.0"} +{"timestamp":"2024-03-06T15:40:49.013","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:00:00.0"} +{"timestamp":"2024-03-06T15:40:49.013","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:00:00.0"} +{"timestamp":"2024-03-06T15:40:49.013","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:00:00.0"} +{"timestamp":"2024-03-06T15:40:49.014","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:00:00.0"} +{"timestamp":"2024-03-06T15:40:49.014","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:00:00.0"} +{"timestamp":"2024-03-06T15:40:49.322","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T08:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:49.322","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T08:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:49.34","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:15:00.0"} +{"timestamp":"2024-03-06T15:40:49.34","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:15:00.0"} +{"timestamp":"2024-03-06T15:40:49.341","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:15:00.0"} +{"timestamp":"2024-03-06T15:40:49.341","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:15:00.0"} +{"timestamp":"2024-03-06T15:40:49.341","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:15:00.0"} +{"timestamp":"2024-03-06T15:40:49.342","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:15:00.0"} +{"timestamp":"2024-03-06T15:40:49.342","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:15:00.0"} +{"timestamp":"2024-03-06T15:40:49.343","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:15:00.0"} +{"timestamp":"2024-03-06T15:40:49.343","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:15:00.0"} +{"timestamp":"2024-03-06T15:40:49.642","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T08:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:49.643","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T08:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:49.654","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:30:00.0"} +{"timestamp":"2024-03-06T15:40:49.654","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:30:00.0"} +{"timestamp":"2024-03-06T15:40:49.655","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:30:00.0"} +{"timestamp":"2024-03-06T15:40:49.656","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:30:00.0"} +{"timestamp":"2024-03-06T15:40:49.656","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:30:00.0"} +{"timestamp":"2024-03-06T15:40:49.656","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:30:00.0"} +{"timestamp":"2024-03-06T15:40:49.656","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:30:00.0"} +{"timestamp":"2024-03-06T15:40:49.657","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:30:00.0"} +{"timestamp":"2024-03-06T15:40:49.657","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:30:00.0"} +{"timestamp":"2024-03-06T15:40:49.953","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T08:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:49.954","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T08:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:49.965","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:45:00.0"} +{"timestamp":"2024-03-06T15:40:49.965","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:45:00.0"} +{"timestamp":"2024-03-06T15:40:49.966","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:45:00.0"} +{"timestamp":"2024-03-06T15:40:49.967","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:45:00.0"} +{"timestamp":"2024-03-06T15:40:49.967","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:45:00.0"} +{"timestamp":"2024-03-06T15:40:49.967","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:45:00.0"} +{"timestamp":"2024-03-06T15:40:49.967","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:45:00.0"} +{"timestamp":"2024-03-06T15:40:49.968","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:45:00.0"} +{"timestamp":"2024-03-06T15:40:49.968","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T08:45:00.0"} +{"timestamp":"2024-03-06T15:40:50.26","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T08:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:50.26","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T08:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:50.272","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:00:00.0"} +{"timestamp":"2024-03-06T15:40:50.272","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:00:00.0"} +{"timestamp":"2024-03-06T15:40:50.273","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:00:00.0"} +{"timestamp":"2024-03-06T15:40:50.274","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:00:00.0"} +{"timestamp":"2024-03-06T15:40:50.274","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:00:00.0"} +{"timestamp":"2024-03-06T15:40:50.275","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:00:00.0"} +{"timestamp":"2024-03-06T15:40:50.275","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:00:00.0"} +{"timestamp":"2024-03-06T15:40:50.276","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:00:00.0"} +{"timestamp":"2024-03-06T15:40:50.276","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:00:00.0"} +{"timestamp":"2024-03-06T15:40:50.572","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T09:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:50.573","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T09:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:50.591","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:15:00.0"} +{"timestamp":"2024-03-06T15:40:50.591","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:15:00.0"} +{"timestamp":"2024-03-06T15:40:50.592","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:15:00.0"} +{"timestamp":"2024-03-06T15:40:50.593","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:15:00.0"} +{"timestamp":"2024-03-06T15:40:50.593","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:15:00.0"} +{"timestamp":"2024-03-06T15:40:50.593","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:15:00.0"} +{"timestamp":"2024-03-06T15:40:50.593","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:15:00.0"} +{"timestamp":"2024-03-06T15:40:50.594","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:15:00.0"} +{"timestamp":"2024-03-06T15:40:50.594","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:15:00.0"} +{"timestamp":"2024-03-06T15:40:50.88","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T09:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:50.881","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T09:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:50.893","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:30:00.0"} +{"timestamp":"2024-03-06T15:40:50.893","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:30:00.0"} +{"timestamp":"2024-03-06T15:40:50.894","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:30:00.0"} +{"timestamp":"2024-03-06T15:40:50.895","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:30:00.0"} +{"timestamp":"2024-03-06T15:40:50.895","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:30:00.0"} +{"timestamp":"2024-03-06T15:40:50.895","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:30:00.0"} +{"timestamp":"2024-03-06T15:40:50.895","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:30:00.0"} +{"timestamp":"2024-03-06T15:40:50.896","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:30:00.0"} +{"timestamp":"2024-03-06T15:40:50.896","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:30:00.0"} +{"timestamp":"2024-03-06T15:40:51.175","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T09:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:51.176","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T09:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:51.188","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:45:00.0"} +{"timestamp":"2024-03-06T15:40:51.188","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:45:00.0"} +{"timestamp":"2024-03-06T15:40:51.189","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:45:00.0"} +{"timestamp":"2024-03-06T15:40:51.19","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:45:00.0"} +{"timestamp":"2024-03-06T15:40:51.19","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:45:00.0"} +{"timestamp":"2024-03-06T15:40:51.19","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:45:00.0"} +{"timestamp":"2024-03-06T15:40:51.19","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:45:00.0"} +{"timestamp":"2024-03-06T15:40:51.191","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:45:00.0"} +{"timestamp":"2024-03-06T15:40:51.191","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T09:45:00.0"} +{"timestamp":"2024-03-06T15:40:51.466","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T09:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:51.467","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T09:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:51.479","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:00:00.0"} +{"timestamp":"2024-03-06T15:40:51.479","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:00:00.0"} +{"timestamp":"2024-03-06T15:40:51.479","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:00:00.0"} +{"timestamp":"2024-03-06T15:40:51.48","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:00:00.0"} +{"timestamp":"2024-03-06T15:40:51.48","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:00:00.0"} +{"timestamp":"2024-03-06T15:40:51.481","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:00:00.0"} +{"timestamp":"2024-03-06T15:40:51.481","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:00:00.0"} +{"timestamp":"2024-03-06T15:40:51.482","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:00:00.0"} +{"timestamp":"2024-03-06T15:40:51.482","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:00:00.0"} +{"timestamp":"2024-03-06T15:40:51.753","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T10:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:51.753","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T10:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:51.772","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:15:00.0"} +{"timestamp":"2024-03-06T15:40:51.772","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:15:00.0"} +{"timestamp":"2024-03-06T15:40:51.772","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:15:00.0"} +{"timestamp":"2024-03-06T15:40:51.773","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:15:00.0"} +{"timestamp":"2024-03-06T15:40:51.773","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:15:00.0"} +{"timestamp":"2024-03-06T15:40:51.774","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:15:00.0"} +{"timestamp":"2024-03-06T15:40:51.774","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:15:00.0"} +{"timestamp":"2024-03-06T15:40:51.775","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:15:00.0"} +{"timestamp":"2024-03-06T15:40:51.775","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:15:00.0"} +{"timestamp":"2024-03-06T15:40:52.041","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T10:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:52.042","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T10:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:52.396","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:30:00.0"} +{"timestamp":"2024-03-06T15:40:52.397","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:30:00.0"} +{"timestamp":"2024-03-06T15:40:52.397","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:30:00.0"} +{"timestamp":"2024-03-06T15:40:52.398","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:30:00.0"} +{"timestamp":"2024-03-06T15:40:52.398","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:30:00.0"} +{"timestamp":"2024-03-06T15:40:52.399","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:30:00.0"} +{"timestamp":"2024-03-06T15:40:52.399","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:30:00.0"} +{"timestamp":"2024-03-06T15:40:52.4","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:30:00.0"} +{"timestamp":"2024-03-06T15:40:52.4","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:30:00.0"} +{"timestamp":"2024-03-06T15:40:52.669","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T10:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:52.669","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T10:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:52.68","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:45:00.0"} +{"timestamp":"2024-03-06T15:40:52.68","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:45:00.0"} +{"timestamp":"2024-03-06T15:40:52.68","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:45:00.0"} +{"timestamp":"2024-03-06T15:40:52.681","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:45:00.0"} +{"timestamp":"2024-03-06T15:40:52.681","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:45:00.0"} +{"timestamp":"2024-03-06T15:40:52.682","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:45:00.0"} +{"timestamp":"2024-03-06T15:40:52.682","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:45:00.0"} +{"timestamp":"2024-03-06T15:40:52.683","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:45:00.0"} +{"timestamp":"2024-03-06T15:40:52.683","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T10:45:00.0"} +{"timestamp":"2024-03-06T15:40:52.934","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T10:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:52.934","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T10:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:52.945","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:00:00.0"} +{"timestamp":"2024-03-06T15:40:52.945","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:00:00.0"} +{"timestamp":"2024-03-06T15:40:52.945","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:00:00.0"} +{"timestamp":"2024-03-06T15:40:52.946","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:00:00.0"} +{"timestamp":"2024-03-06T15:40:52.946","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:00:00.0"} +{"timestamp":"2024-03-06T15:40:52.947","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:00:00.0"} +{"timestamp":"2024-03-06T15:40:52.947","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:00:00.0"} +{"timestamp":"2024-03-06T15:40:52.948","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:00:00.0"} +{"timestamp":"2024-03-06T15:40:52.948","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:00:00.0"} +{"timestamp":"2024-03-06T15:40:53.192","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T11:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:53.192","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T11:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:53.209","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:15:00.0"} +{"timestamp":"2024-03-06T15:40:53.209","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:15:00.0"} +{"timestamp":"2024-03-06T15:40:53.209","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:15:00.0"} +{"timestamp":"2024-03-06T15:40:53.21","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:15:00.0"} +{"timestamp":"2024-03-06T15:40:53.21","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:15:00.0"} +{"timestamp":"2024-03-06T15:40:53.211","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:15:00.0"} +{"timestamp":"2024-03-06T15:40:53.211","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:15:00.0"} +{"timestamp":"2024-03-06T15:40:53.212","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:15:00.0"} +{"timestamp":"2024-03-06T15:40:53.212","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:15:00.0"} +{"timestamp":"2024-03-06T15:40:53.45","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T11:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:53.451","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T11:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:53.461","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:30:00.0"} +{"timestamp":"2024-03-06T15:40:53.461","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:30:00.0"} +{"timestamp":"2024-03-06T15:40:53.462","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:30:00.0"} +{"timestamp":"2024-03-06T15:40:53.463","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:30:00.0"} +{"timestamp":"2024-03-06T15:40:53.463","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:30:00.0"} +{"timestamp":"2024-03-06T15:40:53.463","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:30:00.0"} +{"timestamp":"2024-03-06T15:40:53.463","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:30:00.0"} +{"timestamp":"2024-03-06T15:40:53.464","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:30:00.0"} +{"timestamp":"2024-03-06T15:40:53.464","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:30:00.0"} +{"timestamp":"2024-03-06T15:40:53.704","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T11:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:53.705","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T11:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:53.715","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:45:00.0"} +{"timestamp":"2024-03-06T15:40:53.715","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:45:00.0"} +{"timestamp":"2024-03-06T15:40:53.716","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:45:00.0"} +{"timestamp":"2024-03-06T15:40:53.717","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:45:00.0"} +{"timestamp":"2024-03-06T15:40:53.717","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:45:00.0"} +{"timestamp":"2024-03-06T15:40:53.717","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:45:00.0"} +{"timestamp":"2024-03-06T15:40:53.717","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:45:00.0"} +{"timestamp":"2024-03-06T15:40:53.718","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:45:00.0"} +{"timestamp":"2024-03-06T15:40:53.718","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T11:45:00.0"} +{"timestamp":"2024-03-06T15:40:53.957","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T11:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:53.958","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T11:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:53.968","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:00:00.0"} +{"timestamp":"2024-03-06T15:40:53.968","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:00:00.0"} +{"timestamp":"2024-03-06T15:40:53.969","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:00:00.0"} +{"timestamp":"2024-03-06T15:40:53.97","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:00:00.0"} +{"timestamp":"2024-03-06T15:40:53.97","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:00:00.0"} +{"timestamp":"2024-03-06T15:40:53.97","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:00:00.0"} +{"timestamp":"2024-03-06T15:40:53.97","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:00:00.0"} +{"timestamp":"2024-03-06T15:40:53.971","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:00:00.0"} +{"timestamp":"2024-03-06T15:40:53.971","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:00:00.0"} +{"timestamp":"2024-03-06T15:40:54.21","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T12:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:54.21","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T12:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:54.227","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:15:00.0"} +{"timestamp":"2024-03-06T15:40:54.227","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:15:00.0"} +{"timestamp":"2024-03-06T15:40:54.228","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:15:00.0"} +{"timestamp":"2024-03-06T15:40:54.229","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:15:00.0"} +{"timestamp":"2024-03-06T15:40:54.229","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:15:00.0"} +{"timestamp":"2024-03-06T15:40:54.229","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:15:00.0"} +{"timestamp":"2024-03-06T15:40:54.229","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:15:00.0"} +{"timestamp":"2024-03-06T15:40:54.23","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:15:00.0"} +{"timestamp":"2024-03-06T15:40:54.23","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:15:00.0"} +{"timestamp":"2024-03-06T15:40:54.469","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T12:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:54.469","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T12:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:54.48","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:30:00.0"} +{"timestamp":"2024-03-06T15:40:54.48","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:30:00.0"} +{"timestamp":"2024-03-06T15:40:54.48","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:30:00.0"} +{"timestamp":"2024-03-06T15:40:54.481","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:30:00.0"} +{"timestamp":"2024-03-06T15:40:54.481","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:30:00.0"} +{"timestamp":"2024-03-06T15:40:54.482","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:30:00.0"} +{"timestamp":"2024-03-06T15:40:54.482","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:30:00.0"} +{"timestamp":"2024-03-06T15:40:54.483","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:30:00.0"} +{"timestamp":"2024-03-06T15:40:54.483","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:30:00.0"} +{"timestamp":"2024-03-06T15:40:54.731","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T12:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:54.732","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T12:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:54.742","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:45:00.0"} +{"timestamp":"2024-03-06T15:40:54.742","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:45:00.0"} +{"timestamp":"2024-03-06T15:40:54.743","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:45:00.0"} +{"timestamp":"2024-03-06T15:40:54.744","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:45:00.0"} +{"timestamp":"2024-03-06T15:40:54.744","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:45:00.0"} +{"timestamp":"2024-03-06T15:40:54.744","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:45:00.0"} +{"timestamp":"2024-03-06T15:40:54.745","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:45:00.0"} +{"timestamp":"2024-03-06T15:40:54.745","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:45:00.0"} +{"timestamp":"2024-03-06T15:40:54.745","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T12:45:00.0"} +{"timestamp":"2024-03-06T15:40:54.983","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T12:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:54.984","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T12:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:54.994","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:00:00.0"} +{"timestamp":"2024-03-06T15:40:54.994","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:00:00.0"} +{"timestamp":"2024-03-06T15:40:54.995","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:00:00.0"} +{"timestamp":"2024-03-06T15:40:54.996","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:00:00.0"} +{"timestamp":"2024-03-06T15:40:54.996","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:00:00.0"} +{"timestamp":"2024-03-06T15:40:54.996","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:00:00.0"} +{"timestamp":"2024-03-06T15:40:54.996","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:00:00.0"} +{"timestamp":"2024-03-06T15:40:54.997","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:00:00.0"} +{"timestamp":"2024-03-06T15:40:54.997","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:00:00.0"} +{"timestamp":"2024-03-06T15:40:55.233","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T13:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:55.233","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T13:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:55.25","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:15:00.0"} +{"timestamp":"2024-03-06T15:40:55.25","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:15:00.0"} +{"timestamp":"2024-03-06T15:40:55.25","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:15:00.0"} +{"timestamp":"2024-03-06T15:40:55.251","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:15:00.0"} +{"timestamp":"2024-03-06T15:40:55.251","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:15:00.0"} +{"timestamp":"2024-03-06T15:40:55.252","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:15:00.0"} +{"timestamp":"2024-03-06T15:40:55.252","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:15:00.0"} +{"timestamp":"2024-03-06T15:40:55.253","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:15:00.0"} +{"timestamp":"2024-03-06T15:40:55.253","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:15:00.0"} +{"timestamp":"2024-03-06T15:40:55.489","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T13:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:55.489","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T13:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:55.499","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:30:00.0"} +{"timestamp":"2024-03-06T15:40:55.5","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:30:00.0"} +{"timestamp":"2024-03-06T15:40:55.5","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:30:00.0"} +{"timestamp":"2024-03-06T15:40:55.501","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:30:00.0"} +{"timestamp":"2024-03-06T15:40:55.501","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:30:00.0"} +{"timestamp":"2024-03-06T15:40:55.502","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:30:00.0"} +{"timestamp":"2024-03-06T15:40:55.502","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:30:00.0"} +{"timestamp":"2024-03-06T15:40:55.502","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:30:00.0"} +{"timestamp":"2024-03-06T15:40:55.503","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:30:00.0"} +{"timestamp":"2024-03-06T15:40:55.738","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T13:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:55.738","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T13:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:55.749","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:45:00.0"} +{"timestamp":"2024-03-06T15:40:55.749","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:45:00.0"} +{"timestamp":"2024-03-06T15:40:55.75","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:45:00.0"} +{"timestamp":"2024-03-06T15:40:55.751","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:45:00.0"} +{"timestamp":"2024-03-06T15:40:55.751","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:45:00.0"} +{"timestamp":"2024-03-06T15:40:55.751","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:45:00.0"} +{"timestamp":"2024-03-06T15:40:55.751","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:45:00.0"} +{"timestamp":"2024-03-06T15:40:55.752","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:45:00.0"} +{"timestamp":"2024-03-06T15:40:55.752","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T13:45:00.0"} +{"timestamp":"2024-03-06T15:40:56.003","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T13:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:56.004","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T13:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:56.015","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:00:00.0"} +{"timestamp":"2024-03-06T15:40:56.015","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:00:00.0"} +{"timestamp":"2024-03-06T15:40:56.015","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:00:00.0"} +{"timestamp":"2024-03-06T15:40:56.016","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:00:00.0"} +{"timestamp":"2024-03-06T15:40:56.016","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:00:00.0"} +{"timestamp":"2024-03-06T15:40:56.017","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:00:00.0"} +{"timestamp":"2024-03-06T15:40:56.017","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:00:00.0"} +{"timestamp":"2024-03-06T15:40:56.018","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:00:00.0"} +{"timestamp":"2024-03-06T15:40:56.018","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:00:00.0"} +{"timestamp":"2024-03-06T15:40:56.254","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T14:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:56.255","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T14:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:56.271","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:15:00.0"} +{"timestamp":"2024-03-06T15:40:56.271","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:15:00.0"} +{"timestamp":"2024-03-06T15:40:56.272","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:15:00.0"} +{"timestamp":"2024-03-06T15:40:56.273","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:15:00.0"} +{"timestamp":"2024-03-06T15:40:56.273","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:15:00.0"} +{"timestamp":"2024-03-06T15:40:56.273","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:15:00.0"} +{"timestamp":"2024-03-06T15:40:56.273","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:15:00.0"} +{"timestamp":"2024-03-06T15:40:56.274","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:15:00.0"} +{"timestamp":"2024-03-06T15:40:56.274","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:15:00.0"} +{"timestamp":"2024-03-06T15:40:56.511","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T14:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:56.511","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T14:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:56.522","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:30:00.0"} +{"timestamp":"2024-03-06T15:40:56.522","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:30:00.0"} +{"timestamp":"2024-03-06T15:40:56.522","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:30:00.0"} +{"timestamp":"2024-03-06T15:40:56.523","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:30:00.0"} +{"timestamp":"2024-03-06T15:40:56.523","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:30:00.0"} +{"timestamp":"2024-03-06T15:40:56.524","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:30:00.0"} +{"timestamp":"2024-03-06T15:40:56.524","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:30:00.0"} +{"timestamp":"2024-03-06T15:40:56.525","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:30:00.0"} +{"timestamp":"2024-03-06T15:40:56.525","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:30:00.0"} +{"timestamp":"2024-03-06T15:40:56.762","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T14:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:56.762","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T14:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:56.773","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:45:00.0"} +{"timestamp":"2024-03-06T15:40:56.773","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:45:00.0"} +{"timestamp":"2024-03-06T15:40:56.773","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:45:00.0"} +{"timestamp":"2024-03-06T15:40:56.774","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:45:00.0"} +{"timestamp":"2024-03-06T15:40:56.774","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:45:00.0"} +{"timestamp":"2024-03-06T15:40:56.775","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:45:00.0"} +{"timestamp":"2024-03-06T15:40:56.775","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:45:00.0"} +{"timestamp":"2024-03-06T15:40:56.776","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:45:00.0"} +{"timestamp":"2024-03-06T15:40:56.776","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T14:45:00.0"} +{"timestamp":"2024-03-06T15:40:57.011","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T14:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:57.011","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T14:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:57.022","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.022","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.023","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.024","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.024","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.024","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.024","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.025","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.025","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.253","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T15:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:57.253","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T15:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:57.27","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:15:00.0"} +{"timestamp":"2024-03-06T15:40:57.27","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:15:00.0"} +{"timestamp":"2024-03-06T15:40:57.271","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:15:00.0"} +{"timestamp":"2024-03-06T15:40:57.272","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:15:00.0"} +{"timestamp":"2024-03-06T15:40:57.272","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:15:00.0"} +{"timestamp":"2024-03-06T15:40:57.272","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:15:00.0"} +{"timestamp":"2024-03-06T15:40:57.272","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:15:00.0"} +{"timestamp":"2024-03-06T15:40:57.273","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:15:00.0"} +{"timestamp":"2024-03-06T15:40:57.273","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:15:00.0"} +{"timestamp":"2024-03-06T15:40:57.493","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T15:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:57.493","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T15:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:57.504","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:30:00.0"} +{"timestamp":"2024-03-06T15:40:57.504","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:30:00.0"} +{"timestamp":"2024-03-06T15:40:57.504","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:30:00.0"} +{"timestamp":"2024-03-06T15:40:57.505","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:30:00.0"} +{"timestamp":"2024-03-06T15:40:57.505","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:30:00.0"} +{"timestamp":"2024-03-06T15:40:57.506","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:30:00.0"} +{"timestamp":"2024-03-06T15:40:57.506","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:30:00.0"} +{"timestamp":"2024-03-06T15:40:57.507","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:30:00.0"} +{"timestamp":"2024-03-06T15:40:57.507","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:30:00.0"} +{"timestamp":"2024-03-06T15:40:57.732","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T15:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:57.733","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T15:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:57.743","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:45:00.0"} +{"timestamp":"2024-03-06T15:40:57.743","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:45:00.0"} +{"timestamp":"2024-03-06T15:40:57.744","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:45:00.0"} +{"timestamp":"2024-03-06T15:40:57.745","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:45:00.0"} +{"timestamp":"2024-03-06T15:40:57.745","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:45:00.0"} +{"timestamp":"2024-03-06T15:40:57.746","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:45:00.0"} +{"timestamp":"2024-03-06T15:40:57.746","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:45:00.0"} +{"timestamp":"2024-03-06T15:40:57.747","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:45:00.0"} +{"timestamp":"2024-03-06T15:40:57.747","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T15:45:00.0"} +{"timestamp":"2024-03-06T15:40:57.945","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T15:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:57.946","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T15:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:57.956","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.956","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.957","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.958","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.958","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.958","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.958","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.959","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.959","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:00:00.0"} +{"timestamp":"2024-03-06T15:40:58.146","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T16:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:58.146","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T16:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:58.163","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.163","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.163","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.164","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.164","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.165","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.165","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.166","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.166","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.348","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T16:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:58.348","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T16:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:58.358","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:30:00.0"} +{"timestamp":"2024-03-06T15:40:58.358","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:30:00.0"} +{"timestamp":"2024-03-06T15:40:58.359","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:30:00.0"} +{"timestamp":"2024-03-06T15:40:58.36","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:30:00.0"} +{"timestamp":"2024-03-06T15:40:58.36","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:30:00.0"} +{"timestamp":"2024-03-06T15:40:58.361","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:30:00.0"} +{"timestamp":"2024-03-06T15:40:58.361","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:30:00.0"} +{"timestamp":"2024-03-06T15:40:58.361","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:30:00.0"} +{"timestamp":"2024-03-06T15:40:58.361","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:30:00.0"} +{"timestamp":"2024-03-06T15:40:58.534","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T16:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:58.534","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T16:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:58.545","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:45:00.0"} +{"timestamp":"2024-03-06T15:40:58.545","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:45:00.0"} +{"timestamp":"2024-03-06T15:40:58.545","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:45:00.0"} +{"timestamp":"2024-03-06T15:40:58.546","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:45:00.0"} +{"timestamp":"2024-03-06T15:40:58.546","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:45:00.0"} +{"timestamp":"2024-03-06T15:40:58.547","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:45:00.0"} +{"timestamp":"2024-03-06T15:40:58.547","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:45:00.0"} +{"timestamp":"2024-03-06T15:40:58.548","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:45:00.0"} +{"timestamp":"2024-03-06T15:40:58.548","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T16:45:00.0"} +{"timestamp":"2024-03-06T15:40:58.728","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T16:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:58.729","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T16:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:58.743","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:00:00.0"} +{"timestamp":"2024-03-06T15:40:58.743","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:00:00.0"} +{"timestamp":"2024-03-06T15:40:58.744","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:00:00.0"} +{"timestamp":"2024-03-06T15:40:58.745","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:00:00.0"} +{"timestamp":"2024-03-06T15:40:58.745","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:00:00.0"} +{"timestamp":"2024-03-06T15:40:58.745","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:00:00.0"} +{"timestamp":"2024-03-06T15:40:58.745","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:00:00.0"} +{"timestamp":"2024-03-06T15:40:58.746","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:00:00.0"} +{"timestamp":"2024-03-06T15:40:58.746","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:00:00.0"} +{"timestamp":"2024-03-06T15:40:58.92","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T17:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:58.92","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T17:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:58.937","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.937","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.937","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.938","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.938","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.939","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.939","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.94","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.94","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:15:00.0"} +{"timestamp":"2024-03-06T15:40:59.127","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T17:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:59.127","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T17:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:59.138","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.138","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.138","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.139","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.139","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.14","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.14","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.141","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.141","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.313","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T17:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:59.313","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T17:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:59.324","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:45:00.0"} +{"timestamp":"2024-03-06T15:40:59.324","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:45:00.0"} +{"timestamp":"2024-03-06T15:40:59.324","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:45:00.0"} +{"timestamp":"2024-03-06T15:40:59.325","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:45:00.0"} +{"timestamp":"2024-03-06T15:40:59.325","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:45:00.0"} +{"timestamp":"2024-03-06T15:40:59.326","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:45:00.0"} +{"timestamp":"2024-03-06T15:40:59.326","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:45:00.0"} +{"timestamp":"2024-03-06T15:40:59.327","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:45:00.0"} +{"timestamp":"2024-03-06T15:40:59.327","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T17:45:00.0"} +{"timestamp":"2024-03-06T15:40:59.496","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T17:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:59.496","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T17:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:59.507","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:00:00.0"} +{"timestamp":"2024-03-06T15:40:59.507","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:00:00.0"} +{"timestamp":"2024-03-06T15:40:59.508","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:00:00.0"} +{"timestamp":"2024-03-06T15:40:59.508","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:00:00.0"} +{"timestamp":"2024-03-06T15:40:59.509","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:00:00.0"} +{"timestamp":"2024-03-06T15:40:59.509","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:00:00.0"} +{"timestamp":"2024-03-06T15:40:59.509","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:00:00.0"} +{"timestamp":"2024-03-06T15:40:59.51","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:00:00.0"} +{"timestamp":"2024-03-06T15:40:59.51","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:00:00.0"} +{"timestamp":"2024-03-06T15:40:59.679","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T18:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:59.68","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T18:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:59.696","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:15:00.0"} +{"timestamp":"2024-03-06T15:40:59.696","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:15:00.0"} +{"timestamp":"2024-03-06T15:40:59.697","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:15:00.0"} +{"timestamp":"2024-03-06T15:40:59.698","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:15:00.0"} +{"timestamp":"2024-03-06T15:40:59.698","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:15:00.0"} +{"timestamp":"2024-03-06T15:40:59.698","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:15:00.0"} +{"timestamp":"2024-03-06T15:40:59.699","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:15:00.0"} +{"timestamp":"2024-03-06T15:40:59.699","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:15:00.0"} +{"timestamp":"2024-03-06T15:40:59.699","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:15:00.0"} +{"timestamp":"2024-03-06T15:40:59.871","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T18:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:40:59.872","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T18:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:40:59.882","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.882","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.883","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.884","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.884","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.884","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.884","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.885","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.885","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:30:00.0"} +{"timestamp":"2024-03-06T15:41:00.059","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T18:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:00.059","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T18:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:00.07","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.07","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.071","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.072","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.072","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.072","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.072","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.073","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.073","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.247","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T18:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:00.248","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T18:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:00.258","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:00.258","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:00.259","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:00.26","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:00.26","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:00.26","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:00.261","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:00.261","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:00.261","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:00.437","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T19:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:00.438","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T19:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:00.454","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:00.454","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:00.455","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:00.456","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:00.456","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:00.457","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:00.457","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:00.457","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:00.458","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:00.633","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T19:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:00.634","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T19:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:00.644","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:00.644","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:00.645","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:00.646","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:00.646","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:00.646","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:00.646","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:00.647","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:00.647","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:00.835","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T19:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:00.835","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T19:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:00.846","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.846","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.847","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.848","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.848","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.848","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.848","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.849","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.849","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:01.027","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T19:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:01.028","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T19:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:01.038","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.038","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.039","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.04","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.04","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.04","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.04","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.041","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.041","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.225","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T20:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:01.225","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T20:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:01.242","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:01.242","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:01.242","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:01.243","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:01.243","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:01.244","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:01.244","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:01.245","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:01.245","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:01.433","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T20:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:01.433","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T20:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:01.444","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:01.444","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:01.444","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:01.445","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:01.445","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:01.446","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:01.446","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:01.447","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:01.447","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:01.636","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T20:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:01.637","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T20:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:01.66","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:01.661","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:01.661","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:01.663","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:01.663","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:01.663","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:01.663","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:01.664","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:01.664","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:01.866","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T20:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:01.867","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T20:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:01.877","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.877","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.878","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.879","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.879","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.879","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.879","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.88","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.88","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:02.068","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T21:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:02.069","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T21:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:02.085","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.085","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.086","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.087","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.087","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.087","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.088","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.088","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.088","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.277","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T21:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:02.277","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T21:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:02.288","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:02.288","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:02.288","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:02.289","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:02.289","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:02.29","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:02.29","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:02.291","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:02.291","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:02.475","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T21:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:02.475","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T21:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:02.486","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:02.486","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:02.486","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:02.487","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:02.487","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:02.488","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:02.488","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:02.489","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:02.489","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:02.674","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T21:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:02.674","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T21:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:02.685","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:02.685","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:02.686","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:02.687","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:02.687","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:02.687","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:02.687","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:02.688","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:02.688","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:02.886","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T22:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:02.886","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T22:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:02.903","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.903","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.903","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.904","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.904","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.905","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.905","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.906","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.906","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:03.099","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T22:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:03.1","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T22:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:03.11","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:03.11","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:03.111","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:03.112","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:03.112","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:03.112","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:03.112","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:03.113","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:03.113","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:03.309","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T22:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:03.309","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T22:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:03.319","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:03.32","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:03.32","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:03.321","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:03.321","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:03.322","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:03.322","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:03.322","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:03.323","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:03.525","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T22:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:03.526","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T22:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:03.536","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:03.536","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:03.537","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:03.538","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:03.538","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:03.538","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:03.539","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:03.539","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:03.54","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:03.742","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T23:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:03.743","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T23:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:03.76","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:03.76","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:03.76","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:03.761","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:03.761","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:03.762","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:03.762","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:03.763","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:03.763","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:03.99","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T23:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:03.99","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T23:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:04.001","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:04.001","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:04.002","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:04.003","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:04.003","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:04.003","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:04.003","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:04.004","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:04.004","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:04.209","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T23:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:04.21","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T23:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:04.22","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:04.22","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:04.221","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:04.222","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:04.222","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:04.222","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:04.222","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:04.223","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:04.223","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-01T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:04.43","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T23:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:04.43","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-01T23:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:04.484","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"UC","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:04.5","parameter_type":"RequirementTimeSeriesParameter","model_name":"UC","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:04.502","parameter_type":"RequirementTimeSeriesParameter","model_name":"UC","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:04.542","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"UC","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:04.543","parameter_type":"RequirementTimeSeriesParameter","model_name":"UC","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:04.548","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"UC","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:04.549","parameter_type":"RequirementTimeSeriesParameter","model_name":"UC","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:04.805","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"UC","component_type":"HydroDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:04.807","parameter_type":"RequirementTimeSeriesParameter","model_name":"UC","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"322_CT_6"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"321_CC_1"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":-0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"202_STEAM_3"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_CT_4"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":-0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_STEAM_2"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"213_CT_1"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_CT_6"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"313_CC_1"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":-0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"101_STEAM_3"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_CT_1"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_3"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"302_CT_3"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"215_CT_4"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":-0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"102_STEAM_3"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"301_CT_4"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_2"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"221_CC_1"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_CT_5"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"315_CT_7"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"215_CT_5"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"323_CC_1"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":-0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"101_STEAM_4"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_1"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_STEAM_3"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"318_CC_1"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"307_CT_2"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"213_CT_2"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_4"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"118_CC_1"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"315_CT_8"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"218_CC_1"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"213_CC_3"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":-0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"115_STEAM_3"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"323_CC_2"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"322_CT_5"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"207_CT_2"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_STEAM_3"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":-0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_STEAM_1"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_CT_5"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":-0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_STEAM_2"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":-0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"202_STEAM_4"} +{"timestamp":"2024-03-06T15:41:04.978","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":-0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"116_STEAM_1"} +{"timestamp":"2024-03-06T15:41:04.979","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"121_NUCLEAR_1"} +{"timestamp":"2024-03-06T15:41:04.979","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_CT_4"} +{"timestamp":"2024-03-06T15:41:04.979","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"207_CT_1"} +{"timestamp":"2024-03-06T15:41:04.979","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"301_CT_3"} +{"timestamp":"2024-03-06T15:41:04.979","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":-0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"316_STEAM_1"} +{"timestamp":"2024-03-06T15:41:04.979","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":-0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"216_STEAM_1"} +{"timestamp":"2024-03-06T15:41:04.979","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"315_CT_6"} +{"timestamp":"2024-03-06T15:41:04.979","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":-0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"201_STEAM_3"} +{"timestamp":"2024-03-06T15:41:04.979","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"302_CT_4"} +{"timestamp":"2024-03-06T15:41:04.979","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"307_CT_1"} +{"timestamp":"2024-03-06T15:41:04.979","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":-0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"102_STEAM_4"} +{"timestamp":"2024-03-06T15:41:04.979","model_name":"UC","component_type":"ThermalStandard","previous_value":1.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DeviceStatus","new_value":1.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"107_CC_1"} +{"timestamp":"2024-03-06T15:41:05.127","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"322_CT_6"} +{"timestamp":"2024-03-06T15:41:05.127","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"321_CC_1"} +{"timestamp":"2024-03-06T15:41:05.127","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"202_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.127","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_CT_4"} +{"timestamp":"2024-03-06T15:41:05.127","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_STEAM_2"} +{"timestamp":"2024-03-06T15:41:05.127","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"213_CT_1"} +{"timestamp":"2024-03-06T15:41:05.127","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_CT_6"} +{"timestamp":"2024-03-06T15:41:05.127","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"313_CC_1"} +{"timestamp":"2024-03-06T15:41:05.127","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"101_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.127","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_CT_1"} +{"timestamp":"2024-03-06T15:41:05.127","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_3"} +{"timestamp":"2024-03-06T15:41:05.127","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"302_CT_3"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"215_CT_4"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"102_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"301_CT_4"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_2"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"221_CC_1"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_CT_5"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"315_CT_7"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"215_CT_5"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"323_CC_1"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"101_STEAM_4"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_1"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"318_CC_1"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"307_CT_2"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"213_CT_2"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_4"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"118_CC_1"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"315_CT_8"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"218_CC_1"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"213_CC_3"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"115_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"323_CC_2"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"322_CT_5"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"207_CT_2"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_STEAM_1"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_CT_5"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_STEAM_2"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"202_STEAM_4"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"116_STEAM_1"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"121_NUCLEAR_1"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_CT_4"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"207_CT_1"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"301_CT_3"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"316_STEAM_1"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"216_STEAM_1"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"315_CT_6"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"201_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"302_CT_4"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"307_CT_1"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"102_STEAM_4"} +{"timestamp":"2024-03-06T15:41:05.128","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOff","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"107_CC_1"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"322_CT_6"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":1.6999999999999997,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":1.6999999999999997,"simulation_time":"2020-01-02T00:00:00.0","device_name":"321_CC_1"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"202_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_CT_4"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_STEAM_2"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"213_CT_1"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_CT_6"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":1.6999999999999997,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":2.316666668,"simulation_time":"2020-01-02T00:00:00.0","device_name":"313_CC_1"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"101_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_CT_1"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_3"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"302_CT_3"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"215_CT_4"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"102_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"301_CT_4"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_2"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":1.6999999999999997,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":1.6999999999999997,"simulation_time":"2020-01-02T00:00:00.0","device_name":"221_CC_1"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_CT_5"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"315_CT_7"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"215_CT_5"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":1.6999999999999997,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":1.6999999999999997,"simulation_time":"2020-01-02T00:00:00.0","device_name":"323_CC_1"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"101_STEAM_4"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_1"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":1.4000000000000001,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":1.4000000000000001,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":1.6999999999999997,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":1.6999999999999997,"simulation_time":"2020-01-02T00:00:00.0","device_name":"318_CC_1"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"307_CT_2"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"213_CT_2"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_4"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":1.6999999999999997,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":1.6999999999999997,"simulation_time":"2020-01-02T00:00:00.0","device_name":"118_CC_1"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"315_CT_8"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":1.6999999999999997,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":2.290833344399999,"simulation_time":"2020-01-02T00:00:00.0","device_name":"218_CC_1"} +{"timestamp":"2024-03-06T15:41:05.271","model_name":"UC","component_type":"ThermalStandard","previous_value":1.6999999999999997,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":1.6999999999999997,"simulation_time":"2020-01-02T00:00:00.0","device_name":"213_CC_3"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"115_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":1.6999999999999997,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":1.6999999999999997,"simulation_time":"2020-01-02T00:00:00.0","device_name":"323_CC_2"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"322_CT_5"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"207_CT_2"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":1.4000000000000001,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":1.4000000000000001,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_STEAM_1"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_CT_5"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_STEAM_2"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"202_STEAM_4"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"116_STEAM_1"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":3.986666668,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":3.973333332,"simulation_time":"2020-01-02T00:00:00.0","device_name":"121_NUCLEAR_1"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_CT_4"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"207_CT_1"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"301_CT_3"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"316_STEAM_1"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"216_STEAM_1"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"315_CT_6"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"201_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"302_CT_4"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":0.22,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.22,"simulation_time":"2020-01-02T00:00:00.0","device_name":"307_CT_1"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":-0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"102_STEAM_4"} +{"timestamp":"2024-03-06T15:41:05.272","model_name":"UC","component_type":"ThermalStandard","previous_value":1.6999999999999997,"name":"InitialConditionUpdateEvent","initial_condition_type":"DevicePower","new_value":1.6999999999999997,"simulation_time":"2020-01-02T00:00:00.0","device_name":"107_CC_1"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"322_CT_6"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"321_CC_1"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"202_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_CT_4"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_STEAM_2"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"213_CT_1"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_CT_6"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"313_CC_1"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"101_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_CT_1"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_3"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"302_CT_3"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"215_CT_4"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"102_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"301_CT_4"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_2"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"221_CC_1"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_CT_5"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"315_CT_7"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"215_CT_5"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"323_CC_1"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"101_STEAM_4"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_1"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"318_CC_1"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"307_CT_2"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"213_CT_2"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"113_CT_4"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"118_CC_1"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"315_CT_8"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"218_CC_1"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"213_CC_3"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"115_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"323_CC_2"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"322_CT_5"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"207_CT_2"} +{"timestamp":"2024-03-06T15:41:05.404","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_STEAM_1"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_CT_5"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"223_STEAM_2"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"202_STEAM_4"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"116_STEAM_1"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"121_NUCLEAR_1"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"123_CT_4"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"207_CT_1"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"301_CT_3"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"316_STEAM_1"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"216_STEAM_1"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"315_CT_6"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"201_STEAM_3"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"302_CT_4"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"307_CT_1"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":0.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":0.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"102_STEAM_4"} +{"timestamp":"2024-03-06T15:41:05.405","model_name":"UC","component_type":"ThermalStandard","previous_value":10000.0,"name":"InitialConditionUpdateEvent","initial_condition_type":"InitialTimeDurationOn","new_value":10024.0,"simulation_time":"2020-01-02T00:00:00.0","device_name":"107_CC_1"} +{"timestamp":"2024-03-06T15:41:07.335","model_name":"UC","name":"StateUpdateEvent","simulation_time":"2020-01-02T00:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:07.36","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:07.36","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:07.361","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:07.362","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:07.362","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:07.362","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:07.362","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:07.363","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:07.363","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:07.589","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T00:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:07.59","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T00:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:07.607","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:15:00.0"} +{"timestamp":"2024-03-06T15:41:07.607","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:15:00.0"} +{"timestamp":"2024-03-06T15:41:07.607","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:15:00.0"} +{"timestamp":"2024-03-06T15:41:07.609","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:15:00.0"} +{"timestamp":"2024-03-06T15:41:07.609","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:15:00.0"} +{"timestamp":"2024-03-06T15:41:07.609","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:15:00.0"} +{"timestamp":"2024-03-06T15:41:07.609","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:15:00.0"} +{"timestamp":"2024-03-06T15:41:07.61","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:15:00.0"} +{"timestamp":"2024-03-06T15:41:07.61","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:15:00.0"} +{"timestamp":"2024-03-06T15:41:07.805","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T00:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:07.806","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T00:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:07.816","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:30:00.0"} +{"timestamp":"2024-03-06T15:41:07.816","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:30:00.0"} +{"timestamp":"2024-03-06T15:41:07.817","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:30:00.0"} +{"timestamp":"2024-03-06T15:41:07.818","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:30:00.0"} +{"timestamp":"2024-03-06T15:41:07.818","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:30:00.0"} +{"timestamp":"2024-03-06T15:41:07.818","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:30:00.0"} +{"timestamp":"2024-03-06T15:41:07.818","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:30:00.0"} +{"timestamp":"2024-03-06T15:41:07.819","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:30:00.0"} +{"timestamp":"2024-03-06T15:41:07.819","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:30:00.0"} +{"timestamp":"2024-03-06T15:41:08.021","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T00:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:08.022","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T00:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:08.032","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.032","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.033","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.034","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.034","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.034","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.034","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.035","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.035","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T00:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.222","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T00:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:08.223","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T00:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:08.233","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:00:00.0"} +{"timestamp":"2024-03-06T15:41:08.233","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:00:00.0"} +{"timestamp":"2024-03-06T15:41:08.234","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:00:00.0"} +{"timestamp":"2024-03-06T15:41:08.235","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:00:00.0"} +{"timestamp":"2024-03-06T15:41:08.235","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:00:00.0"} +{"timestamp":"2024-03-06T15:41:08.235","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:00:00.0"} +{"timestamp":"2024-03-06T15:41:08.235","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:00:00.0"} +{"timestamp":"2024-03-06T15:41:08.236","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:00:00.0"} +{"timestamp":"2024-03-06T15:41:08.236","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:00:00.0"} +{"timestamp":"2024-03-06T15:41:08.419","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T01:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:08.419","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T01:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:08.436","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:15:00.0"} +{"timestamp":"2024-03-06T15:41:08.436","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:15:00.0"} +{"timestamp":"2024-03-06T15:41:08.437","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:15:00.0"} +{"timestamp":"2024-03-06T15:41:08.438","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:15:00.0"} +{"timestamp":"2024-03-06T15:41:08.438","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:15:00.0"} +{"timestamp":"2024-03-06T15:41:08.438","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:15:00.0"} +{"timestamp":"2024-03-06T15:41:08.438","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:15:00.0"} +{"timestamp":"2024-03-06T15:41:08.439","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:15:00.0"} +{"timestamp":"2024-03-06T15:41:08.439","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:15:00.0"} +{"timestamp":"2024-03-06T15:41:08.621","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T01:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:08.622","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T01:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:08.632","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:30:00.0"} +{"timestamp":"2024-03-06T15:41:08.632","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:30:00.0"} +{"timestamp":"2024-03-06T15:41:08.633","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:30:00.0"} +{"timestamp":"2024-03-06T15:41:08.634","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:30:00.0"} +{"timestamp":"2024-03-06T15:41:08.634","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:30:00.0"} +{"timestamp":"2024-03-06T15:41:08.634","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:30:00.0"} +{"timestamp":"2024-03-06T15:41:08.634","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:30:00.0"} +{"timestamp":"2024-03-06T15:41:08.635","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:30:00.0"} +{"timestamp":"2024-03-06T15:41:08.635","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:30:00.0"} +{"timestamp":"2024-03-06T15:41:08.82","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T01:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:08.82","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T01:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:08.831","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.831","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.831","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.832","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.832","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.833","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.833","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.834","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.834","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T01:45:00.0"} +{"timestamp":"2024-03-06T15:41:09.018","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T01:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:09.018","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T01:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:09.029","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.029","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.03","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.031","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.031","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.031","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.031","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.032","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.032","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.39","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T02:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:09.391","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T02:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:09.408","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:15:00.0"} +{"timestamp":"2024-03-06T15:41:09.408","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:15:00.0"} +{"timestamp":"2024-03-06T15:41:09.409","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:15:00.0"} +{"timestamp":"2024-03-06T15:41:09.41","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:15:00.0"} +{"timestamp":"2024-03-06T15:41:09.41","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:15:00.0"} +{"timestamp":"2024-03-06T15:41:09.41","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:15:00.0"} +{"timestamp":"2024-03-06T15:41:09.41","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:15:00.0"} +{"timestamp":"2024-03-06T15:41:09.411","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:15:00.0"} +{"timestamp":"2024-03-06T15:41:09.411","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:15:00.0"} +{"timestamp":"2024-03-06T15:41:09.592","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T02:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:09.593","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T02:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:09.604","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:30:00.0"} +{"timestamp":"2024-03-06T15:41:09.604","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:30:00.0"} +{"timestamp":"2024-03-06T15:41:09.604","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:30:00.0"} +{"timestamp":"2024-03-06T15:41:09.605","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:30:00.0"} +{"timestamp":"2024-03-06T15:41:09.605","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:30:00.0"} +{"timestamp":"2024-03-06T15:41:09.606","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:30:00.0"} +{"timestamp":"2024-03-06T15:41:09.606","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:30:00.0"} +{"timestamp":"2024-03-06T15:41:09.607","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:30:00.0"} +{"timestamp":"2024-03-06T15:41:09.607","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:30:00.0"} +{"timestamp":"2024-03-06T15:41:09.787","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T02:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:09.787","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T02:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:09.798","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:45:00.0"} +{"timestamp":"2024-03-06T15:41:09.798","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:45:00.0"} +{"timestamp":"2024-03-06T15:41:09.798","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:45:00.0"} +{"timestamp":"2024-03-06T15:41:09.799","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:45:00.0"} +{"timestamp":"2024-03-06T15:41:09.799","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:45:00.0"} +{"timestamp":"2024-03-06T15:41:09.8","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:45:00.0"} +{"timestamp":"2024-03-06T15:41:09.8","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:45:00.0"} +{"timestamp":"2024-03-06T15:41:09.801","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:45:00.0"} +{"timestamp":"2024-03-06T15:41:09.801","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T02:45:00.0"} +{"timestamp":"2024-03-06T15:41:09.981","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T02:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:09.981","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T02:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:09.992","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.992","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.992","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.993","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.993","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.994","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.994","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.995","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.995","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:00:00.0"} +{"timestamp":"2024-03-06T15:41:10.189","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T03:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:10.189","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T03:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:10.206","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:15:00.0"} +{"timestamp":"2024-03-06T15:41:10.206","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:15:00.0"} +{"timestamp":"2024-03-06T15:41:10.206","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:15:00.0"} +{"timestamp":"2024-03-06T15:41:10.207","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:15:00.0"} +{"timestamp":"2024-03-06T15:41:10.207","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:15:00.0"} +{"timestamp":"2024-03-06T15:41:10.208","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:15:00.0"} +{"timestamp":"2024-03-06T15:41:10.208","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:15:00.0"} +{"timestamp":"2024-03-06T15:41:10.209","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:15:00.0"} +{"timestamp":"2024-03-06T15:41:10.209","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:15:00.0"} +{"timestamp":"2024-03-06T15:41:10.398","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T03:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:10.398","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T03:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:10.434","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:30:00.0"} +{"timestamp":"2024-03-06T15:41:10.434","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:30:00.0"} +{"timestamp":"2024-03-06T15:41:10.435","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:30:00.0"} +{"timestamp":"2024-03-06T15:41:10.436","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:30:00.0"} +{"timestamp":"2024-03-06T15:41:10.436","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:30:00.0"} +{"timestamp":"2024-03-06T15:41:10.437","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:30:00.0"} +{"timestamp":"2024-03-06T15:41:10.437","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:30:00.0"} +{"timestamp":"2024-03-06T15:41:10.438","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:30:00.0"} +{"timestamp":"2024-03-06T15:41:10.438","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:30:00.0"} +{"timestamp":"2024-03-06T15:41:10.629","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T03:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:10.63","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T03:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:10.64","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:45:00.0"} +{"timestamp":"2024-03-06T15:41:10.64","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:45:00.0"} +{"timestamp":"2024-03-06T15:41:10.641","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:45:00.0"} +{"timestamp":"2024-03-06T15:41:10.642","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:45:00.0"} +{"timestamp":"2024-03-06T15:41:10.642","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:45:00.0"} +{"timestamp":"2024-03-06T15:41:10.642","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:45:00.0"} +{"timestamp":"2024-03-06T15:41:10.642","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:45:00.0"} +{"timestamp":"2024-03-06T15:41:10.643","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:45:00.0"} +{"timestamp":"2024-03-06T15:41:10.643","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T03:45:00.0"} +{"timestamp":"2024-03-06T15:41:10.841","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T03:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:10.842","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T03:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:10.852","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:00:00.0"} +{"timestamp":"2024-03-06T15:41:10.852","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:00:00.0"} +{"timestamp":"2024-03-06T15:41:10.853","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:00:00.0"} +{"timestamp":"2024-03-06T15:41:10.854","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:00:00.0"} +{"timestamp":"2024-03-06T15:41:10.854","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:00:00.0"} +{"timestamp":"2024-03-06T15:41:10.854","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:00:00.0"} +{"timestamp":"2024-03-06T15:41:10.854","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:00:00.0"} +{"timestamp":"2024-03-06T15:41:10.855","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:00:00.0"} +{"timestamp":"2024-03-06T15:41:10.855","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:00:00.0"} +{"timestamp":"2024-03-06T15:41:11.056","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T04:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:11.057","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T04:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:11.075","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.075","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.075","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.076","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.076","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.077","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.077","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.078","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.078","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.279","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T04:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:11.28","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T04:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:11.29","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:30:00.0"} +{"timestamp":"2024-03-06T15:41:11.291","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:30:00.0"} +{"timestamp":"2024-03-06T15:41:11.291","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:30:00.0"} +{"timestamp":"2024-03-06T15:41:11.292","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:30:00.0"} +{"timestamp":"2024-03-06T15:41:11.292","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:30:00.0"} +{"timestamp":"2024-03-06T15:41:11.293","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:30:00.0"} +{"timestamp":"2024-03-06T15:41:11.293","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:30:00.0"} +{"timestamp":"2024-03-06T15:41:11.294","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:30:00.0"} +{"timestamp":"2024-03-06T15:41:11.294","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:30:00.0"} +{"timestamp":"2024-03-06T15:41:11.497","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T04:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:11.497","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T04:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:11.508","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:45:00.0"} +{"timestamp":"2024-03-06T15:41:11.508","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:45:00.0"} +{"timestamp":"2024-03-06T15:41:11.509","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:45:00.0"} +{"timestamp":"2024-03-06T15:41:11.509","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:45:00.0"} +{"timestamp":"2024-03-06T15:41:11.51","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:45:00.0"} +{"timestamp":"2024-03-06T15:41:11.51","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:45:00.0"} +{"timestamp":"2024-03-06T15:41:11.51","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:45:00.0"} +{"timestamp":"2024-03-06T15:41:11.511","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:45:00.0"} +{"timestamp":"2024-03-06T15:41:11.511","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T04:45:00.0"} +{"timestamp":"2024-03-06T15:41:11.715","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T04:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:11.716","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T04:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:11.727","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:00:00.0"} +{"timestamp":"2024-03-06T15:41:11.727","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:00:00.0"} +{"timestamp":"2024-03-06T15:41:11.727","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:00:00.0"} +{"timestamp":"2024-03-06T15:41:11.728","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:00:00.0"} +{"timestamp":"2024-03-06T15:41:11.728","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:00:00.0"} +{"timestamp":"2024-03-06T15:41:11.729","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:00:00.0"} +{"timestamp":"2024-03-06T15:41:11.729","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:00:00.0"} +{"timestamp":"2024-03-06T15:41:11.73","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:00:00.0"} +{"timestamp":"2024-03-06T15:41:11.73","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:00:00.0"} +{"timestamp":"2024-03-06T15:41:11.935","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T05:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:11.935","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T05:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:11.952","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.952","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.952","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.953","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.953","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.954","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.954","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.955","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.955","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:15:00.0"} +{"timestamp":"2024-03-06T15:41:12.163","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T05:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:12.164","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T05:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:12.174","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:30:00.0"} +{"timestamp":"2024-03-06T15:41:12.174","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:30:00.0"} +{"timestamp":"2024-03-06T15:41:12.175","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:30:00.0"} +{"timestamp":"2024-03-06T15:41:12.176","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:30:00.0"} +{"timestamp":"2024-03-06T15:41:12.176","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:30:00.0"} +{"timestamp":"2024-03-06T15:41:12.176","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:30:00.0"} +{"timestamp":"2024-03-06T15:41:12.176","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:30:00.0"} +{"timestamp":"2024-03-06T15:41:12.177","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:30:00.0"} +{"timestamp":"2024-03-06T15:41:12.177","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:30:00.0"} +{"timestamp":"2024-03-06T15:41:12.384","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T05:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:12.385","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T05:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:12.395","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:45:00.0"} +{"timestamp":"2024-03-06T15:41:12.395","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:45:00.0"} +{"timestamp":"2024-03-06T15:41:12.396","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:45:00.0"} +{"timestamp":"2024-03-06T15:41:12.397","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:45:00.0"} +{"timestamp":"2024-03-06T15:41:12.397","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:45:00.0"} +{"timestamp":"2024-03-06T15:41:12.397","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:45:00.0"} +{"timestamp":"2024-03-06T15:41:12.397","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:45:00.0"} +{"timestamp":"2024-03-06T15:41:12.398","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:45:00.0"} +{"timestamp":"2024-03-06T15:41:12.398","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T05:45:00.0"} +{"timestamp":"2024-03-06T15:41:12.603","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T05:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:12.604","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T05:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:12.614","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:00:00.0"} +{"timestamp":"2024-03-06T15:41:12.614","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:00:00.0"} +{"timestamp":"2024-03-06T15:41:12.615","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:00:00.0"} +{"timestamp":"2024-03-06T15:41:12.616","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:00:00.0"} +{"timestamp":"2024-03-06T15:41:12.616","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:00:00.0"} +{"timestamp":"2024-03-06T15:41:12.616","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:00:00.0"} +{"timestamp":"2024-03-06T15:41:12.616","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:00:00.0"} +{"timestamp":"2024-03-06T15:41:12.617","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:00:00.0"} +{"timestamp":"2024-03-06T15:41:12.617","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:00:00.0"} +{"timestamp":"2024-03-06T15:41:12.823","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T06:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:12.824","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T06:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:12.84","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:15:00.0"} +{"timestamp":"2024-03-06T15:41:12.84","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:15:00.0"} +{"timestamp":"2024-03-06T15:41:12.841","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:15:00.0"} +{"timestamp":"2024-03-06T15:41:12.842","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:15:00.0"} +{"timestamp":"2024-03-06T15:41:12.842","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:15:00.0"} +{"timestamp":"2024-03-06T15:41:12.842","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:15:00.0"} +{"timestamp":"2024-03-06T15:41:12.842","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:15:00.0"} +{"timestamp":"2024-03-06T15:41:12.843","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:15:00.0"} +{"timestamp":"2024-03-06T15:41:12.843","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:15:00.0"} +{"timestamp":"2024-03-06T15:41:13.057","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T06:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:13.057","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T06:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:13.068","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:30:00.0"} +{"timestamp":"2024-03-06T15:41:13.068","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:30:00.0"} +{"timestamp":"2024-03-06T15:41:13.068","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:30:00.0"} +{"timestamp":"2024-03-06T15:41:13.069","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:30:00.0"} +{"timestamp":"2024-03-06T15:41:13.069","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:30:00.0"} +{"timestamp":"2024-03-06T15:41:13.07","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:30:00.0"} +{"timestamp":"2024-03-06T15:41:13.07","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:30:00.0"} +{"timestamp":"2024-03-06T15:41:13.071","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:30:00.0"} +{"timestamp":"2024-03-06T15:41:13.071","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:30:00.0"} +{"timestamp":"2024-03-06T15:41:13.292","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T06:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:13.293","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T06:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:13.303","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:45:00.0"} +{"timestamp":"2024-03-06T15:41:13.303","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:45:00.0"} +{"timestamp":"2024-03-06T15:41:13.304","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:45:00.0"} +{"timestamp":"2024-03-06T15:41:13.305","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:45:00.0"} +{"timestamp":"2024-03-06T15:41:13.305","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:45:00.0"} +{"timestamp":"2024-03-06T15:41:13.305","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:45:00.0"} +{"timestamp":"2024-03-06T15:41:13.305","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:45:00.0"} +{"timestamp":"2024-03-06T15:41:13.306","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:45:00.0"} +{"timestamp":"2024-03-06T15:41:13.306","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T06:45:00.0"} +{"timestamp":"2024-03-06T15:41:13.536","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T06:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:13.537","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T06:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:13.548","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:00:00.0"} +{"timestamp":"2024-03-06T15:41:13.548","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:00:00.0"} +{"timestamp":"2024-03-06T15:41:13.549","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:00:00.0"} +{"timestamp":"2024-03-06T15:41:13.55","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:00:00.0"} +{"timestamp":"2024-03-06T15:41:13.55","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:00:00.0"} +{"timestamp":"2024-03-06T15:41:13.55","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:00:00.0"} +{"timestamp":"2024-03-06T15:41:13.55","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:00:00.0"} +{"timestamp":"2024-03-06T15:41:13.551","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:00:00.0"} +{"timestamp":"2024-03-06T15:41:13.551","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:00:00.0"} +{"timestamp":"2024-03-06T15:41:13.809","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T07:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:13.81","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T07:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:13.827","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:15:00.0"} +{"timestamp":"2024-03-06T15:41:13.827","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:15:00.0"} +{"timestamp":"2024-03-06T15:41:13.828","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:15:00.0"} +{"timestamp":"2024-03-06T15:41:13.829","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:15:00.0"} +{"timestamp":"2024-03-06T15:41:13.829","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:15:00.0"} +{"timestamp":"2024-03-06T15:41:13.829","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:15:00.0"} +{"timestamp":"2024-03-06T15:41:13.829","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:15:00.0"} +{"timestamp":"2024-03-06T15:41:13.83","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:15:00.0"} +{"timestamp":"2024-03-06T15:41:13.83","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:15:00.0"} +{"timestamp":"2024-03-06T15:41:14.073","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T07:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:14.074","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T07:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:14.084","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:30:00.0"} +{"timestamp":"2024-03-06T15:41:14.084","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:30:00.0"} +{"timestamp":"2024-03-06T15:41:14.085","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:30:00.0"} +{"timestamp":"2024-03-06T15:41:14.086","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:30:00.0"} +{"timestamp":"2024-03-06T15:41:14.086","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:30:00.0"} +{"timestamp":"2024-03-06T15:41:14.086","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:30:00.0"} +{"timestamp":"2024-03-06T15:41:14.086","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:30:00.0"} +{"timestamp":"2024-03-06T15:41:14.087","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:30:00.0"} +{"timestamp":"2024-03-06T15:41:14.087","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:30:00.0"} +{"timestamp":"2024-03-06T15:41:14.333","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T07:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:14.334","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T07:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:14.344","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:45:00.0"} +{"timestamp":"2024-03-06T15:41:14.344","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:45:00.0"} +{"timestamp":"2024-03-06T15:41:14.345","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:45:00.0"} +{"timestamp":"2024-03-06T15:41:14.346","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:45:00.0"} +{"timestamp":"2024-03-06T15:41:14.346","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:45:00.0"} +{"timestamp":"2024-03-06T15:41:14.346","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:45:00.0"} +{"timestamp":"2024-03-06T15:41:14.346","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:45:00.0"} +{"timestamp":"2024-03-06T15:41:14.347","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:45:00.0"} +{"timestamp":"2024-03-06T15:41:14.347","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T07:45:00.0"} +{"timestamp":"2024-03-06T15:41:14.598","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T07:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:14.598","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T07:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:14.608","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:00:00.0"} +{"timestamp":"2024-03-06T15:41:14.608","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:00:00.0"} +{"timestamp":"2024-03-06T15:41:14.609","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:00:00.0"} +{"timestamp":"2024-03-06T15:41:14.61","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:00:00.0"} +{"timestamp":"2024-03-06T15:41:14.61","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:00:00.0"} +{"timestamp":"2024-03-06T15:41:14.61","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:00:00.0"} +{"timestamp":"2024-03-06T15:41:14.61","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:00:00.0"} +{"timestamp":"2024-03-06T15:41:14.611","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:00:00.0"} +{"timestamp":"2024-03-06T15:41:14.611","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:00:00.0"} +{"timestamp":"2024-03-06T15:41:14.869","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T08:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:14.869","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T08:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:14.886","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:15:00.0"} +{"timestamp":"2024-03-06T15:41:14.886","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:15:00.0"} +{"timestamp":"2024-03-06T15:41:14.886","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:15:00.0"} +{"timestamp":"2024-03-06T15:41:14.887","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:15:00.0"} +{"timestamp":"2024-03-06T15:41:14.887","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:15:00.0"} +{"timestamp":"2024-03-06T15:41:14.888","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:15:00.0"} +{"timestamp":"2024-03-06T15:41:14.888","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:15:00.0"} +{"timestamp":"2024-03-06T15:41:14.889","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:15:00.0"} +{"timestamp":"2024-03-06T15:41:14.889","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:15:00.0"} +{"timestamp":"2024-03-06T15:41:15.147","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T08:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:15.148","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T08:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:15.158","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:30:00.0"} +{"timestamp":"2024-03-06T15:41:15.158","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:30:00.0"} +{"timestamp":"2024-03-06T15:41:15.159","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:30:00.0"} +{"timestamp":"2024-03-06T15:41:15.16","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:30:00.0"} +{"timestamp":"2024-03-06T15:41:15.16","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:30:00.0"} +{"timestamp":"2024-03-06T15:41:15.16","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:30:00.0"} +{"timestamp":"2024-03-06T15:41:15.16","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:30:00.0"} +{"timestamp":"2024-03-06T15:41:15.162","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:30:00.0"} +{"timestamp":"2024-03-06T15:41:15.162","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:30:00.0"} +{"timestamp":"2024-03-06T15:41:15.434","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T08:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:15.435","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T08:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:15.445","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:45:00.0"} +{"timestamp":"2024-03-06T15:41:15.445","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:45:00.0"} +{"timestamp":"2024-03-06T15:41:15.446","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:45:00.0"} +{"timestamp":"2024-03-06T15:41:15.447","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:45:00.0"} +{"timestamp":"2024-03-06T15:41:15.447","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:45:00.0"} +{"timestamp":"2024-03-06T15:41:15.447","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:45:00.0"} +{"timestamp":"2024-03-06T15:41:15.447","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:45:00.0"} +{"timestamp":"2024-03-06T15:41:15.448","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:45:00.0"} +{"timestamp":"2024-03-06T15:41:15.448","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T08:45:00.0"} +{"timestamp":"2024-03-06T15:41:15.711","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T08:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:15.712","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T08:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:15.722","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:00:00.0"} +{"timestamp":"2024-03-06T15:41:15.722","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:00:00.0"} +{"timestamp":"2024-03-06T15:41:15.723","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:00:00.0"} +{"timestamp":"2024-03-06T15:41:15.724","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:00:00.0"} +{"timestamp":"2024-03-06T15:41:15.724","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:00:00.0"} +{"timestamp":"2024-03-06T15:41:15.724","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:00:00.0"} +{"timestamp":"2024-03-06T15:41:15.724","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:00:00.0"} +{"timestamp":"2024-03-06T15:41:15.725","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:00:00.0"} +{"timestamp":"2024-03-06T15:41:15.725","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:00:00.0"} +{"timestamp":"2024-03-06T15:41:15.986","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T09:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:15.986","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T09:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:16.003","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:15:00.0"} +{"timestamp":"2024-03-06T15:41:16.003","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:15:00.0"} +{"timestamp":"2024-03-06T15:41:16.003","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:15:00.0"} +{"timestamp":"2024-03-06T15:41:16.004","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:15:00.0"} +{"timestamp":"2024-03-06T15:41:16.004","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:15:00.0"} +{"timestamp":"2024-03-06T15:41:16.005","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:15:00.0"} +{"timestamp":"2024-03-06T15:41:16.005","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:15:00.0"} +{"timestamp":"2024-03-06T15:41:16.006","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:15:00.0"} +{"timestamp":"2024-03-06T15:41:16.006","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:15:00.0"} +{"timestamp":"2024-03-06T15:41:16.274","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T09:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:16.275","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T09:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:16.285","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:30:00.0"} +{"timestamp":"2024-03-06T15:41:16.285","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:30:00.0"} +{"timestamp":"2024-03-06T15:41:16.286","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:30:00.0"} +{"timestamp":"2024-03-06T15:41:16.287","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:30:00.0"} +{"timestamp":"2024-03-06T15:41:16.287","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:30:00.0"} +{"timestamp":"2024-03-06T15:41:16.288","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:30:00.0"} +{"timestamp":"2024-03-06T15:41:16.288","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:30:00.0"} +{"timestamp":"2024-03-06T15:41:16.288","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:30:00.0"} +{"timestamp":"2024-03-06T15:41:16.289","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:30:00.0"} +{"timestamp":"2024-03-06T15:41:16.55","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T09:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:16.551","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T09:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:16.561","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:45:00.0"} +{"timestamp":"2024-03-06T15:41:16.562","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:45:00.0"} +{"timestamp":"2024-03-06T15:41:16.562","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:45:00.0"} +{"timestamp":"2024-03-06T15:41:16.563","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:45:00.0"} +{"timestamp":"2024-03-06T15:41:16.563","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:45:00.0"} +{"timestamp":"2024-03-06T15:41:16.564","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:45:00.0"} +{"timestamp":"2024-03-06T15:41:16.564","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:45:00.0"} +{"timestamp":"2024-03-06T15:41:16.564","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:45:00.0"} +{"timestamp":"2024-03-06T15:41:16.565","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T09:45:00.0"} +{"timestamp":"2024-03-06T15:41:16.828","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T09:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:16.828","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T09:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:16.839","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:00:00.0"} +{"timestamp":"2024-03-06T15:41:16.839","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:00:00.0"} +{"timestamp":"2024-03-06T15:41:16.839","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:00:00.0"} +{"timestamp":"2024-03-06T15:41:16.84","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:00:00.0"} +{"timestamp":"2024-03-06T15:41:16.84","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:00:00.0"} +{"timestamp":"2024-03-06T15:41:16.841","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:00:00.0"} +{"timestamp":"2024-03-06T15:41:16.841","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:00:00.0"} +{"timestamp":"2024-03-06T15:41:16.842","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:00:00.0"} +{"timestamp":"2024-03-06T15:41:16.842","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:00:00.0"} +{"timestamp":"2024-03-06T15:41:17.111","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T10:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:17.111","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T10:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:17.128","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:15:00.0"} +{"timestamp":"2024-03-06T15:41:17.128","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:15:00.0"} +{"timestamp":"2024-03-06T15:41:17.128","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:15:00.0"} +{"timestamp":"2024-03-06T15:41:17.129","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:15:00.0"} +{"timestamp":"2024-03-06T15:41:17.129","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:15:00.0"} +{"timestamp":"2024-03-06T15:41:17.13","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:15:00.0"} +{"timestamp":"2024-03-06T15:41:17.13","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:15:00.0"} +{"timestamp":"2024-03-06T15:41:17.131","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:15:00.0"} +{"timestamp":"2024-03-06T15:41:17.131","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:15:00.0"} +{"timestamp":"2024-03-06T15:41:17.395","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T10:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:17.396","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T10:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:17.407","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:30:00.0"} +{"timestamp":"2024-03-06T15:41:17.407","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:30:00.0"} +{"timestamp":"2024-03-06T15:41:17.407","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:30:00.0"} +{"timestamp":"2024-03-06T15:41:17.408","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:30:00.0"} +{"timestamp":"2024-03-06T15:41:17.408","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:30:00.0"} +{"timestamp":"2024-03-06T15:41:17.409","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:30:00.0"} +{"timestamp":"2024-03-06T15:41:17.409","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:30:00.0"} +{"timestamp":"2024-03-06T15:41:17.41","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:30:00.0"} +{"timestamp":"2024-03-06T15:41:17.41","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:30:00.0"} +{"timestamp":"2024-03-06T15:41:17.674","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T10:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:17.674","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T10:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:17.7","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:45:00.0"} +{"timestamp":"2024-03-06T15:41:17.7","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:45:00.0"} +{"timestamp":"2024-03-06T15:41:17.701","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:45:00.0"} +{"timestamp":"2024-03-06T15:41:17.702","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:45:00.0"} +{"timestamp":"2024-03-06T15:41:17.702","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:45:00.0"} +{"timestamp":"2024-03-06T15:41:17.702","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:45:00.0"} +{"timestamp":"2024-03-06T15:41:17.702","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:45:00.0"} +{"timestamp":"2024-03-06T15:41:17.703","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:45:00.0"} +{"timestamp":"2024-03-06T15:41:17.704","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T10:45:00.0"} +{"timestamp":"2024-03-06T15:41:17.963","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T10:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:17.964","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T10:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:17.974","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:00:00.0"} +{"timestamp":"2024-03-06T15:41:17.974","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:00:00.0"} +{"timestamp":"2024-03-06T15:41:17.975","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:00:00.0"} +{"timestamp":"2024-03-06T15:41:17.976","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:00:00.0"} +{"timestamp":"2024-03-06T15:41:17.976","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:00:00.0"} +{"timestamp":"2024-03-06T15:41:17.976","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:00:00.0"} +{"timestamp":"2024-03-06T15:41:17.976","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:00:00.0"} +{"timestamp":"2024-03-06T15:41:17.977","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:00:00.0"} +{"timestamp":"2024-03-06T15:41:17.977","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:00:00.0"} +{"timestamp":"2024-03-06T15:41:18.235","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T11:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:18.236","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T11:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:18.252","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:15:00.0"} +{"timestamp":"2024-03-06T15:41:18.253","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:15:00.0"} +{"timestamp":"2024-03-06T15:41:18.253","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:15:00.0"} +{"timestamp":"2024-03-06T15:41:18.254","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:15:00.0"} +{"timestamp":"2024-03-06T15:41:18.254","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:15:00.0"} +{"timestamp":"2024-03-06T15:41:18.255","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:15:00.0"} +{"timestamp":"2024-03-06T15:41:18.255","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:15:00.0"} +{"timestamp":"2024-03-06T15:41:18.256","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:15:00.0"} +{"timestamp":"2024-03-06T15:41:18.256","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:15:00.0"} +{"timestamp":"2024-03-06T15:41:18.516","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T11:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:18.516","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T11:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:18.527","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:30:00.0"} +{"timestamp":"2024-03-06T15:41:18.527","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:30:00.0"} +{"timestamp":"2024-03-06T15:41:18.527","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:30:00.0"} +{"timestamp":"2024-03-06T15:41:18.528","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:30:00.0"} +{"timestamp":"2024-03-06T15:41:18.528","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:30:00.0"} +{"timestamp":"2024-03-06T15:41:18.529","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:30:00.0"} +{"timestamp":"2024-03-06T15:41:18.529","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:30:00.0"} +{"timestamp":"2024-03-06T15:41:18.53","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:30:00.0"} +{"timestamp":"2024-03-06T15:41:18.53","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:30:00.0"} +{"timestamp":"2024-03-06T15:41:18.79","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T11:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:18.79","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T11:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:18.801","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:45:00.0"} +{"timestamp":"2024-03-06T15:41:18.801","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:45:00.0"} +{"timestamp":"2024-03-06T15:41:18.801","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:45:00.0"} +{"timestamp":"2024-03-06T15:41:18.802","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:45:00.0"} +{"timestamp":"2024-03-06T15:41:18.802","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:45:00.0"} +{"timestamp":"2024-03-06T15:41:18.803","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:45:00.0"} +{"timestamp":"2024-03-06T15:41:18.803","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:45:00.0"} +{"timestamp":"2024-03-06T15:41:18.804","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:45:00.0"} +{"timestamp":"2024-03-06T15:41:18.804","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T11:45:00.0"} +{"timestamp":"2024-03-06T15:41:19.066","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T11:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:19.066","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T11:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:19.077","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:00:00.0"} +{"timestamp":"2024-03-06T15:41:19.077","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:00:00.0"} +{"timestamp":"2024-03-06T15:41:19.078","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:00:00.0"} +{"timestamp":"2024-03-06T15:41:19.078","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:00:00.0"} +{"timestamp":"2024-03-06T15:41:19.079","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:00:00.0"} +{"timestamp":"2024-03-06T15:41:19.079","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:00:00.0"} +{"timestamp":"2024-03-06T15:41:19.079","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:00:00.0"} +{"timestamp":"2024-03-06T15:41:19.08","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:00:00.0"} +{"timestamp":"2024-03-06T15:41:19.08","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:00:00.0"} +{"timestamp":"2024-03-06T15:41:19.34","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T12:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:19.34","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T12:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:19.357","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:15:00.0"} +{"timestamp":"2024-03-06T15:41:19.357","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:15:00.0"} +{"timestamp":"2024-03-06T15:41:19.358","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:15:00.0"} +{"timestamp":"2024-03-06T15:41:19.358","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:15:00.0"} +{"timestamp":"2024-03-06T15:41:19.358","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:15:00.0"} +{"timestamp":"2024-03-06T15:41:19.359","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:15:00.0"} +{"timestamp":"2024-03-06T15:41:19.359","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:15:00.0"} +{"timestamp":"2024-03-06T15:41:19.36","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:15:00.0"} +{"timestamp":"2024-03-06T15:41:19.36","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:15:00.0"} +{"timestamp":"2024-03-06T15:41:19.62","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T12:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:19.621","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T12:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:19.631","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:30:00.0"} +{"timestamp":"2024-03-06T15:41:19.631","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:30:00.0"} +{"timestamp":"2024-03-06T15:41:19.632","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:30:00.0"} +{"timestamp":"2024-03-06T15:41:19.633","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:30:00.0"} +{"timestamp":"2024-03-06T15:41:19.633","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:30:00.0"} +{"timestamp":"2024-03-06T15:41:19.633","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:30:00.0"} +{"timestamp":"2024-03-06T15:41:19.633","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:30:00.0"} +{"timestamp":"2024-03-06T15:41:19.634","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:30:00.0"} +{"timestamp":"2024-03-06T15:41:19.634","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:30:00.0"} +{"timestamp":"2024-03-06T15:41:19.895","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T12:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:19.895","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T12:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:19.906","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:45:00.0"} +{"timestamp":"2024-03-06T15:41:19.906","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:45:00.0"} +{"timestamp":"2024-03-06T15:41:19.906","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:45:00.0"} +{"timestamp":"2024-03-06T15:41:19.907","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:45:00.0"} +{"timestamp":"2024-03-06T15:41:19.907","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:45:00.0"} +{"timestamp":"2024-03-06T15:41:19.908","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:45:00.0"} +{"timestamp":"2024-03-06T15:41:19.908","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:45:00.0"} +{"timestamp":"2024-03-06T15:41:19.909","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:45:00.0"} +{"timestamp":"2024-03-06T15:41:19.909","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T12:45:00.0"} +{"timestamp":"2024-03-06T15:41:20.17","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T12:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:20.171","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T12:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:20.181","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:00:00.0"} +{"timestamp":"2024-03-06T15:41:20.181","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:00:00.0"} +{"timestamp":"2024-03-06T15:41:20.182","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:00:00.0"} +{"timestamp":"2024-03-06T15:41:20.183","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:00:00.0"} +{"timestamp":"2024-03-06T15:41:20.183","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:00:00.0"} +{"timestamp":"2024-03-06T15:41:20.183","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:00:00.0"} +{"timestamp":"2024-03-06T15:41:20.183","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:00:00.0"} +{"timestamp":"2024-03-06T15:41:20.184","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:00:00.0"} +{"timestamp":"2024-03-06T15:41:20.184","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:00:00.0"} +{"timestamp":"2024-03-06T15:41:20.447","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T13:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:20.447","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T13:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:20.464","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:15:00.0"} +{"timestamp":"2024-03-06T15:41:20.464","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:15:00.0"} +{"timestamp":"2024-03-06T15:41:20.465","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:15:00.0"} +{"timestamp":"2024-03-06T15:41:20.466","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:15:00.0"} +{"timestamp":"2024-03-06T15:41:20.466","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:15:00.0"} +{"timestamp":"2024-03-06T15:41:20.466","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:15:00.0"} +{"timestamp":"2024-03-06T15:41:20.466","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:15:00.0"} +{"timestamp":"2024-03-06T15:41:20.467","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:15:00.0"} +{"timestamp":"2024-03-06T15:41:20.467","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:15:00.0"} +{"timestamp":"2024-03-06T15:41:20.73","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T13:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:20.73","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T13:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:20.741","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:30:00.0"} +{"timestamp":"2024-03-06T15:41:20.741","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:30:00.0"} +{"timestamp":"2024-03-06T15:41:20.741","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:30:00.0"} +{"timestamp":"2024-03-06T15:41:20.742","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:30:00.0"} +{"timestamp":"2024-03-06T15:41:20.742","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:30:00.0"} +{"timestamp":"2024-03-06T15:41:20.743","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:30:00.0"} +{"timestamp":"2024-03-06T15:41:20.743","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:30:00.0"} +{"timestamp":"2024-03-06T15:41:20.744","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:30:00.0"} +{"timestamp":"2024-03-06T15:41:20.744","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:30:00.0"} +{"timestamp":"2024-03-06T15:41:21.005","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T13:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:21.006","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T13:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:21.016","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:45:00.0"} +{"timestamp":"2024-03-06T15:41:21.017","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:45:00.0"} +{"timestamp":"2024-03-06T15:41:21.017","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:45:00.0"} +{"timestamp":"2024-03-06T15:41:21.018","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:45:00.0"} +{"timestamp":"2024-03-06T15:41:21.018","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:45:00.0"} +{"timestamp":"2024-03-06T15:41:21.019","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:45:00.0"} +{"timestamp":"2024-03-06T15:41:21.019","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:45:00.0"} +{"timestamp":"2024-03-06T15:41:21.02","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:45:00.0"} +{"timestamp":"2024-03-06T15:41:21.02","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T13:45:00.0"} +{"timestamp":"2024-03-06T15:41:21.283","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T13:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:21.284","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T13:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:21.294","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:00:00.0"} +{"timestamp":"2024-03-06T15:41:21.294","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:00:00.0"} +{"timestamp":"2024-03-06T15:41:21.295","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:00:00.0"} +{"timestamp":"2024-03-06T15:41:21.296","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:00:00.0"} +{"timestamp":"2024-03-06T15:41:21.296","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:00:00.0"} +{"timestamp":"2024-03-06T15:41:21.296","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:00:00.0"} +{"timestamp":"2024-03-06T15:41:21.296","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:00:00.0"} +{"timestamp":"2024-03-06T15:41:21.297","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:00:00.0"} +{"timestamp":"2024-03-06T15:41:21.297","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:00:00.0"} +{"timestamp":"2024-03-06T15:41:21.564","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T14:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:21.565","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T14:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:21.582","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:15:00.0"} +{"timestamp":"2024-03-06T15:41:21.582","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:15:00.0"} +{"timestamp":"2024-03-06T15:41:21.582","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:15:00.0"} +{"timestamp":"2024-03-06T15:41:21.583","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:15:00.0"} +{"timestamp":"2024-03-06T15:41:21.583","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:15:00.0"} +{"timestamp":"2024-03-06T15:41:21.584","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:15:00.0"} +{"timestamp":"2024-03-06T15:41:21.584","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:15:00.0"} +{"timestamp":"2024-03-06T15:41:21.585","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:15:00.0"} +{"timestamp":"2024-03-06T15:41:21.585","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:15:00.0"} +{"timestamp":"2024-03-06T15:41:21.869","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T14:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:21.87","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T14:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:21.88","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:30:00.0"} +{"timestamp":"2024-03-06T15:41:21.88","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:30:00.0"} +{"timestamp":"2024-03-06T15:41:21.881","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:30:00.0"} +{"timestamp":"2024-03-06T15:41:21.882","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:30:00.0"} +{"timestamp":"2024-03-06T15:41:21.882","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:30:00.0"} +{"timestamp":"2024-03-06T15:41:21.882","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:30:00.0"} +{"timestamp":"2024-03-06T15:41:21.882","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:30:00.0"} +{"timestamp":"2024-03-06T15:41:21.883","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:30:00.0"} +{"timestamp":"2024-03-06T15:41:21.883","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:30:00.0"} +{"timestamp":"2024-03-06T15:41:22.15","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T14:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:22.15","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T14:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:22.161","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:45:00.0"} +{"timestamp":"2024-03-06T15:41:22.161","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:45:00.0"} +{"timestamp":"2024-03-06T15:41:22.161","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:45:00.0"} +{"timestamp":"2024-03-06T15:41:22.162","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:45:00.0"} +{"timestamp":"2024-03-06T15:41:22.162","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:45:00.0"} +{"timestamp":"2024-03-06T15:41:22.163","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:45:00.0"} +{"timestamp":"2024-03-06T15:41:22.163","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:45:00.0"} +{"timestamp":"2024-03-06T15:41:22.164","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:45:00.0"} +{"timestamp":"2024-03-06T15:41:22.164","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T14:45:00.0"} +{"timestamp":"2024-03-06T15:41:22.439","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T14:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:22.44","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T14:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:22.45","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:00:00.0"} +{"timestamp":"2024-03-06T15:41:22.45","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:00:00.0"} +{"timestamp":"2024-03-06T15:41:22.451","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:00:00.0"} +{"timestamp":"2024-03-06T15:41:22.452","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:00:00.0"} +{"timestamp":"2024-03-06T15:41:22.452","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:00:00.0"} +{"timestamp":"2024-03-06T15:41:22.452","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:00:00.0"} +{"timestamp":"2024-03-06T15:41:22.452","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:00:00.0"} +{"timestamp":"2024-03-06T15:41:22.453","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:00:00.0"} +{"timestamp":"2024-03-06T15:41:22.453","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:00:00.0"} +{"timestamp":"2024-03-06T15:41:22.724","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T15:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:22.725","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T15:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:22.742","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:15:00.0"} +{"timestamp":"2024-03-06T15:41:22.742","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:15:00.0"} +{"timestamp":"2024-03-06T15:41:22.743","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:15:00.0"} +{"timestamp":"2024-03-06T15:41:22.744","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:15:00.0"} +{"timestamp":"2024-03-06T15:41:22.744","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:15:00.0"} +{"timestamp":"2024-03-06T15:41:22.744","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:15:00.0"} +{"timestamp":"2024-03-06T15:41:22.744","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:15:00.0"} +{"timestamp":"2024-03-06T15:41:22.745","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:15:00.0"} +{"timestamp":"2024-03-06T15:41:22.745","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:15:00.0"} +{"timestamp":"2024-03-06T15:41:23.015","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T15:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:23.016","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T15:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:23.026","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:30:00.0"} +{"timestamp":"2024-03-06T15:41:23.026","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:30:00.0"} +{"timestamp":"2024-03-06T15:41:23.027","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:30:00.0"} +{"timestamp":"2024-03-06T15:41:23.028","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:30:00.0"} +{"timestamp":"2024-03-06T15:41:23.028","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:30:00.0"} +{"timestamp":"2024-03-06T15:41:23.028","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:30:00.0"} +{"timestamp":"2024-03-06T15:41:23.028","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:30:00.0"} +{"timestamp":"2024-03-06T15:41:23.029","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:30:00.0"} +{"timestamp":"2024-03-06T15:41:23.029","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:30:00.0"} +{"timestamp":"2024-03-06T15:41:23.292","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T15:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:23.293","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T15:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:23.303","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:45:00.0"} +{"timestamp":"2024-03-06T15:41:23.303","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:45:00.0"} +{"timestamp":"2024-03-06T15:41:23.304","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:45:00.0"} +{"timestamp":"2024-03-06T15:41:23.305","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:45:00.0"} +{"timestamp":"2024-03-06T15:41:23.305","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:45:00.0"} +{"timestamp":"2024-03-06T15:41:23.305","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:45:00.0"} +{"timestamp":"2024-03-06T15:41:23.305","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:45:00.0"} +{"timestamp":"2024-03-06T15:41:23.306","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:45:00.0"} +{"timestamp":"2024-03-06T15:41:23.306","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T15:45:00.0"} +{"timestamp":"2024-03-06T15:41:23.563","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T15:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:23.563","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T15:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:23.574","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:00:00.0"} +{"timestamp":"2024-03-06T15:41:23.574","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:00:00.0"} +{"timestamp":"2024-03-06T15:41:23.574","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:00:00.0"} +{"timestamp":"2024-03-06T15:41:23.575","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:00:00.0"} +{"timestamp":"2024-03-06T15:41:23.575","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:00:00.0"} +{"timestamp":"2024-03-06T15:41:23.576","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:00:00.0"} +{"timestamp":"2024-03-06T15:41:23.576","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:00:00.0"} +{"timestamp":"2024-03-06T15:41:23.577","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:00:00.0"} +{"timestamp":"2024-03-06T15:41:23.577","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:00:00.0"} +{"timestamp":"2024-03-06T15:41:23.819","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T16:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:23.82","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T16:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:23.836","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:15:00.0"} +{"timestamp":"2024-03-06T15:41:23.836","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:15:00.0"} +{"timestamp":"2024-03-06T15:41:23.837","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:15:00.0"} +{"timestamp":"2024-03-06T15:41:23.838","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:15:00.0"} +{"timestamp":"2024-03-06T15:41:23.838","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:15:00.0"} +{"timestamp":"2024-03-06T15:41:23.838","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:15:00.0"} +{"timestamp":"2024-03-06T15:41:23.838","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:15:00.0"} +{"timestamp":"2024-03-06T15:41:23.839","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:15:00.0"} +{"timestamp":"2024-03-06T15:41:23.839","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:15:00.0"} +{"timestamp":"2024-03-06T15:41:24.071","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T16:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:24.071","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T16:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:24.082","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:30:00.0"} +{"timestamp":"2024-03-06T15:41:24.082","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:30:00.0"} +{"timestamp":"2024-03-06T15:41:24.082","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:30:00.0"} +{"timestamp":"2024-03-06T15:41:24.083","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:30:00.0"} +{"timestamp":"2024-03-06T15:41:24.083","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:30:00.0"} +{"timestamp":"2024-03-06T15:41:24.084","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:30:00.0"} +{"timestamp":"2024-03-06T15:41:24.084","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:30:00.0"} +{"timestamp":"2024-03-06T15:41:24.085","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:30:00.0"} +{"timestamp":"2024-03-06T15:41:24.085","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:30:00.0"} +{"timestamp":"2024-03-06T15:41:24.311","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T16:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:24.311","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T16:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:24.322","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:45:00.0"} +{"timestamp":"2024-03-06T15:41:24.322","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:45:00.0"} +{"timestamp":"2024-03-06T15:41:24.323","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:45:00.0"} +{"timestamp":"2024-03-06T15:41:24.324","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:45:00.0"} +{"timestamp":"2024-03-06T15:41:24.324","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:45:00.0"} +{"timestamp":"2024-03-06T15:41:24.324","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:45:00.0"} +{"timestamp":"2024-03-06T15:41:24.324","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:45:00.0"} +{"timestamp":"2024-03-06T15:41:24.325","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:45:00.0"} +{"timestamp":"2024-03-06T15:41:24.325","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T16:45:00.0"} +{"timestamp":"2024-03-06T15:41:24.551","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T16:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:24.552","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T16:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:24.562","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:00:00.0"} +{"timestamp":"2024-03-06T15:41:24.562","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:00:00.0"} +{"timestamp":"2024-03-06T15:41:24.563","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:00:00.0"} +{"timestamp":"2024-03-06T15:41:24.564","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:00:00.0"} +{"timestamp":"2024-03-06T15:41:24.564","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:00:00.0"} +{"timestamp":"2024-03-06T15:41:24.564","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:00:00.0"} +{"timestamp":"2024-03-06T15:41:24.564","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:00:00.0"} +{"timestamp":"2024-03-06T15:41:24.565","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:00:00.0"} +{"timestamp":"2024-03-06T15:41:24.565","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:00:00.0"} +{"timestamp":"2024-03-06T15:41:24.782","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T17:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:24.782","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T17:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:24.799","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:15:00.0"} +{"timestamp":"2024-03-06T15:41:24.799","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:15:00.0"} +{"timestamp":"2024-03-06T15:41:24.799","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:15:00.0"} +{"timestamp":"2024-03-06T15:41:24.8","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:15:00.0"} +{"timestamp":"2024-03-06T15:41:24.8","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:15:00.0"} +{"timestamp":"2024-03-06T15:41:24.801","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:15:00.0"} +{"timestamp":"2024-03-06T15:41:24.801","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:15:00.0"} +{"timestamp":"2024-03-06T15:41:24.802","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:15:00.0"} +{"timestamp":"2024-03-06T15:41:24.802","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:15:00.0"} +{"timestamp":"2024-03-06T15:41:25.02","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T17:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:25.021","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T17:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:25.031","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.031","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.032","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.033","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.033","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.033","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.033","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.034","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.034","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.253","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T17:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:25.253","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T17:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:25.264","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:45:00.0"} +{"timestamp":"2024-03-06T15:41:25.264","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:45:00.0"} +{"timestamp":"2024-03-06T15:41:25.264","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:45:00.0"} +{"timestamp":"2024-03-06T15:41:25.265","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:45:00.0"} +{"timestamp":"2024-03-06T15:41:25.265","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:45:00.0"} +{"timestamp":"2024-03-06T15:41:25.266","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:45:00.0"} +{"timestamp":"2024-03-06T15:41:25.266","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:45:00.0"} +{"timestamp":"2024-03-06T15:41:25.267","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:45:00.0"} +{"timestamp":"2024-03-06T15:41:25.267","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T17:45:00.0"} +{"timestamp":"2024-03-06T15:41:25.495","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T17:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:25.496","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T17:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:25.522","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:00:00.0"} +{"timestamp":"2024-03-06T15:41:25.522","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:00:00.0"} +{"timestamp":"2024-03-06T15:41:25.523","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:00:00.0"} +{"timestamp":"2024-03-06T15:41:25.524","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:00:00.0"} +{"timestamp":"2024-03-06T15:41:25.524","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:00:00.0"} +{"timestamp":"2024-03-06T15:41:25.525","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:00:00.0"} +{"timestamp":"2024-03-06T15:41:25.525","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:00:00.0"} +{"timestamp":"2024-03-06T15:41:25.526","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:00:00.0"} +{"timestamp":"2024-03-06T15:41:25.526","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:00:00.0"} +{"timestamp":"2024-03-06T15:41:25.74","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T18:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:25.741","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T18:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:25.758","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:15:00.0"} +{"timestamp":"2024-03-06T15:41:25.758","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:15:00.0"} +{"timestamp":"2024-03-06T15:41:25.758","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:15:00.0"} +{"timestamp":"2024-03-06T15:41:25.759","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:15:00.0"} +{"timestamp":"2024-03-06T15:41:25.759","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:15:00.0"} +{"timestamp":"2024-03-06T15:41:25.76","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:15:00.0"} +{"timestamp":"2024-03-06T15:41:25.76","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:15:00.0"} +{"timestamp":"2024-03-06T15:41:25.761","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:15:00.0"} +{"timestamp":"2024-03-06T15:41:25.761","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:15:00.0"} +{"timestamp":"2024-03-06T15:41:25.973","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T18:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:25.974","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T18:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:25.984","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.984","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.985","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.986","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.986","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.986","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.986","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.987","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.987","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:30:00.0"} +{"timestamp":"2024-03-06T15:41:26.198","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T18:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:26.198","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T18:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:26.209","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:26.209","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:26.21","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:26.211","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:26.211","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:26.211","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:26.211","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:26.212","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:26.212","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:26.424","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T18:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:26.424","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T18:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:26.435","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:26.435","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:26.435","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:26.436","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:26.436","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:26.437","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:26.437","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:26.438","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:26.438","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:26.657","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T19:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:26.658","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T19:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:26.675","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:26.675","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:26.676","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:26.677","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:26.677","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:26.677","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:26.677","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:26.678","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:26.678","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:26.89","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T19:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:26.89","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T19:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:26.901","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:26.901","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:26.902","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:26.903","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:26.903","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:26.903","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:26.903","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:26.904","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:26.904","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:27.116","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T19:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:27.116","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T19:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:27.127","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:27.127","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:27.127","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:27.128","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:27.128","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:27.129","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:27.129","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:27.13","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:27.13","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:27.344","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T19:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:27.345","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T19:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:27.355","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:27.355","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:27.356","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:27.357","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:27.357","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:27.357","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:27.357","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:27.358","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:27.358","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:27.578","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T20:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:27.578","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T20:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:27.595","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:27.595","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:27.596","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:27.596","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:27.597","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:27.597","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:27.597","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:27.598","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:27.598","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:27.819","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T20:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:27.819","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T20:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:27.83","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:27.83","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:27.83","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:27.831","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:27.831","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:27.832","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:27.832","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:27.833","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:27.833","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:28.053","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T20:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:28.054","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T20:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:28.065","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:28.065","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:28.065","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:28.066","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:28.066","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:28.067","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:28.067","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:28.068","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:28.068","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:28.292","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T20:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:28.293","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T20:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:28.303","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:28.303","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:28.304","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:28.305","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:28.305","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:28.305","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:28.306","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:28.306","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:28.306","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:28.53","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T21:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:28.531","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T21:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:28.555","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:28.555","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:28.556","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:28.557","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:28.558","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:28.558","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:28.558","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:28.56","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:28.56","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:28.787","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T21:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:28.787","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T21:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:28.798","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:28.798","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:28.799","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:28.8","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:28.8","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:28.8","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:28.8","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:28.801","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:28.801","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:29.041","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T21:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:29.041","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T21:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:29.052","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.052","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.053","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.054","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.054","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.055","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.055","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.056","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.056","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.27","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T21:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:29.271","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T21:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:29.281","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:29.281","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:29.282","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:29.283","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:29.283","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:29.283","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:29.283","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:29.284","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:29.284","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:29.5","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T22:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:29.5","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T22:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:29.517","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:29.517","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:29.517","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:29.518","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:29.518","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:29.519","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:29.519","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:29.52","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:29.52","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:29.732","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T22:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:29.733","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T22:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:29.743","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:29.743","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:29.744","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:29.745","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:29.745","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:29.746","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:29.746","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:29.747","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:29.747","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:29.959","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T22:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:29.96","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T22:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:29.97","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.97","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.971","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.972","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.972","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.972","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.972","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.973","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.973","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:30.187","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T22:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:30.188","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T22:45:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:30.198","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:30.198","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:30.199","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:30.2","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:30.2","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:30.2","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:30.2","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:30.201","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:30.201","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:30.415","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T23:00:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:30.416","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T23:00:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:30.433","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:30.433","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:30.433","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:30.434","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:30.434","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:30.435","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:30.435","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:30.436","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:30.436","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:30.661","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T23:15:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:30.661","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T23:15:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:30.672","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:30.672","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:30.672","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:30.673","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:30.673","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:30.674","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:30.674","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:30.675","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:30.675","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:30.896","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T23:30:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:30.897","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T23:30:00.0","state_type":"SystemState"} +{"timestamp":"2024-03-06T15:41:30.907","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableDispatch","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:30.907","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:30.908","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveDown}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:30.909","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"RenewableFix","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:30.909","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:30.909","parameter_type":"ActivePowerTimeSeriesParameter","model_name":"ED","component_type":"PowerLoad","tag":"max_active_power","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:30.909","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:30.91","parameter_type":"OnStatusParameter","model_name":"ED","component_type":"ThermalStandard","tag":"OnVariable__ThermalStandard","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:30.91","parameter_type":"RequirementTimeSeriesParameter","model_name":"ED","component_type":"VariableReserve{ReserveUp}","tag":"requirement","name":"ParameterUpdateEvent","simulation_time":"2020-01-02T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:31.133","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T23:45:00.0","state_type":"DecisionState"} +{"timestamp":"2024-03-06T15:41:31.134","model_name":"ED","name":"StateUpdateEvent","simulation_time":"2020-01-02T23:45:00.0","state_type":"SystemState"} diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/recorder/simulation_status.log b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/recorder/simulation_status.log new file mode 100644 index 0000000000..baf29cd15f --- /dev/null +++ b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/recorder/simulation_status.log @@ -0,0 +1,392 @@ +{"timestamp":"2024-03-06T15:40:28.738","status":"start","step":1,"name":"SimulationStepEvent","simulation_time":"2020-01-01T00:00:00.0"} +{"timestamp":"2024-03-06T15:40:29.082","model_name":"UC","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T00:00:00.0"} +{"timestamp":"2024-03-06T15:40:34.949","model_name":"UC","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T00:00:00.0"} +{"timestamp":"2024-03-06T15:40:34.949","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T00:00:00.0"} +{"timestamp":"2024-03-06T15:40:40.489","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T00:00:00.0"} +{"timestamp":"2024-03-06T15:40:40.489","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T00:15:00.0"} +{"timestamp":"2024-03-06T15:40:40.739","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T00:15:00.0"} +{"timestamp":"2024-03-06T15:40:40.739","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T00:30:00.0"} +{"timestamp":"2024-03-06T15:40:40.981","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T00:30:00.0"} +{"timestamp":"2024-03-06T15:40:40.981","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T00:45:00.0"} +{"timestamp":"2024-03-06T15:40:41.222","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T00:45:00.0"} +{"timestamp":"2024-03-06T15:40:41.222","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T01:00:00.0"} +{"timestamp":"2024-03-06T15:40:41.472","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T01:00:00.0"} +{"timestamp":"2024-03-06T15:40:41.472","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T01:15:00.0"} +{"timestamp":"2024-03-06T15:40:41.798","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T01:15:00.0"} +{"timestamp":"2024-03-06T15:40:41.798","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T01:30:00.0"} +{"timestamp":"2024-03-06T15:40:42.041","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T01:30:00.0"} +{"timestamp":"2024-03-06T15:40:42.041","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T01:45:00.0"} +{"timestamp":"2024-03-06T15:40:42.297","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T01:45:00.0"} +{"timestamp":"2024-03-06T15:40:42.297","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T02:00:00.0"} +{"timestamp":"2024-03-06T15:40:42.546","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T02:00:00.0"} +{"timestamp":"2024-03-06T15:40:42.546","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T02:15:00.0"} +{"timestamp":"2024-03-06T15:40:42.792","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T02:15:00.0"} +{"timestamp":"2024-03-06T15:40:42.792","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T02:30:00.0"} +{"timestamp":"2024-03-06T15:40:43.036","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T02:30:00.0"} +{"timestamp":"2024-03-06T15:40:43.036","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T02:45:00.0"} +{"timestamp":"2024-03-06T15:40:43.283","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T02:45:00.0"} +{"timestamp":"2024-03-06T15:40:43.283","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T03:00:00.0"} +{"timestamp":"2024-03-06T15:40:43.538","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T03:00:00.0"} +{"timestamp":"2024-03-06T15:40:43.538","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T03:15:00.0"} +{"timestamp":"2024-03-06T15:40:43.786","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T03:15:00.0"} +{"timestamp":"2024-03-06T15:40:43.786","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T03:30:00.0"} +{"timestamp":"2024-03-06T15:40:44.035","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T03:30:00.0"} +{"timestamp":"2024-03-06T15:40:44.035","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T03:45:00.0"} +{"timestamp":"2024-03-06T15:40:44.283","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T03:45:00.0"} +{"timestamp":"2024-03-06T15:40:44.283","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T04:00:00.0"} +{"timestamp":"2024-03-06T15:40:44.548","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T04:00:00.0"} +{"timestamp":"2024-03-06T15:40:44.548","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T04:15:00.0"} +{"timestamp":"2024-03-06T15:40:44.802","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T04:15:00.0"} +{"timestamp":"2024-03-06T15:40:44.802","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T04:30:00.0"} +{"timestamp":"2024-03-06T15:40:45.056","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T04:30:00.0"} +{"timestamp":"2024-03-06T15:40:45.056","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T04:45:00.0"} +{"timestamp":"2024-03-06T15:40:45.307","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T04:45:00.0"} +{"timestamp":"2024-03-06T15:40:45.307","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T05:00:00.0"} +{"timestamp":"2024-03-06T15:40:45.573","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T05:00:00.0"} +{"timestamp":"2024-03-06T15:40:45.573","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T05:15:00.0"} +{"timestamp":"2024-03-06T15:40:45.825","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T05:15:00.0"} +{"timestamp":"2024-03-06T15:40:45.825","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T05:30:00.0"} +{"timestamp":"2024-03-06T15:40:46.072","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T05:30:00.0"} +{"timestamp":"2024-03-06T15:40:46.072","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T05:45:00.0"} +{"timestamp":"2024-03-06T15:40:46.71","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T05:45:00.0"} +{"timestamp":"2024-03-06T15:40:46.71","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T06:00:00.0"} +{"timestamp":"2024-03-06T15:40:46.955","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T06:00:00.0"} +{"timestamp":"2024-03-06T15:40:46.955","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T06:15:00.0"} +{"timestamp":"2024-03-06T15:40:47.206","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T06:15:00.0"} +{"timestamp":"2024-03-06T15:40:47.206","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T06:30:00.0"} +{"timestamp":"2024-03-06T15:40:47.466","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T06:30:00.0"} +{"timestamp":"2024-03-06T15:40:47.466","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T06:45:00.0"} +{"timestamp":"2024-03-06T15:40:47.748","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T06:45:00.0"} +{"timestamp":"2024-03-06T15:40:47.748","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T07:00:00.0"} +{"timestamp":"2024-03-06T15:40:48.051","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T07:00:00.0"} +{"timestamp":"2024-03-06T15:40:48.051","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T07:15:00.0"} +{"timestamp":"2024-03-06T15:40:48.359","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T07:15:00.0"} +{"timestamp":"2024-03-06T15:40:48.36","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T07:30:00.0"} +{"timestamp":"2024-03-06T15:40:48.688","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T07:30:00.0"} +{"timestamp":"2024-03-06T15:40:48.688","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T07:45:00.0"} +{"timestamp":"2024-03-06T15:40:49.01","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T07:45:00.0"} +{"timestamp":"2024-03-06T15:40:49.01","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T08:00:00.0"} +{"timestamp":"2024-03-06T15:40:49.339","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T08:00:00.0"} +{"timestamp":"2024-03-06T15:40:49.339","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T08:15:00.0"} +{"timestamp":"2024-03-06T15:40:49.653","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T08:15:00.0"} +{"timestamp":"2024-03-06T15:40:49.653","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T08:30:00.0"} +{"timestamp":"2024-03-06T15:40:49.964","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T08:30:00.0"} +{"timestamp":"2024-03-06T15:40:49.964","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T08:45:00.0"} +{"timestamp":"2024-03-06T15:40:50.272","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T08:45:00.0"} +{"timestamp":"2024-03-06T15:40:50.272","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T09:00:00.0"} +{"timestamp":"2024-03-06T15:40:50.59","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T09:00:00.0"} +{"timestamp":"2024-03-06T15:40:50.59","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T09:15:00.0"} +{"timestamp":"2024-03-06T15:40:50.892","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T09:15:00.0"} +{"timestamp":"2024-03-06T15:40:50.892","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T09:30:00.0"} +{"timestamp":"2024-03-06T15:40:51.187","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T09:30:00.0"} +{"timestamp":"2024-03-06T15:40:51.187","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T09:45:00.0"} +{"timestamp":"2024-03-06T15:40:51.478","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T09:45:00.0"} +{"timestamp":"2024-03-06T15:40:51.478","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T10:00:00.0"} +{"timestamp":"2024-03-06T15:40:51.771","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T10:00:00.0"} +{"timestamp":"2024-03-06T15:40:51.771","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T10:15:00.0"} +{"timestamp":"2024-03-06T15:40:52.396","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T10:15:00.0"} +{"timestamp":"2024-03-06T15:40:52.396","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T10:30:00.0"} +{"timestamp":"2024-03-06T15:40:52.679","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T10:30:00.0"} +{"timestamp":"2024-03-06T15:40:52.679","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T10:45:00.0"} +{"timestamp":"2024-03-06T15:40:52.944","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T10:45:00.0"} +{"timestamp":"2024-03-06T15:40:52.944","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T11:00:00.0"} +{"timestamp":"2024-03-06T15:40:53.208","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T11:00:00.0"} +{"timestamp":"2024-03-06T15:40:53.208","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T11:15:00.0"} +{"timestamp":"2024-03-06T15:40:53.46","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T11:15:00.0"} +{"timestamp":"2024-03-06T15:40:53.46","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T11:30:00.0"} +{"timestamp":"2024-03-06T15:40:53.714","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T11:30:00.0"} +{"timestamp":"2024-03-06T15:40:53.714","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T11:45:00.0"} +{"timestamp":"2024-03-06T15:40:53.967","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T11:45:00.0"} +{"timestamp":"2024-03-06T15:40:53.967","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T12:00:00.0"} +{"timestamp":"2024-03-06T15:40:54.226","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T12:00:00.0"} +{"timestamp":"2024-03-06T15:40:54.226","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T12:15:00.0"} +{"timestamp":"2024-03-06T15:40:54.479","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T12:15:00.0"} +{"timestamp":"2024-03-06T15:40:54.479","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T12:30:00.0"} +{"timestamp":"2024-03-06T15:40:54.742","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T12:30:00.0"} +{"timestamp":"2024-03-06T15:40:54.742","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T12:45:00.0"} +{"timestamp":"2024-03-06T15:40:54.993","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T12:45:00.0"} +{"timestamp":"2024-03-06T15:40:54.993","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T13:00:00.0"} +{"timestamp":"2024-03-06T15:40:55.249","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T13:00:00.0"} +{"timestamp":"2024-03-06T15:40:55.249","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T13:15:00.0"} +{"timestamp":"2024-03-06T15:40:55.499","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T13:15:00.0"} +{"timestamp":"2024-03-06T15:40:55.499","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T13:30:00.0"} +{"timestamp":"2024-03-06T15:40:55.748","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T13:30:00.0"} +{"timestamp":"2024-03-06T15:40:55.748","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T13:45:00.0"} +{"timestamp":"2024-03-06T15:40:56.014","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T13:45:00.0"} +{"timestamp":"2024-03-06T15:40:56.014","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T14:00:00.0"} +{"timestamp":"2024-03-06T15:40:56.27","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T14:00:00.0"} +{"timestamp":"2024-03-06T15:40:56.27","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T14:15:00.0"} +{"timestamp":"2024-03-06T15:40:56.521","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T14:15:00.0"} +{"timestamp":"2024-03-06T15:40:56.521","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T14:30:00.0"} +{"timestamp":"2024-03-06T15:40:56.772","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T14:30:00.0"} +{"timestamp":"2024-03-06T15:40:56.772","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T14:45:00.0"} +{"timestamp":"2024-03-06T15:40:57.021","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T14:45:00.0"} +{"timestamp":"2024-03-06T15:40:57.021","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T15:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.269","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T15:00:00.0"} +{"timestamp":"2024-03-06T15:40:57.269","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T15:15:00.0"} +{"timestamp":"2024-03-06T15:40:57.503","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T15:15:00.0"} +{"timestamp":"2024-03-06T15:40:57.503","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T15:30:00.0"} +{"timestamp":"2024-03-06T15:40:57.743","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T15:30:00.0"} +{"timestamp":"2024-03-06T15:40:57.743","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T15:45:00.0"} +{"timestamp":"2024-03-06T15:40:57.955","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T15:45:00.0"} +{"timestamp":"2024-03-06T15:40:57.955","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T16:00:00.0"} +{"timestamp":"2024-03-06T15:40:58.162","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T16:00:00.0"} +{"timestamp":"2024-03-06T15:40:58.162","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T16:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.358","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T16:15:00.0"} +{"timestamp":"2024-03-06T15:40:58.358","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T16:30:00.0"} +{"timestamp":"2024-03-06T15:40:58.544","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T16:30:00.0"} +{"timestamp":"2024-03-06T15:40:58.544","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T16:45:00.0"} +{"timestamp":"2024-03-06T15:40:58.742","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T16:45:00.0"} +{"timestamp":"2024-03-06T15:40:58.743","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T17:00:00.0"} +{"timestamp":"2024-03-06T15:40:58.936","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T17:00:00.0"} +{"timestamp":"2024-03-06T15:40:58.936","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T17:15:00.0"} +{"timestamp":"2024-03-06T15:40:59.137","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T17:15:00.0"} +{"timestamp":"2024-03-06T15:40:59.137","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T17:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.323","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T17:30:00.0"} +{"timestamp":"2024-03-06T15:40:59.323","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T17:45:00.0"} +{"timestamp":"2024-03-06T15:40:59.506","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T17:45:00.0"} +{"timestamp":"2024-03-06T15:40:59.506","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T18:00:00.0"} +{"timestamp":"2024-03-06T15:40:59.696","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T18:00:00.0"} +{"timestamp":"2024-03-06T15:40:59.696","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T18:15:00.0"} +{"timestamp":"2024-03-06T15:40:59.882","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T18:15:00.0"} +{"timestamp":"2024-03-06T15:40:59.882","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T18:30:00.0"} +{"timestamp":"2024-03-06T15:41:00.069","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T18:30:00.0"} +{"timestamp":"2024-03-06T15:41:00.069","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.258","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:00.258","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:00.454","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:00.454","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:00.643","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:00.643","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:00.845","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:00.845","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:01.037","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:01.037","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.241","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:01.241","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:01.443","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:01.443","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:01.647","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:01.647","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:01.877","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:01.877","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:02.085","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:02.085","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.287","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:02.287","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:02.485","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:02.485","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:02.684","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:02.684","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:02.902","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:02.902","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:03.109","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:03.109","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:03.319","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:03.319","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:03.536","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:03.536","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:03.759","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:03.759","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:04.0","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:04.0","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:04.219","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:04.22","model_name":"ED","status":"start","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:04.44","model_name":"ED","status":"done","step":1,"name":"ProblemExecutionEvent","simulation_time":"2020-01-01T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:04.44","status":"done","step":1,"name":"SimulationStepEvent","simulation_time":"2020-01-01T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:04.44","status":"start","step":2,"name":"SimulationStepEvent","simulation_time":"2020-01-01T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:04.44","model_name":"UC","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:07.359","model_name":"UC","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:07.359","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:07.606","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T00:00:00.0"} +{"timestamp":"2024-03-06T15:41:07.606","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T00:15:00.0"} +{"timestamp":"2024-03-06T15:41:07.815","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T00:15:00.0"} +{"timestamp":"2024-03-06T15:41:07.815","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T00:30:00.0"} +{"timestamp":"2024-03-06T15:41:08.031","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T00:30:00.0"} +{"timestamp":"2024-03-06T15:41:08.031","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T00:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.233","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T00:45:00.0"} +{"timestamp":"2024-03-06T15:41:08.233","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T01:00:00.0"} +{"timestamp":"2024-03-06T15:41:08.435","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T01:00:00.0"} +{"timestamp":"2024-03-06T15:41:08.435","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T01:15:00.0"} +{"timestamp":"2024-03-06T15:41:08.631","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T01:15:00.0"} +{"timestamp":"2024-03-06T15:41:08.631","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T01:30:00.0"} +{"timestamp":"2024-03-06T15:41:08.83","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T01:30:00.0"} +{"timestamp":"2024-03-06T15:41:08.83","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T01:45:00.0"} +{"timestamp":"2024-03-06T15:41:09.028","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T01:45:00.0"} +{"timestamp":"2024-03-06T15:41:09.028","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T02:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.407","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T02:00:00.0"} +{"timestamp":"2024-03-06T15:41:09.407","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T02:15:00.0"} +{"timestamp":"2024-03-06T15:41:09.603","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T02:15:00.0"} +{"timestamp":"2024-03-06T15:41:09.603","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T02:30:00.0"} +{"timestamp":"2024-03-06T15:41:09.797","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T02:30:00.0"} +{"timestamp":"2024-03-06T15:41:09.797","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T02:45:00.0"} +{"timestamp":"2024-03-06T15:41:09.991","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T02:45:00.0"} +{"timestamp":"2024-03-06T15:41:09.991","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T03:00:00.0"} +{"timestamp":"2024-03-06T15:41:10.205","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T03:00:00.0"} +{"timestamp":"2024-03-06T15:41:10.205","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T03:15:00.0"} +{"timestamp":"2024-03-06T15:41:10.433","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T03:15:00.0"} +{"timestamp":"2024-03-06T15:41:10.433","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T03:30:00.0"} +{"timestamp":"2024-03-06T15:41:10.64","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T03:30:00.0"} +{"timestamp":"2024-03-06T15:41:10.64","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T03:45:00.0"} +{"timestamp":"2024-03-06T15:41:10.851","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T03:45:00.0"} +{"timestamp":"2024-03-06T15:41:10.851","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T04:00:00.0"} +{"timestamp":"2024-03-06T15:41:11.074","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T04:00:00.0"} +{"timestamp":"2024-03-06T15:41:11.074","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T04:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.29","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T04:15:00.0"} +{"timestamp":"2024-03-06T15:41:11.29","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T04:30:00.0"} +{"timestamp":"2024-03-06T15:41:11.507","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T04:30:00.0"} +{"timestamp":"2024-03-06T15:41:11.507","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T04:45:00.0"} +{"timestamp":"2024-03-06T15:41:11.726","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T04:45:00.0"} +{"timestamp":"2024-03-06T15:41:11.726","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T05:00:00.0"} +{"timestamp":"2024-03-06T15:41:11.951","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T05:00:00.0"} +{"timestamp":"2024-03-06T15:41:11.951","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T05:15:00.0"} +{"timestamp":"2024-03-06T15:41:12.174","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T05:15:00.0"} +{"timestamp":"2024-03-06T15:41:12.174","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T05:30:00.0"} +{"timestamp":"2024-03-06T15:41:12.394","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T05:30:00.0"} +{"timestamp":"2024-03-06T15:41:12.394","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T05:45:00.0"} +{"timestamp":"2024-03-06T15:41:12.614","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T05:45:00.0"} +{"timestamp":"2024-03-06T15:41:12.614","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T06:00:00.0"} +{"timestamp":"2024-03-06T15:41:12.839","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T06:00:00.0"} +{"timestamp":"2024-03-06T15:41:12.839","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T06:15:00.0"} +{"timestamp":"2024-03-06T15:41:13.067","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T06:15:00.0"} +{"timestamp":"2024-03-06T15:41:13.067","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T06:30:00.0"} +{"timestamp":"2024-03-06T15:41:13.302","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T06:30:00.0"} +{"timestamp":"2024-03-06T15:41:13.302","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T06:45:00.0"} +{"timestamp":"2024-03-06T15:41:13.547","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T06:45:00.0"} +{"timestamp":"2024-03-06T15:41:13.547","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T07:00:00.0"} +{"timestamp":"2024-03-06T15:41:13.826","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T07:00:00.0"} +{"timestamp":"2024-03-06T15:41:13.826","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T07:15:00.0"} +{"timestamp":"2024-03-06T15:41:14.083","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T07:15:00.0"} +{"timestamp":"2024-03-06T15:41:14.083","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T07:30:00.0"} +{"timestamp":"2024-03-06T15:41:14.343","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T07:30:00.0"} +{"timestamp":"2024-03-06T15:41:14.343","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T07:45:00.0"} +{"timestamp":"2024-03-06T15:41:14.608","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T07:45:00.0"} +{"timestamp":"2024-03-06T15:41:14.608","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T08:00:00.0"} +{"timestamp":"2024-03-06T15:41:14.885","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T08:00:00.0"} +{"timestamp":"2024-03-06T15:41:14.885","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T08:15:00.0"} +{"timestamp":"2024-03-06T15:41:15.157","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T08:15:00.0"} +{"timestamp":"2024-03-06T15:41:15.157","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T08:30:00.0"} +{"timestamp":"2024-03-06T15:41:15.444","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T08:30:00.0"} +{"timestamp":"2024-03-06T15:41:15.445","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T08:45:00.0"} +{"timestamp":"2024-03-06T15:41:15.721","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T08:45:00.0"} +{"timestamp":"2024-03-06T15:41:15.721","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T09:00:00.0"} +{"timestamp":"2024-03-06T15:41:16.002","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T09:00:00.0"} +{"timestamp":"2024-03-06T15:41:16.002","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T09:15:00.0"} +{"timestamp":"2024-03-06T15:41:16.285","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T09:15:00.0"} +{"timestamp":"2024-03-06T15:41:16.285","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T09:30:00.0"} +{"timestamp":"2024-03-06T15:41:16.561","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T09:30:00.0"} +{"timestamp":"2024-03-06T15:41:16.561","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T09:45:00.0"} +{"timestamp":"2024-03-06T15:41:16.838","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T09:45:00.0"} +{"timestamp":"2024-03-06T15:41:16.838","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T10:00:00.0"} +{"timestamp":"2024-03-06T15:41:17.127","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T10:00:00.0"} +{"timestamp":"2024-03-06T15:41:17.127","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T10:15:00.0"} +{"timestamp":"2024-03-06T15:41:17.406","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T10:15:00.0"} +{"timestamp":"2024-03-06T15:41:17.406","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T10:30:00.0"} +{"timestamp":"2024-03-06T15:41:17.699","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T10:30:00.0"} +{"timestamp":"2024-03-06T15:41:17.699","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T10:45:00.0"} +{"timestamp":"2024-03-06T15:41:17.973","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T10:45:00.0"} +{"timestamp":"2024-03-06T15:41:17.973","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T11:00:00.0"} +{"timestamp":"2024-03-06T15:41:18.252","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T11:00:00.0"} +{"timestamp":"2024-03-06T15:41:18.252","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T11:15:00.0"} +{"timestamp":"2024-03-06T15:41:18.526","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T11:15:00.0"} +{"timestamp":"2024-03-06T15:41:18.526","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T11:30:00.0"} +{"timestamp":"2024-03-06T15:41:18.8","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T11:30:00.0"} +{"timestamp":"2024-03-06T15:41:18.8","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T11:45:00.0"} +{"timestamp":"2024-03-06T15:41:19.076","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T11:45:00.0"} +{"timestamp":"2024-03-06T15:41:19.076","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T12:00:00.0"} +{"timestamp":"2024-03-06T15:41:19.356","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T12:00:00.0"} +{"timestamp":"2024-03-06T15:41:19.356","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T12:15:00.0"} +{"timestamp":"2024-03-06T15:41:19.63","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T12:15:00.0"} +{"timestamp":"2024-03-06T15:41:19.63","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T12:30:00.0"} +{"timestamp":"2024-03-06T15:41:19.905","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T12:30:00.0"} +{"timestamp":"2024-03-06T15:41:19.905","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T12:45:00.0"} +{"timestamp":"2024-03-06T15:41:20.18","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T12:45:00.0"} +{"timestamp":"2024-03-06T15:41:20.18","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T13:00:00.0"} +{"timestamp":"2024-03-06T15:41:20.463","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T13:00:00.0"} +{"timestamp":"2024-03-06T15:41:20.463","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T13:15:00.0"} +{"timestamp":"2024-03-06T15:41:20.74","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T13:15:00.0"} +{"timestamp":"2024-03-06T15:41:20.74","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T13:30:00.0"} +{"timestamp":"2024-03-06T15:41:21.016","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T13:30:00.0"} +{"timestamp":"2024-03-06T15:41:21.016","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T13:45:00.0"} +{"timestamp":"2024-03-06T15:41:21.293","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T13:45:00.0"} +{"timestamp":"2024-03-06T15:41:21.293","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T14:00:00.0"} +{"timestamp":"2024-03-06T15:41:21.581","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T14:00:00.0"} +{"timestamp":"2024-03-06T15:41:21.581","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T14:15:00.0"} +{"timestamp":"2024-03-06T15:41:21.879","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T14:15:00.0"} +{"timestamp":"2024-03-06T15:41:21.88","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T14:30:00.0"} +{"timestamp":"2024-03-06T15:41:22.16","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T14:30:00.0"} +{"timestamp":"2024-03-06T15:41:22.16","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T14:45:00.0"} +{"timestamp":"2024-03-06T15:41:22.45","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T14:45:00.0"} +{"timestamp":"2024-03-06T15:41:22.45","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T15:00:00.0"} +{"timestamp":"2024-03-06T15:41:22.741","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T15:00:00.0"} +{"timestamp":"2024-03-06T15:41:22.741","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T15:15:00.0"} +{"timestamp":"2024-03-06T15:41:23.025","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T15:15:00.0"} +{"timestamp":"2024-03-06T15:41:23.025","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T15:30:00.0"} +{"timestamp":"2024-03-06T15:41:23.302","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T15:30:00.0"} +{"timestamp":"2024-03-06T15:41:23.302","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T15:45:00.0"} +{"timestamp":"2024-03-06T15:41:23.573","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T15:45:00.0"} +{"timestamp":"2024-03-06T15:41:23.573","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T16:00:00.0"} +{"timestamp":"2024-03-06T15:41:23.835","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T16:00:00.0"} +{"timestamp":"2024-03-06T15:41:23.835","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T16:15:00.0"} +{"timestamp":"2024-03-06T15:41:24.081","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T16:15:00.0"} +{"timestamp":"2024-03-06T15:41:24.081","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T16:30:00.0"} +{"timestamp":"2024-03-06T15:41:24.321","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T16:30:00.0"} +{"timestamp":"2024-03-06T15:41:24.321","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T16:45:00.0"} +{"timestamp":"2024-03-06T15:41:24.561","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T16:45:00.0"} +{"timestamp":"2024-03-06T15:41:24.561","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T17:00:00.0"} +{"timestamp":"2024-03-06T15:41:24.798","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T17:00:00.0"} +{"timestamp":"2024-03-06T15:41:24.798","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T17:15:00.0"} +{"timestamp":"2024-03-06T15:41:25.03","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T17:15:00.0"} +{"timestamp":"2024-03-06T15:41:25.03","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T17:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.263","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T17:30:00.0"} +{"timestamp":"2024-03-06T15:41:25.263","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T17:45:00.0"} +{"timestamp":"2024-03-06T15:41:25.521","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T17:45:00.0"} +{"timestamp":"2024-03-06T15:41:25.521","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T18:00:00.0"} +{"timestamp":"2024-03-06T15:41:25.757","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T18:00:00.0"} +{"timestamp":"2024-03-06T15:41:25.757","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T18:15:00.0"} +{"timestamp":"2024-03-06T15:41:25.983","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T18:15:00.0"} +{"timestamp":"2024-03-06T15:41:25.983","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T18:30:00.0"} +{"timestamp":"2024-03-06T15:41:26.208","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T18:30:00.0"} +{"timestamp":"2024-03-06T15:41:26.208","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:26.434","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T18:45:00.0"} +{"timestamp":"2024-03-06T15:41:26.434","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:26.674","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T19:00:00.0"} +{"timestamp":"2024-03-06T15:41:26.674","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:26.9","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T19:15:00.0"} +{"timestamp":"2024-03-06T15:41:26.9","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:27.126","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T19:30:00.0"} +{"timestamp":"2024-03-06T15:41:27.126","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:27.354","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T19:45:00.0"} +{"timestamp":"2024-03-06T15:41:27.354","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:27.594","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T20:00:00.0"} +{"timestamp":"2024-03-06T15:41:27.594","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:27.829","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T20:15:00.0"} +{"timestamp":"2024-03-06T15:41:27.829","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:28.064","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T20:30:00.0"} +{"timestamp":"2024-03-06T15:41:28.064","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:28.303","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T20:45:00.0"} +{"timestamp":"2024-03-06T15:41:28.303","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:28.554","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T21:00:00.0"} +{"timestamp":"2024-03-06T15:41:28.554","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:28.797","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T21:15:00.0"} +{"timestamp":"2024-03-06T15:41:28.797","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:29.051","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T21:30:00.0"} +{"timestamp":"2024-03-06T15:41:29.051","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.28","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T21:45:00.0"} +{"timestamp":"2024-03-06T15:41:29.28","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:29.516","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T22:00:00.0"} +{"timestamp":"2024-03-06T15:41:29.516","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:29.743","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T22:15:00.0"} +{"timestamp":"2024-03-06T15:41:29.743","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:29.969","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T22:30:00.0"} +{"timestamp":"2024-03-06T15:41:29.969","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:30.197","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T22:45:00.0"} +{"timestamp":"2024-03-06T15:41:30.198","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:30.432","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T23:00:00.0"} +{"timestamp":"2024-03-06T15:41:30.432","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:30.671","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T23:15:00.0"} +{"timestamp":"2024-03-06T15:41:30.671","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:30.906","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T23:30:00.0"} +{"timestamp":"2024-03-06T15:41:30.906","model_name":"ED","status":"start","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:31.143","model_name":"ED","status":"done","step":2,"name":"ProblemExecutionEvent","simulation_time":"2020-01-02T23:45:00.0"} +{"timestamp":"2024-03-06T15:41:31.143","status":"done","step":2,"name":"SimulationStepEvent","simulation_time":"2020-01-02T23:45:00.0"} diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/results/status.json b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/results/status.json new file mode 100644 index 0000000000..8b0926790d --- /dev/null +++ b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/results/status.json @@ -0,0 +1 @@ +{"run_status":"SUCCESSFUL"} \ No newline at end of file diff --git a/v0.27.5/tutorials/jl_1vt3Mm/rts-test/simulation_files/simulation.bin b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/simulation_files/simulation.bin new file mode 100644 index 0000000000..de0a8ce730 Binary files /dev/null and b/v0.27.5/tutorials/jl_1vt3Mm/rts-test/simulation_files/simulation.bin differ diff --git a/v0.27.5/tutorials/pcm_simulation/index.html b/v0.27.5/tutorials/pcm_simulation/index.html new file mode 100644 index 0000000000..c75ab96f9a --- /dev/null +++ b/v0.27.5/tutorials/pcm_simulation/index.html @@ -0,0 +1,893 @@ + +Multi-stage Production Cost Simulation · PowerSimulations.jl

    Sequential Simulations with PowerSimulations.jl

    Originally Contributed by: Clayton Barrows

    Introduction

    PowerSimulations.jl supports simulations that consist of sequential optimization problems where results from previous problems inform subsequent problems in a variety of ways. This example demonstrates some of these capabilities to represent electricity market clearing. This example is intended to be an extension of the OperationsProblem tutorial.

    Load Packages

    using PowerSystems
    +using PowerSimulations
    +using HydroPowerSimulations
    +const PSI = PowerSimulations
    +using PowerSystemCaseBuilder
    +using Dates
    +using HiGHS #solver

    Optimizer

    It's most convenient to define an optimizer instance upfront and pass it into the DecisionModel constructor. For this example, we can use the free HiGHS solver with a relatively relaxed MIP gap (ratioGap) setting to improve speed.

    solver = optimizer_with_attributes(HiGHS.Optimizer, "mip_rel_gap" => 0.5)
    MathOptInterface.OptimizerWithAttributes(HiGHS.Optimizer, Pair{MathOptInterface.AbstractOptimizerAttribute, Any}[MathOptInterface.RawOptimizerAttribute("mip_rel_gap") => 0.5])

    Hourly day-ahead system

    First, we'll create a System with hourly data to represent day-ahead forecasted wind, solar, and load profiles:

    sys_DA = build_system(PSISystems, "modified_RTS_GMLC_DA_sys")
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    System
    PropertyValue
    Name
    Description
    System Units BaseSYSTEM_BASE
    Base Power100.0
    Base Frequency60.0
    Num Components501
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Static Components
    TypeCountHas Static Time SeriesHas Forecasts
    ACBus73falsefalse
    Arc109falsefalse
    Area3truetrue
    FixedAdmittance3truetrue
    HydroDispatch1truetrue
    Line105falsefalse
    LoadZone21falsefalse
    PowerLoad51truetrue
    RenewableDispatch29truetrue
    RenewableFix31truetrue
    TapTransformer15falsefalse
    ThermalStandard54falsefalse
    TwoTerminalHVDCLine1falsefalse
    VariableReserve4truetrue
    VariableReserve1truetrue
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Time Series Summary
    PropertyValue
    Components with time series data123
    Total StaticTimeSeries124
    Total Forecasts124
    Resolution60 minutes
    First initial time2020-01-01T00:00:00
    Last initial time2020-12-30T00:00:00
    Horizon48
    Interval1440 minutes
    Forecast window count365
    +

    5-Minute system

    The RTS data also includes 5-minute resolution time series data. So, we can create another System to represent 15 minute ahead forecasted data for a "real-time" market:

    sys_RT = build_system(PSISystems, "modified_RTS_GMLC_RT_sys")
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    System
    PropertyValue
    Name
    Description
    System Units BaseSYSTEM_BASE
    Base Power100.0
    Base Frequency60.0
    Num Components499
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Static Components
    TypeCountHas Static Time SeriesHas Forecasts
    ACBus73falsefalse
    Arc109falsefalse
    Area1truetrue
    FixedAdmittance3truetrue
    HydroDispatch1truetrue
    Line105falsefalse
    LoadZone21falsefalse
    PowerLoad51truetrue
    RenewableDispatch29truetrue
    RenewableFix31truetrue
    TapTransformer15falsefalse
    ThermalStandard54falsefalse
    TwoTerminalHVDCLine1falsefalse
    VariableReserve1truetrue
    VariableReserve4truetrue
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Time Series Summary
    PropertyValue
    Components with time series data121
    Total StaticTimeSeries122
    Total Forecasts122
    Resolution5 minutes
    First initial time2020-01-01T00:00:00
    Last initial time2020-12-31T23:00:00
    Horizon12
    Interval15 minutes
    Forecast window count35133
    +

    ProblemTemplates define stages

    Sequential simulations in PowerSimulations are created by defining OperationsProblems that represent stages, and how information flows between executions of a stage and between different stages.

    Let's start by defining a two stage simulation that might look like a typical day-Ahead and real-time electricity market clearing process.

    Day-ahead unit commitment stage

    First, we can define a unit commitment template for the day ahead problem. We can use the included UC template, but in this example, we'll replace the ThermalBasicUnitCommitment with the slightly more complex ThermalStandardUnitCommitment for the thermal generators.

    template_uc = template_unit_commitment()
    +set_device_model!(template_uc, ThermalStandard, ThermalStandardUnitCommitment)
    +set_device_model!(template_uc, HydroDispatch, HydroDispatchRunOfRiver)
    ┌ Warning: Overwriting ThermalStandard existing model
    +└ @ PowerSimulations ~/work/PowerSimulations.jl/PowerSimulations.jl/src/core/device_model.jl:111

    Define the reference model for the real-time economic dispatch

    In addition to the manual specification process demonstrated in the OperationsProblem example, PSI also provides pre-specified templates for some standard problems:

    template_ed = template_economic_dispatch(
    +    network = NetworkModel(PTDFPowerModel, use_slacks = true),
    +)
    + + + + + + + + + + + + + + + + + + + +
    Network Model
    Network ModelPTDFPowerModel
    Slackstrue
    PTDFfalse
    DualsNone
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Device Models
    Device TypeFormulationSlacks
    ThermalStandardThermalBasicDispatchfalse
    PowerLoadStaticPowerLoadfalse
    InterruptiblePowerLoadPowerLoadInterruptionfalse
    RenewableFixFixedOutputfalse
    RenewableDispatchRenewableFullDispatchfalse
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Branch Models
    Branch TypeFormulationSlacks
    LineStaticBranchfalse
    TapTransformerStaticBranchfalse
    Transformer2WStaticBranchfalse
    TwoTerminalHVDCLineHVDCTwoTerminalDispatchfalse
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Service Models
    Service TypeFormulationSlacksAggregated Model
    VariableReserve{ReserveUp}RangeReservefalsetrue
    VariableReserve{ReserveDown}RangeReservefalsetrue
    +

    Define the SimulationModels

    DecisionModels define the problems that are executed in the simulation. The actual problem will change as the stage gets updated to represent different time periods, but the formulations applied to the components is constant within a stage. In this case, we want to define two stages with the ProblemTemplates and the Systems that we've already created.

    models = SimulationModels(
    +    decision_models = [
    +        DecisionModel(template_uc, sys_DA, optimizer = solver, name = "UC"),
    +        DecisionModel(template_ed, sys_RT, optimizer = solver, name = "ED"),
    +    ],
    +)
    + + + + + + + + + + + + + + + + + + + + + + + + +
    Decision Models
    Model NameModel TypeStatusOutput Directory
    UCGenericOpProblemEMPTYnothing
    EDGenericOpProblemEMPTYnothing
    + +No Emulator Model Specified +

    SimulationSequence

    Similar to an ProblemTemplate, the SimulationSequence provides a template of how to execute a sequential set of operations problems.

    Let's review some of the SimulationSequence arguments.

    Chronologies

    In PowerSimulations, chronologies define where information is flowing. There are two types of chronologies.

    • inter-stage chronologies: Define how information flows between stages. e.g. day-ahead solutions are used to inform economic dispatch problems
    • intra-stage chronologies: Define how information flows between multiple executions of a single stage. e.g. the dispatch setpoints of the first period of an economic dispatch problem are constrained by the ramping limits from setpoints in the final period of the previous problem.

    FeedForward

    The definition of exactly what information is passed using the defined chronologies is accomplished with FeedForward. Specifically, FeedForward is used to define what to do with information being passed with an inter-stage chronology. Let's define a FeedForward that affects the semi-continuous range constraints of thermal generators in the economic dispatch problems based on the value of the unit-commitment variables.

    feedforward = Dict(
    +    "ED" => [
    +        SemiContinuousFeedforward(
    +            component_type = ThermalStandard,
    +            source = OnVariable,
    +            affected_values = [ActivePowerVariable],
    +        ),
    +    ],
    +)
    Dict{String, Vector{SemiContinuousFeedforward}} with 1 entry:
    +  "ED" => [SemiContinuousFeedforward(VariableKey{OnVariable, ThermalStandard}("…

    Sequencing

    The stage problem length, look-ahead, and other details surrounding the temporal Sequencing of stages are controlled using the structure of the time series data in the Systems. So, to define a typical day-ahead - real-time sequence:

    • Day ahead problems should represent 48 hours, advancing 24 hours after each execution (24-hour look-ahead)
    • Real time problems should represent 1 hour (12 5-minute periods), advancing 15 min after each execution (15 min look-ahead)

    We can adjust the time series data to reflect this structure in each System:

    • transform_single_time_series!(sys_DA, 48, Hour(1))
    • transform_single_time_series!(sys_RT, 12, Minute(15))

    Now we can put it all together to define a SimulationSequence

    DA_RT_sequence = SimulationSequence(
    +    models = models,
    +    ini_cond_chronology = InterProblemChronology(),
    +    feedforwards = feedforward,
    +)
    + + + + + + + + + + + + +
    Simulation Sequence
    Simulation Step Interval24 hours
    Number of Problems2
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Simulation Problems
    Model NameHorizonIntervalExecutions Per Step
    UC481440 minutes1
    ED1215 minutes96
    + + + + + + + + + + + + + + + +
    Feedforwards
    Model NameFeed Forward Type
    EDSemiContinuousFeedforward
    +

    Simulation

    Now, we can build and execute a simulation using the SimulationSequence and Stages that we've defined.

    sim = Simulation(
    +    name = "rts-test",
    +    steps = 2,
    +    models = models,
    +    sequence = DA_RT_sequence,
    +    simulation_folder = mktempdir(".", cleanup = true),
    +)
    + + + + + + + + + + + + + + + + + + + + + + + +
    Simulation
    Simulation Namerts-test
    Build StatusEMPTY
    Run StatusNOT_READY
    Initial TimeUnset Initial Time
    Steps2
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Decision Models
    Model NameModel TypeStatusOutput Directory
    UCGenericOpProblemEMPTYnothing
    EDGenericOpProblemEMPTYnothing
    + +No Emulator Model Specified + + + + + + + + + + + + + +
    Simulation Sequence
    Simulation Step Interval24 hours
    Number of Problems2
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Simulation Problems
    Model NameHorizonIntervalExecutions Per Step
    UC481440 minutes1
    ED1215 minutes96
    + + + + + + + + + + + + + + + +
    Feedforwards
    Model NameFeed Forward Type
    EDSemiContinuousFeedforward
    +

    Build simulation

    build!(sim)
    BuildStatus.BUILT = 0

    Execute simulation

    the following command returns the status of the simulation (0: is proper execution) and stores the results in a set of HDF5 files on disk.

    execute!(sim, enable_progress_bar = false)
    RunStatus.SUCCESSFUL = 0

    Results

    To access the results, we need to load the simulation result metadata and then make requests to the specific data of interest. This allows you to efficiently access the results of interest without overloading resources.

    results = SimulationResults(sim);
    +uc_results = get_decision_problem_results(results, "UC"); # UC stage result metadata
    +ed_results = get_decision_problem_results(results, "ED"); # ED stage result metadata

    Start: 2020-01-01T00:00:00

    +

    End: 2020-01-02T23:45:00

    +

    Resolution: 15 minutes

    + + + + + + + + + + + +
    ED Problem Expressions Results
    ProductionCostExpression__RenewableDispatch
    ProductionCostExpression__ThermalStandard
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ED Problem Parameters Results
    ActivePowerTimeSeriesParameter__RenewableDispatch
    RequirementTimeSeriesParameter__VariableReserve__ReserveUp__Spin_Up_R2
    RequirementTimeSeriesParameter__VariableReserve__ReserveDown__Reg_Down
    ActivePowerTimeSeriesParameter__RenewableFix
    RequirementTimeSeriesParameter__VariableReserve__ReserveUp__Spin_Up_R3
    ActivePowerTimeSeriesParameter__PowerLoad
    RequirementTimeSeriesParameter__VariableReserve__ReserveUp__Reg_Up
    OnStatusParameter__ThermalStandard
    RequirementTimeSeriesParameter__VariableReserve__ReserveUp__Spin_Up_R1
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ED Problem Variables Results
    ActivePowerReserveVariable__VariableReserve__ReserveUp__Spin_Up_R3
    HVDCFlowDirectionVariable__TwoTerminalHVDCLine
    FlowActivePowerVariable__Line
    FlowActivePowerVariable__TapTransformer
    FlowActivePowerFromToVariable__TwoTerminalHVDCLine
    ActivePowerVariable__ThermalStandard
    ActivePowerReserveVariable__VariableReserve__ReserveUp__Spin_Up_R2
    SystemBalanceSlackDown__System
    FlowActivePowerToFromVariable__TwoTerminalHVDCLine
    SystemBalanceSlackUp__System
    ActivePowerReserveVariable__VariableReserve__ReserveDown__Reg_Down
    ActivePowerVariable__RenewableDispatch
    HVDCLosses__TwoTerminalHVDCLine
    ActivePowerReserveVariable__VariableReserve__ReserveUp__Reg_Up
    ActivePowerReserveVariable__VariableReserve__ReserveUp__Spin_Up_R1
    +

    We can read all the result variables

    read_variables(uc_results)
    Dict{String, SortedDict{Any, Any, Base.Order.ForwardOrdering}} with 14 entries:
    +  "ActivePowerReserveVaria… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×5…
    +  "FlowActivePowerToFromVa… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×2…
    +  "StopVariable__ThermalSt… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×5…
    +  "ActivePowerReserveVaria… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×5…
    +  "OnVariable__ThermalStan… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×5…
    +  "ActivePowerVariable__Hy… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×2…
    +  "ActivePowerReserveVaria… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×1…
    +  "StartVariable__ThermalS… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×5…
    +  "ActivePowerVariable__Th… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×5…
    +  "FlowActivePowerFromToVa… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×2…
    +  "ActivePowerReserveVaria… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×1…
    +  "ActivePowerVariable__Re… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×3…
    +  "HVDCFlowDirectionVariab… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×2…
    +  "ActivePowerReserveVaria… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×1…

    or all the parameters

    read_parameters(uc_results)
    Dict{String, SortedDict{Any, Any, Base.Order.ForwardOrdering}} with 9 entries:
    +  "RequirementTimeSeriesPa… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×2…
    +  "ActivePowerTimeSeriesPa… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×5…
    +  "ActivePowerTimeSeriesPa… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×3…
    +  "ActivePowerTimeSeriesPa… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×3…
    +  "RequirementTimeSeriesPa… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×2…
    +  "RequirementTimeSeriesPa… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×2…
    +  "ActivePowerTimeSeriesPa… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×2…
    +  "RequirementTimeSeriesPa… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×2…
    +  "RequirementTimeSeriesPa… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×2…

    We can just list the variable names contained in uc_results:

    list_variable_names(uc_results)
    14-element Vector{String}:
    + "OnVariable__ThermalStandard"
    + "ActivePowerReserveVariable__VariableReserve__ReserveUp__Spin_Up_R3"
    + "HVDCFlowDirectionVariable__TwoTerminalHVDCLine"
    + "StopVariable__ThermalStandard"
    + "FlowActivePowerFromToVariable__TwoTerminalHVDCLine"
    + "ActivePowerVariable__ThermalStandard"
    + "ActivePowerReserveVariable__VariableReserve__ReserveUp__Spin_Up_R2"
    + "FlowActivePowerToFromVariable__TwoTerminalHVDCLine"
    + "ActivePowerReserveVariable__VariableReserve__ReserveDown__Reg_Down"
    + "ActivePowerVariable__RenewableDispatch"
    + "ActivePowerVariable__HydroDispatch"
    + "ActivePowerReserveVariable__VariableReserve__ReserveUp__Reg_Up"
    + "StartVariable__ThermalStandard"
    + "ActivePowerReserveVariable__VariableReserve__ReserveUp__Spin_Up_R1"

    and a number of parameters (this pattern also works for aux_variables, expressions, and duals)

    list_parameter_names(uc_results)
    9-element Vector{String}:
    + "ActivePowerTimeSeriesParameter__RenewableDispatch"
    + "RequirementTimeSeriesParameter__VariableReserve__ReserveUp__Spin_Up_R2"
    + "RequirementTimeSeriesParameter__VariableReserve__ReserveDown__Reg_Down"
    + "ActivePowerTimeSeriesParameter__RenewableFix"
    + "RequirementTimeSeriesParameter__VariableReserve__ReserveUp__Spin_Up_R3"
    + "ActivePowerTimeSeriesParameter__PowerLoad"
    + "RequirementTimeSeriesParameter__VariableReserve__ReserveUp__Reg_Up"
    + "ActivePowerTimeSeriesParameter__HydroDispatch"
    + "RequirementTimeSeriesParameter__VariableReserve__ReserveUp__Spin_Up_R1"

    Now we can read the specific results of interest for a specific problem, time window (optional), and set of variables, duals, or parameters (optional)

    Dict([
    +    v => read_variable(uc_results, v) for v in [
    +        "ActivePowerVariable__RenewableDispatch",
    +        "ActivePowerVariable__HydroDispatch",
    +        "StopVariable__ThermalStandard",
    +    ]
    +])
    Dict{String, SortedDict{Any, Any, Base.Order.ForwardOrdering}} with 3 entries:
    +  "StopVariable__ThermalSt… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×5…
    +  "ActivePowerVariable__Re… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×3…
    +  "ActivePowerVariable__Hy… => SortedDict(DateTime("2020-01-01T00:00:00")=>48×2…

    Or if we want the result of just one variable, parameter, or dual (must be defined in the problem definition), we can use:

    read_parameter(
    +    ed_results,
    +    "ActivePowerTimeSeriesParameter__RenewableFix",
    +    initial_time = DateTime("2020-01-01T06:00:00"),
    +    count = 5,
    +)
    SortedDict{Any, Any, Base.Order.ForwardOrdering} with 5 entries:
    +  DateTime("2020-01-01T06:00:00") => 12×32 DataFrame…
    +  DateTime("2020-01-01T06:15:00") => 12×32 DataFrame…
    +  DateTime("2020-01-01T06:30:00") => 12×32 DataFrame…
    +  DateTime("2020-01-01T06:45:00") => 12×32 DataFrame…
    +  DateTime("2020-01-01T07:00:00") => 12×32 DataFrame…
    • note that this returns the results of each execution step in a separate dataframe *

    If you want the realized results (without lookahead periods), you can call read_realized_*:

    read_realized_variables(
    +    uc_results,
    +    ["ActivePowerVariable__ThermalStandard", "ActivePowerVariable__RenewableDispatch"],
    +)
    Dict{String, DataFrames.DataFrame} with 2 entries:
    +  "ActivePowerVariable__Th… => 48×55 DataFrame…
    +  "ActivePowerVariable__Re… => 48×30 DataFrame…

    Plotting

    Take a look at the plotting capabilities in PowerGraphics.jl

    diff --git a/versions.js b/versions.js index 9ecb18ea5b..1ac8ac8320 100644 --- a/versions.js +++ b/versions.js @@ -22,5 +22,5 @@ var DOC_VERSIONS = [ "v0.6", "v0.5", ]; -var DOCUMENTER_NEWEST = "v0.27.4"; +var DOCUMENTER_NEWEST = "v0.27.5"; var DOCUMENTER_STABLE = "stable";