Remove some redundant comments

This commit is contained in:
2022-04-16 09:55:28 -05:00
parent 099fb4e3cb
commit cda1e368fe
3 changed files with 6 additions and 6 deletions

View File

@@ -37,7 +37,7 @@ mutable struct Unit
initial_status::Union{Int,Nothing}
initial_power::Union{Float64,Nothing}
provides_spinning_reserves::Vector{Bool}
provides_flexiramp_reserves::Vector{Bool} # binary variable indicating whether the unit provides flexiramp
provides_flexiramp_reserves::Vector{Bool}
startup_categories::Vector{StartupCategory}
end
@@ -55,8 +55,8 @@ end
mutable struct Reserves
spinning::Vector{Float64}
upflexiramp::Vector{Float64} # up-flexiramp reserve requirements
dwflexiramp::Vector{Float64} # down-flexiramp reserve requirements
upflexiramp::Vector{Float64}
dwflexiramp::Vector{Float64}
end
mutable struct Contingency
@@ -84,7 +84,7 @@ Base.@kwdef mutable struct UnitCommitmentInstance
price_sensitive_loads::Vector{PriceSensitiveLoad}
reserves::Reserves
shortfall_penalty::Vector{Float64}
flexiramp_shortfall_penalty::Vector{Float64} # penalty price for flexiramp shortfall
flexiramp_shortfall_penalty::Vector{Float64}
time::Int
units_by_name::Dict{AbstractString,Unit}
units::Vector{Unit}