-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New reserve margin #59
base: master
Are you sure you want to change the base?
Conversation
Updating the OSeMOSYS GNU repository
Hi Hauke, The following suggestions are (just) to stimulate a discussion around this parameter addition.
|
Hi Vignesh, thanks for your comments and considerations!
|
…. The AnnualPeakHour is reverse calculated and corresponds to the demand per hour in the time slice with the highest per hour demand.
I have now implemented the new RM in the UTOPIA test model. |
Perhaps you could have a look @vignesh1987 ? |
@vignesh1987 - would you be able to review this pull request? |
|
@NMoksnes and I have been going through this PR. NB:This PR should just be merged if #85 is addressed. If #85 is not addressed the proposed change here would need to be adjusted to be able to consider ReserveMargins in different regions. |
I don't think #85 is going to be resolved soon. Can you develop the same functionality without relying on region functionality, otherwise this PR will just sit here gathering dust! |
I will think about how to do it. And try to implement it next week. |
Just a quick note that by using the user defined constraints functionality you can set up reserve margin constraints a bit more flexibly than with a fixed model implementation. |
The changes to OSeMOSYS proposed here change the way how the
ReserveMargin
is determined.It introduces the new parameter
AnnualPeakHour
dependent onr in REGION, y in YEAR
, which takes the electricity demand of the hour with the highest electricity demand of the year.Using this parameter the calculation of the
ReserveMargin
has been adopted.The aim of this changes is to have a
ReserveMargin
that is closer to the ones observed in real power systems. The current formulation of theReserveMargin
relates theReserveMargin
to the time slice with the highest demand. However, time slices do not necessarily represent one hour. Therefore, theReserveMargin
is potentially not accurate.This PR addresses #48