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.
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 aStorage
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 typeRefStorage
will however not be extended, as we want to have backwards compatibility.