invest_method to be used for a storage group when there is a lower limit but infinite upper limit.
#292
-
|
I have defined 10 battery nodes for 10 regions in Then, I define connection objects in I have a I want to allow a minimum investment of 1357 MW in battery storage group in a year. But there should not be any upper limit to it. |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments
-
|
If you want the invest_min_total to be active, use invest_total as the method. The maximum limit is used only if it is defined in the 'invest_max_total' for that entity The methods are the following:
The same applies if one wants to retire. For example:
Also, the combination of the two exists:
Finally, if one wants to have all the limits:
|
Beta Was this translation helpful? Give feedback.
-
|
Thanks Arttu! Does that mean I need to have two rows in this case for the same alternative to set a fixed lower limit and infinite upper limit? Or would you suggest to specify invest_total with 1357 MW as lower limit and a very high number (say 999999) as upper limit? |
Beta Was this translation helpful? Give feedback.
-
|
The 2nd option (very high upper limit - don't make too high though, helps the solver) at least works. The first option I would need to check. |
Beta Was this translation helpful? Give feedback.
-
|
This is an interesting case as I want to have minimum investment limit and infinite upper limit. Moreover, I want to invest in a group of storage nodes. What failed for me: When was the model feasible: ii.) I specified invest_total of 99999 in |
Beta Was this translation helpful? Give feedback.
-
|
So, there was a |
Beta Was this translation helpful? Give feedback.
-
|
Hi, |
Beta Was this translation helpful? Give feedback.




This is an interesting case as I want to have minimum investment limit and infinite upper limit. Moreover, I want to invest in a group of storage nodes.
What failed for me:
I understand the default
invest_methodis not_allowed.When I specified invest_total limits of 1357 MW minimum and 99999 maximum to Battery_Storage_Group, the model was infeasible.
This is because it is not possible to define this minimum limit across different nodes in
node_csheet, and the limits/no limits innode_csheer orconnection_csheet contradicts with specific limits ingroup_csheet.When was the model feasible:
When I did not include the
Battery_Storage_Groupingroup_csheet, plusi.) I specified invest_n…