mirror of
https://github.com/ANL-CEEESA/UnitCommitment.jl.git
synced 2025-12-06 08:18:51 -06:00
Flatten dir structure, update docstrings
This commit is contained in:
@@ -3,3 +3,26 @@
|
||||
# Released under the modified BSD license. See COPYING.md for more details.
|
||||
|
||||
abstract type PricingMethod end
|
||||
|
||||
struct ConventionalLMP <: PricingMethod end
|
||||
|
||||
"""
|
||||
struct AELMP <: PricingMethod
|
||||
allow_offline_participation::Bool = true
|
||||
consider_startup_costs::Bool = true
|
||||
end
|
||||
|
||||
Approximate Extended LMPs.
|
||||
|
||||
Arguments
|
||||
---------
|
||||
|
||||
- `allow_offline_participation`:
|
||||
If true, offline assets are allowed to participate in pricing.
|
||||
- `consider_startup_costs`:
|
||||
If true, the start-up costs are averaged over each unit production; otherwise the production costs stay the same.
|
||||
"""
|
||||
Base.@kwdef struct AELMP <: PricingMethod
|
||||
allow_offline_participation::Bool = true
|
||||
consider_startup_costs::Bool = true
|
||||
end
|
||||
Reference in New Issue
Block a user