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
Wording in Investment Calculation
The wording of economics.annuity is in my opinion not correct. From economics.py:
epc = economics.annuity(
capex=(800 + 800 * 0.02 * lifetime) / 1000,
n=lifetime,
wacc=0.03,
)
capex : float
Capital expenditure for first investment. Net Present Value (NPV) or
Net Present Cost (NPC) of investment
Correct is, since the Investment cost are not equal to the NPV and we use here the investment cost:
capex : float
Capital expenditure for first investment.
Annuity of Offset
For general discussion/understanding I want to add, what oemof does in the no multi-period investment mode:
totex_annual = capex_annual + opex_annual
If I'm right, the offset of an investment must also be calculated as an annuity before it is added to the investment component, with:
Wording in Investment Calculation
The wording of economics.annuity is in my opinion not correct. From economics.py:
Correct is, since the Investment cost are not equal to the NPV and we use here the investment cost:
Annuity of Offset
For general discussion/understanding I want to add, what oemof does in the no multi-period investment mode:
If I'm right, the offset of an investment must also be calculated as an annuity before it is added to the investment component, with:
If so, I think it would be useful to have an example here, since I couldn't find one.
The text was updated successfully, but these errors were encountered: