Skip to content

Commit

Permalink
Add offshore export cable outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
ppinchuk committed Jun 14, 2024
1 parent 4b9d470 commit 1d1daab
Show file tree
Hide file tree
Showing 2 changed files with 7 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 @@ -35,7 +35,9 @@
SupplyCurveField.LCOT: 11,
SupplyCurveField.TOTAL_LCOE: 12,
}
_REQUIRED_OUTPUT_COLS = {SupplyCurveField.POI_LAT: 13,
_REQUIRED_OUTPUT_COLS = {SupplyCurveField.DIST_EXPORT_KM: 4,
SupplyCurveField.EXPORT_COST_PER_MW: 8,
SupplyCurveField.POI_LAT: 13,
SupplyCurveField.POI_LON: 14,
SupplyCurveField.REINFORCEMENT_POI_LAT: 15,
SupplyCurveField.REINFORCEMENT_POI_LON: 16,
Expand Down
4 changes: 4 additions & 0 deletions reV/utilities/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,8 @@ class SupplyCurveField(FieldEnum):
TRANS_TYPE = "trans_type_m"
TRANS_CAPACITY = "trans_capacity_m"
DIST_SPUR_KM = "dist_km_m" # "dist_spur_km"
DIST_EXPORT_KM = "dist_export_km_m"
EXPORT_COST_PER_MW = "cost_export_usd_per_mw_m"
LCOT = "lcot_m"
TOTAL_TRANS_CAP_COST_PER_MW = "trans_cap_cost_per_mw_m"
N_PARALLEL_TRANS = "n_parallel_trans_m"
Expand Down Expand Up @@ -228,6 +230,7 @@ class _LegacySCAliases(Enum):
TRANS_TYPE = "trans_type", "category"
TRANS_CAPACITY = "trans_capacity", "avail_cap"
DIST_SPUR_KM = "dist_km"
DIST_EXPORT_KM = "dist_export_km"
LCOT = "lcot"
TOTAL_TRANS_CAP_COST_PER_MW = "trans_cap_cost_per_mw"
N_PARALLEL_TRANS = "n_parallel_trans"
Expand All @@ -237,6 +240,7 @@ class _LegacySCAliases(Enum):
REINFORCEMENT_POI_LON = "reinforcement_poi_lon"
REINFORCEMENT_COST_PER_MW = "reinforcement_cost_per_mw"
REINFORCEMENT_DIST_KM = "reinforcement_dist_km"
EXPORT_COST_PER_MW = "cost_export_usd_per_mw"


class ModuleName(str, Enum):
Expand Down

0 comments on commit 1d1daab

Please sign in to comment.