Skip to content
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 unit cost of mooring system and floating substructure to be the… #47

Merged
merged 1 commit into from
Sep 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions NRWAL/analysis_library/osw_2023/semi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
# for a 15 MW turbine, the semisub is roughly 1.8e7 USD. For a 20 MW, semisub is roughly 2.2e7 USD.

substructure:
4240000 * turbine_capacity ** 0.608 - 4000000
(600/turbine_capacity) * (4240000 * turbine_capacity ** 0.608 - 4000000)

# foundation cost is derived from mooring line and anchor equation costs and output by find_mooring_system_cost_curve.py
# remains to be updated because those equations are from 2015
foundation:
6095.315 * depth + 1810405.103
(600/turbine_capacity) * (6095.315 * depth + 1810405.103)
Loading