You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
If the economic_representation = false, the coefficients are taken directly from the user input data. No extra calculation is done
Describe the solution you'd like
if economic_representation = false then update the investment cost in the objective function by something like this:
updated_investment_cost = investment_cost * min (life_span, model horizon)/life_span
Important: double-check with the SpineOpt developers before implementing
Describe alternatives you've considered
The user needs to update manually the input data each time, which can lead to input data errors.
Additional context
WP5 in the Mopo project has identified this as a helpful feature to avoid mistakes when varying the end of the model and not making multi-year investments.
The text was updated successfully, but these errors were encountered:
@AlvaroPorras19 and @trobob you both have mentioned something like this will be nice to have in SpineOpt. Please add or suggest on this issue if you have anything else on the topic. Thanks!
The equation dividing by lifespan is not recommended.
(new issue) Another alternative: always calculate the economic representation with defaults
(this solves this issue) Update the economic representation to not depend on the year and calculate the annuity considering the model length. See the implementations in FlexTool and Backbone.
Is your feature request related to a problem? Please describe.
If the
economic_representation = false
, the coefficients are taken directly from the user input data. No extra calculation is doneDescribe the solution you'd like
if
economic_representation = false
then update the investment cost in the objective function by something like this:updated_investment_cost = investment_cost * min (life_span, model horizon)/life_span
Important: double-check with the SpineOpt developers before implementing
Describe alternatives you've considered
The user needs to update manually the input data each time, which can lead to input data errors.
Additional context
WP5 in the Mopo project has identified this as a helpful feature to avoid mistakes when varying the end of the model and not making multi-year investments.
The text was updated successfully, but these errors were encountered: