mirror of
https://github.com/ANL-CEEESA/UnitCommitment.jl.git
synced 2025-12-06 08:18:51 -06:00
19 lines
603 B
Julia
19 lines
603 B
Julia
# 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.
|
|
|
|
"""
|
|
Formulation described in:
|
|
|
|
Knueven, B., Ostrowski, J., & Watson, J. P. (2018). Exploiting identical
|
|
generators in unit commitment. IEEE Transactions on Power Systems, 33(4),
|
|
4496-4507. DOI: https://doi.org/10.1109/TPWRS.2017.2783850
|
|
"""
|
|
module KnuOstWat2018
|
|
|
|
import ..PiecewiseLinearCostsFormulation
|
|
|
|
struct PwlCosts <: PiecewiseLinearCostsFormulation end
|
|
|
|
end
|