Skip to content

Commit

Permalink
Allow trans_cap_cost_per_mw to take priority
Browse files Browse the repository at this point in the history
  • Loading branch information
ppinchuk committed May 28, 2024
1 parent d09fba4 commit a9ba6e9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion reV/supply_curve/supply_curve.py
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,9 @@ def compute_total_lcoe(
Flag to consider friction layer on LCOE when "mean_lcoe_friction"
is in the sc points input, by default True
"""
if "trans_cap_cost" not in self._trans_table:
if "trans_cap_cost_per_mw" in self._trans_table:
cost = self._trans_table["trans_cap_cost_per_mw"]
elif "trans_cap_cost" not in self._trans_table:
scc = self._sc_capacity_col
cost = self._compute_trans_cap_cost(
self._trans_table,
Expand Down

0 comments on commit a9ba6e9

Please sign in to comment.