You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
587 B
15 lines
587 B
# UnitCommitment.jl: Optimization Package for Security-Constrained Unit Commitment
|
|
# Copyright (C) 2020, UChicago Argonne, LLC. All rights reserved.
|
|
# Released under the modified BSD license. See COPYING.md for more details.
|
|
|
|
"""
|
|
function optimize!(model::JuMP.Model)::Nothing
|
|
|
|
Solve the given unit commitment model. Unlike JuMP.optimize!, this uses more
|
|
advanced methods to accelerate the solution process and to enforce transmission
|
|
and N-1 security constraints.
|
|
"""
|
|
function optimize!(model::JuMP.Model)::Nothing
|
|
return UnitCommitment.optimize!(model, XavQiuWanThi2019())
|
|
end
|