-
Notifications
You must be signed in to change notification settings - Fork 134
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
Use representative year for multi-year-periods in multi-period-investment #992
Comments
Hello @nailend, I see what you are aiming for. Maybe I have not fully understood it, but wouldn't what I just commented for #987 maybe also address and potentially even solve this problem?
For the suggested adjustment in the Long story short: One should think of a safe(r) way for |
yes!
I guess, I haven't fully understood, what the effect of changing 'objective_weighting means for the discount rate.
Exactly!
I am not sure which |
@jokochems I think I mixed up the if conditions. In the last period, your former code will be used, so there should be no problem if there was none before. Just in all other periods, I changed the method. Sorry for the confusion! |
I don't really get the issue. Can't you e.g. just use six representative years, each standing for ten years of your optimisation horizon? (If the issue is resolved, please close it.) |
That's exactly what I want to do, but currently the variable costs for the implicit years would not be accounted for. You can probably also do this with the I would also see this as a frequently used feature for long term multi-period-investments and therefore useful. It's not that much of code changes, is it? |
Currently, no costs would be considered automatically for the implicit years. Probably, this is also the most transparent way to work. Disregarding the current implementation, I would suggest the following solution: CAPEX:
OPEX:
In my opinion, the way to implement this is to disable automatic discounting for the OPEX. This would be useful anyway, as you often get prognosis for future energy costs discounted to today's values. |
Hi, @p-snft. Thank you. I do see your point and I think, I commented similar stuff above. I have some remarks:
Also, I like your ideas on structural improvements and am looking forward towards the discussions at the next dev meeting. Thank you! |
I meant the ones to control for fixed costs being limited to the optimization horizon, for instance here: https://github.com/oemof/oemof-solph/blob/119e9cbab35f8289fcde3e0539486d53dd7e99bb/src/oemof/solph/flows/_investment_flow_block.py#L1025C29-L1028C30 The other remark was on the newly introduced But I think, this has been resolved as you altered the implementation of |
The yet implemented multi-period-investment was designed by the assumption to provide time series for every year (equivalent period) within the optimization horizon. Due to a long optimization horizon (~60 years), we need to use representative years/time series for the years within a multi-year-period.
Fortunately, @jokochems well-designed approach already facilitates most of this. Currently, only the flow costs (
variable
andfixed
) for the flows are not handled accordingly. This could be done by adjusting values for theobjective weighting
but might collide with its use in the TSAM integration (as discussed in #987) which we also want to use.Therefore, I propose the boolean-flag
use_representative_year_in_multi_year_periods
forsolph.EnergySystem
.This would lead to a further condition at the calculation for the
variable_costs
, here.In case it's True, variable costs would be calculated like this:
The variable costs for the representative/explicit year (with timeseries provided) would then be discounted and used for the implicit years of the period (without timeseries provided).
Further
get_period_duration()
from #982 would need some adaption for multi-year-periods as well:The text was updated successfully, but these errors were encountered: