EnergyModelsX / EnergyModelsBase.jl

MIT License
8 stars 0 forks source link

Inclusion of both charge and discharge capacities #29

Closed JulStraus closed 5 months ago

JulStraus commented 5 months ago

In the previous implementation, we allowed for only a single capacity for rates of Storage nodes. This capacity was either used for the rate of charging or discharging a Storage node. In addition, there was a problem with respect to variable and fixed OPEX of storage nodes, as we did not allow for variations.

This is solved in this PR through the introduction of AbstractStorageParameters and the potential for incorporating both :charge and :discharge capacities. The type RefStorage will however not be extended, as we want to have backwards compatibility.

JulStraus commented 5 months ago

This PR closes Issue 28.