-
Notifications
You must be signed in to change notification settings - Fork 25
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
Fixed Internal Rate versus Discount Rate #301
Comments
Relevant code for reference: Fixed Internal Rate: GEOPHIRES-X/src/geophires_x/Economics.py Lines 1382 to 1392 in 95c37b7
Discount Rate: GEOPHIRES-X/src/geophires_x/Economics.py Lines 840 to 850 in 95c37b7
|
…es fixes/tweaks to outputting interest rate unit/percent. TODO: resolve missing interest rate percent sign in SUTRAExample1.out; set discount rate/fixed internal rate to same value if exactly one is provided
@NicholasFry Can you confirm that the highlighted diff in this commit to set Discount Rate and Fixed Internal Rate to the same default value is aligned with the issue as you're describing it? softwareengineerprogrammer@14bc59d#diff-372dea2554a92733824c98709c9bdb5720c183c31762c3795bd3990f069a2f24R841-L1392 (Assuming it is, I will start putting together a PR with it + changes to synchronize DR & FIR iff exactly one is provided, and otherwise warn the user that providing differing values is probably incorrect/inconsistent) |
@kfbeckers Can you confirm that the premise of this issue is correct in that Discount Rate and Fixed Internal Rate should, conceptually, always be the same value? |
This looks correct, yes. It also looks like you fixed the units (% versus decimal) for each as well. These were the changes I was suggesting make sense to me. Thank you.
|
Implementation steps:
|
Steps to resolve are now complete with merge of #301. Thanks for bringing this to our attention @NicholasFry! |
Hi all,
I want to point out that the standardized cost model is using two different inputs for discount rate. This could mislead the user, such as myself, into thinking that the discount rate is being used in the NPV formula, as is the norm. Instead, under the economics.py script, discountrate and FixedInternalRate are defined separately. At present the discount rate is only used in discount vector, which separately tabulates the LCOE, LCOH, LCOC. Unless there is an objective reason that exceeds my understanding of project economics, discountrate should be equal to FixedInternalRate.
The text was updated successfully, but these errors were encountered: