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 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.