-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Maintenance formulation (for thermal generators) (#556)
Add an optional formulation for scheduled maintenance. Plants with this formulation active (so far, limited to thermal-commit plants, THERM=1) need to undergo a certain number of contiguous hours of maintenance every y >= 1 years. During this time they produce no power. This may be particularly useful in modeling fission plants, which need roughly 4 weeks of maintenance every 18 or 24 months. (Here, 18 would need to be rounded up to 24, as only maintenance cycles which are an integer number of years work with this formulation.)
- Loading branch information
1 parent
79162ea
commit 13ec11d
Showing
10 changed files
with
479 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# Optimized Scheduled Maintenance | ||
_Added in v0.4_ | ||
|
||
In the real world, some types of resources (notably, fission) require regular scheduled maintenance, which often takes several weeks. | ||
During this time, the plant produces no power. | ||
This module allows GenX to find the best time of year for plants to undergo maintenance. | ||
|
||
Scheduled maintenance is implemented **only** for thermal plants with unit commitment (THERM=1). | ||
|
||
## Description of the maintenance model | ||
A plant requires a single contiguous period of $h \ge 1$ hours of maintenance, every $y \ge 1$ years. | ||
For each plant, the best time to start the maintenance period is determined by the optimizer. | ||
|
||
During maintenance, the plant cannot be "commited", and therefore | ||
|
||
* uses no fuel, | ||
* produces no power, | ||
* and does not contribute to reserves. | ||
|
||
Additionally, | ||
|
||
* the plant does not contribute to any Capacity Reserve Margin. | ||
|
||
### Treatment of plants that require maintenance only every few years | ||
GenX models a long-term equilibrium, | ||
and each problem generally represents a single full year. | ||
If a plant requires maintenance every $y$ years, we take the simplification that at least $1/y$ of the plants must undergo maintenance in the modeled year. | ||
|
||
See also "Interaction with integer unit commitment" below. | ||
|
||
### Reduction of number of possible start dates | ||
This module creates constraints which work across long periods, and consequently can be very expensive to solve. | ||
In order to reduce the expense, the set of possible maintenance start dates can be limited. | ||
Rather than have maintenance potentially start every hour, one can have possible start dates which are once per day, once per week, etc. | ||
(In reality, maintenance is likely scheduled months in advance, so optimizing down to the hour may not be realistic anyway.) | ||
|
||
## How to use | ||
There are four columns which need to be added to the plant data, i.e. in `Generators_data.csv`: | ||
|
||
1. `MAINT` should be `1` for plants that require maintenance and `0` otherwise. | ||
2. `Maintenance_Duration` is the number of hours the maintenance period lasts. | ||
3. `Maintenance_Cycle_Length_Years`. If `1`, maintenance every year, if `3` maintenance every 3 years, etc. | ||
4. `Maintenance_Begin_Cadence`. Spacing between hours in which maintenance can start. | ||
|
||
The last three fields must be integers which are greater than 0. | ||
They are ignored for any plants which do not require maintenance. | ||
|
||
`Maintenance_Duration` must be less than the total number of hours in the year. | ||
|
||
If `Maintenance_Begin_Cadence` is `1` then the maintenance can begin in any hour. | ||
If it is `168` then it can begin in hours 1, 169, 337, etc. | ||
|
||
## Restrictions on use | ||
The maintenance module has these restrictions: | ||
|
||
- More than a single maintenance period per year (i.e. every three months) is not possible in the current formulation. | ||
- Only full-year cases can be run; there must be only one "representative period". | ||
It would not make sense to model a *month*-long maintenance period when the year is modeled as a series of representative *weeks*, for example. | ||
|
||
### Interaction with integer unit commitment | ||
If integer unit commitment is on (`UCommit=1`) this module may not produce correct results; there may be more maintenance than the user wants. | ||
This is because the formulation specifies that the number of plants that go down for maintenance in the simulated year must be at least (the number of plants in the zone)/(the maintenance cycle length in years). | ||
As a reminder, the number of plants is `eTotalCap / Cap_Size`. | ||
|
||
If there were three 500 MW plants (total 1500 MW) in a zone, and they require maintenance every three years (`Maintenance_Cycle_Length_Years=3`), | ||
the formulation will work properly: one of the three plants will go under maintenance. | ||
|
||
But if there was only one 500 MW plant, and it requires maintenance every 3 years, the constraint will still make it do maintenance **every year**, because `ceil(1/3)` is `1`. The whole 500 MW plant will do maintenance. This is the unexpected behavior. | ||
|
||
However, if integer unit commitment was relaxed to "linearized" unit commitment (`UCommit=2`), the model will have only 500 MW / 3 = 166.6 MW worth of this plant do maintenance. | ||
|
||
## Hint: pre-scheduling maintenance | ||
If you want to pre-schedule when maintenance occurs, you might not need this module. | ||
Instead, you could set the maximum power output of the plant to zero for a certain period, or make its fuel extremely expensive during that time. | ||
However, the plant would still be able to contribute to the Capacity Reserve Margin. | ||
|
||
## Outputs produced | ||
If at least one plant has `MAINT=1`, a file `maint_down.csv` will be written listing how many plants are down for maintenance in each timestep. | ||
|
||
## Notes on mathematical formulation | ||
The formulation of the maintenance state is very similar to the formulation of unit commitment. | ||
|
||
There is a variable called something like `vMSHUT` which is analogous to `vSTART` and controls the start of the maintenance period. | ||
There is another variable called something like `vMDOWN` analogous to `vCOMMIT` which controls the maintenance status in any hour. | ||
|
||
A constraint ensures that the value of `vMDOWN` in any hour is always more than the number of `vMSHUT`s in the previous `Maintenance_Duration` hours. | ||
|
||
Another constraint ensures that the number of plants committed (`vCOMMIT`) at any one time plus the number of plants under maintenance (`vMDOWN`) is less than the total number of plants. | ||
|
||
## Developer note: adding maintenance to a resource | ||
The maintenance formulation is applied on a per-resource basis, by calling the function `maintenance_formulation!`. | ||
|
||
```@docs | ||
GenX.maintenance_formulation! | ||
``` | ||
|
||
See `maintenance_formulation_thermal_commit!` for an example of how to apply it to a new resource. | ||
|
||
* The resource must have a `vCOMMIT`-like variable which is proportional to maximum the power output, etc at any given timestep. | ||
* The resource must have a `eTotalCap`-like quantity and a `Cap_Size`-like parameter; only the ratio of the two is used. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,217 @@ | ||
const MAINTENANCE_DOWN_VARS = "MaintenanceDownVariables" | ||
const MAINTENANCE_SHUT_VARS = "MaintenanceShutVariables" | ||
|
||
@doc raw""" | ||
resources_with_maintenance(df::DataFrame)::Vector{Int} | ||
Get a vector of the R_ID's of all resources listed in a dataframe | ||
that have maintenance requirements. If there are none, return an empty vector. | ||
This method takes a specific dataframe because compound resources may have their | ||
data in multiple dataframes. | ||
""" | ||
function resources_with_maintenance(df::DataFrame)::Vector{Int} | ||
if "MAINT" in names(df) | ||
df[df.MAINT.>0, :R_ID] | ||
else | ||
Vector{Int}[] | ||
end | ||
end | ||
|
||
@doc raw""" | ||
maintenance_down_name(resource_component::AbstractString)::String | ||
JuMP variable name to control whether a resource-component is down for maintenance. | ||
Here resource-component could be a whole resource or a component (for complex resources). | ||
""" | ||
function maintenance_down_name(resource_component::AbstractString)::String | ||
"vMDOWN_" * resource_component | ||
end | ||
|
||
@doc raw""" | ||
maintenance_shut_name(resource_component::AbstractString)::String | ||
JuMP variable name to control when a resource-components begins maintenance. | ||
Here resource-component could be a whole resource or a component (for complex resources). | ||
""" | ||
function maintenance_shut_name(resource_component::AbstractString)::String | ||
"vMSHUT_" * resource_component | ||
end | ||
|
||
function sanity_check_maintenance(MAINT::Vector{Int}, inputs::Dict) | ||
rep_periods = inputs["REP_PERIOD"] | ||
|
||
is_maint_reqs = !isempty(MAINT) | ||
if rep_periods > 1 && is_maint_reqs | ||
@error """Resources with R_ID $MAINT have MAINT > 0, | ||
but the number of representative periods ($rep_periods) is greater than 1. | ||
These are incompatible with a Maintenance requirement.""" | ||
error("Incompatible GenX settings and maintenance requirements.") | ||
end | ||
end | ||
|
||
@doc raw""" | ||
controlling_maintenance_start_hours(p::Int, t::Int, maintenance_duration::Int, maintenance_begin_hours::UnitRange{Int64}) | ||
p: hours_per_subperiod | ||
t: the current hour | ||
maintenance_duration: length of a maintenance period | ||
maintenance_begin_hours: collection of hours in which maintenance is allowed to start | ||
""" | ||
function controlling_maintenance_start_hours( | ||
p::Int, | ||
t::Int, | ||
maintenance_duration::Int, | ||
maintenance_begin_hours, | ||
) | ||
controlled_hours = hoursbefore(p, t, 0:(maintenance_duration-1)) | ||
return intersect(controlled_hours, maintenance_begin_hours) | ||
end | ||
|
||
@doc raw""" | ||
maintenance_formulation!(EP::Model, | ||
inputs::Dict, | ||
resource_component::AbstractString, | ||
r_id::Int, | ||
maint_begin_cadence::Int, | ||
maint_dur::Int, | ||
maint_freq_years::Int, | ||
cap::Float64, | ||
vcommit::Symbol, | ||
ecap::Symbol, | ||
integer_operational_unit_commitment::Bool) | ||
EP: the JuMP model | ||
inputs: main data storage | ||
resource_component: unique resource name with optional component name | ||
If the plant has more than one component, this could identify a specific part which | ||
is undergoing maintenance. | ||
r_id: Resource ID (unique resource integer) | ||
maint_begin_cadence: | ||
It may be too expensive (from an optimization perspective) to allow maintenance | ||
to begin at any time step during the simulation. Instead this integer describes | ||
the cadence of timesteps in which maintenance can begin. Must be at least 1. | ||
maint_dur: Number of timesteps that maintenance takes. Must be at least 1. | ||
maint_freq_years: 1 is maintenannce every year, | ||
2 is maintenance every other year, etc. Must be at least 1. | ||
cap: Plant electrical capacity. | ||
vcommit: Symbol of vCOMMIT-like variable. | ||
ecap: Symbol of eTotalCap-like variable. | ||
integer_operational_unit_commitment: whether this plant has integer unit | ||
commitment for operational variables. | ||
Creates maintenance-tracking variables and adds their Symbols to two Sets in `inputs`. | ||
Adds constraints which act on the vCOMMIT-like variable. | ||
""" | ||
function maintenance_formulation!( | ||
EP::Model, | ||
inputs::Dict, | ||
resource_component::AbstractString, | ||
r_id::Int, | ||
maint_begin_cadence::Int, | ||
maint_dur::Int, | ||
maint_freq_years::Int, | ||
cap::Float64, | ||
vcommit::Symbol, | ||
ecap::Symbol, | ||
integer_operational_unit_commitment::Bool, | ||
) | ||
|
||
T = 1:inputs["T"] | ||
hours_per_subperiod = inputs["hours_per_subperiod"] | ||
|
||
y = r_id | ||
down_name = maintenance_down_name(resource_component) | ||
shut_name = maintenance_shut_name(resource_component) | ||
down = Symbol(down_name) | ||
shut = Symbol(shut_name) | ||
|
||
union!(inputs[MAINTENANCE_DOWN_VARS], (down,)) | ||
union!(inputs[MAINTENANCE_SHUT_VARS], (shut,)) | ||
|
||
maintenance_begin_hours = 1:maint_begin_cadence:T[end] | ||
|
||
# create variables | ||
vMDOWN = EP[down] = @variable(EP, [t in T], base_name = down_name, lower_bound = 0) | ||
vMSHUT = | ||
EP[shut] = @variable( | ||
EP, | ||
[t in maintenance_begin_hours], | ||
base_name = shut_name, | ||
lower_bound = 0 | ||
) | ||
|
||
if integer_operational_unit_commitment | ||
set_integer.(vMDOWN) | ||
set_integer.(vMSHUT) | ||
end | ||
|
||
vcommit = EP[vcommit] | ||
ecap = EP[ecap] | ||
|
||
# Maintenance variables are measured in # of plants | ||
@constraints(EP, begin | ||
[t in maintenance_begin_hours], vMSHUT[t] <= ecap[y] / cap | ||
end) | ||
|
||
# Plant is non-committed during maintenance | ||
@constraint(EP, [t in T], vMDOWN[t] + vcommit[y, t] <= ecap[y] / cap) | ||
|
||
controlling_hours(t) = controlling_maintenance_start_hours( | ||
hours_per_subperiod, | ||
t, | ||
maint_dur, | ||
maintenance_begin_hours, | ||
) | ||
# Plant is down for the required number of hours | ||
@constraint(EP, [t in T], vMDOWN[t] == sum(vMSHUT[controlling_hours(t)])) | ||
|
||
# Plant requires maintenance every (certain number of) year(s) | ||
@constraint( | ||
EP, | ||
sum(vMSHUT[t] for t in maintenance_begin_hours) >= ecap[y] / cap / maint_freq_years | ||
) | ||
|
||
return | ||
end | ||
|
||
@doc raw""" | ||
ensure_maintenance_variable_records!(dict::Dict) | ||
dict: a dictionary of model data | ||
This should be called by each method that adds maintenance formulations, | ||
to ensure that certain entries in the model data dict exist. | ||
""" | ||
function ensure_maintenance_variable_records!(dict::Dict) | ||
for var in (MAINTENANCE_DOWN_VARS, MAINTENANCE_SHUT_VARS) | ||
if var ∉ keys(dict) | ||
dict[var] = Set{Symbol}() | ||
end | ||
end | ||
end | ||
|
||
@doc raw""" | ||
has_maintenance(dict::Dict) | ||
dict: a dictionary of model data | ||
Checks whether the dictionary contains listings of maintenance-related variable names. | ||
This is true only after `maintenance_formulation!` has been called. | ||
""" | ||
function has_maintenance(dict::Dict)::Bool | ||
rep_periods = dict["REP_PERIOD"] | ||
MAINTENANCE_DOWN_VARS in keys(dict) && rep_periods == 1 | ||
end | ||
|
||
@doc raw""" | ||
maintenance_down_variables(dict::Dict) | ||
dict: a dictionary of model data | ||
get listings of maintenance-related variable names. | ||
This is available only after `maintenance_formulation!` has been called. | ||
""" | ||
function maintenance_down_variables(dict::Dict)::Set{Symbol} | ||
dict[MAINTENANCE_DOWN_VARS] | ||
end |
Oops, something went wrong.