Skip to content

Commit

Permalink
Merge pull request #170 from nRiccobo/bug/#168-oss-system_capex
Browse files Browse the repository at this point in the history
Quick fix for #168, missing topside costs in substation system_capex
  • Loading branch information
nRiccobo authored Jul 10, 2024
2 parents 39cd770 + e672a1b commit f8d3859
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ORBIT/phases/design/electrical_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,11 @@ def run(self):
"unit_cost": self.substructure_cost,
}

# TODO: cheap fix for topside unit_cost bug #168
self._outputs["offshore_substation_topside"] = {
"deck_space": self.topside_deck_space,
"mass": self.topside_mass,
"unit_cost": self.substation_cost,
"unit_cost": self.substation_cost + self.topside_cost,
}

self._outputs["num_substations"] = self.num_substations
Expand Down

0 comments on commit f8d3859

Please sign in to comment.