-
Notifications
You must be signed in to change notification settings - Fork 28
Add turbine cost - develop branch #197
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
Merged
Merged
Conversation
This file contains hidden or 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
Release 2.3.4
Release 2.3.5 All automated and manual testing has passed on this PR. Integrating into `master` branch.
Release 2.4.0 contains a siimplified input spreadsheet for first-time users of LandBOSSE.
Release 2.4.1: This pull request fixes some obsolete Pandas syntax.
Batch of fixes and updates from old branches
add turbine cost calculation (based on simple capex)
Accidentally merged into master This reverts commit e81c511.
Member
|
Updates and improvements to LandBOSSE are much appreciated! Thank you for your efforts here. If there are changes to the API / input variable list. It would be helpful to keep the openmdao interface up-to-date too. I can help with this if preferred. |
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.xlsxinput 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 usinglandbosse_runner.pyit will accept aturbine_capexargument.The implementation of the TurbineCost class is quite messy, but it matches the other LandBOSSE cost modules.