-
Notifications
You must be signed in to change notification settings - Fork 26
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
Add turbine Capex #196
Merged
Merged
Add turbine Capex #196
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
remove rounding in openmdao api
crookp
added a commit
that referenced
this pull request
Jan 27, 2025
Accidentally merged into master This reverts commit e81c511.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add a calculation for the cost of the turbines themselves, in addition to the other BOS costs to LandBOSSE. The reason for this change is to make the output match the format provided by ORBIT.
The calculation is extremely straightforward and requires a CapEx assumption as an input ($/kW)
turbine_cost = capex * num_turbines * turbine_capacity
I have updated the
project_list.xlsx
input to include a column called 'Turbine Capex (USD/kW)' to input this value. If this column is not specified, the capex cost is assumed to be zero. Alternatively, when using landbosse_runner.py it will accept a turbine_capex argument.The implementation of the TurbineCost class is quite messy, but it matches the other LandBOSSE cost modules.