Skip to content

Commit

Permalink
Merge pull request #815 from NREL-SIIP/sd/reserves
Browse files Browse the repository at this point in the history
Adding new abstract reserve type
  • Loading branch information
jd-lara authored Sep 21, 2021
2 parents 9d5fca7 + 62006ba commit be919ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions src/PowerSystems.jl
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@ export Source
export PeriodicVariableSource

export Service
export AbstractReserve
export Reserve
export ReserveNonSpinning
export ReserveDirection
export ReserveUp
export ReserveDown
Expand Down
6 changes: 3 additions & 3 deletions src/models/reserves.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ abstract type ReserveDirection end
abstract type ReserveUp <: ReserveDirection end
abstract type ReserveDown <: ReserveDirection end
abstract type ReserveSymmetric <: ReserveDirection end
abstract type Reserve{T <: ReserveDirection} <: Service end

abstract type ReserveNonSpinning <: Service end
abstract type AbstractReserve <: Service end
abstract type Reserve{T <: ReserveDirection} <: AbstractReserve end
abstract type ReserveNonSpinning <: AbstractReserve end

0 comments on commit be919ae

Please sign in to comment.