Skip to content

Commit

Permalink
* nemo/costs.py (GenCost2023_2022): Remove unused cost class.
Browse files Browse the repository at this point in the history
  (cost_scenarios): Remove 'GenCost2023-in2022'.
  • Loading branch information
bje- committed Feb 23, 2024
1 parent 7995fa3 commit ee9229c
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions nemo/costs.py
Original file line number Diff line number Diff line change
Expand Up @@ -827,27 +827,6 @@ def __init__(self, discount, coal_price, gas_price, ccs_price):
self.totcost_per_kwh = {}


class GenCost2023_2022(GenCost2023):
"""GenCost 2022-23 costs for 2022 (low assumption)."""

def __init__(self, discount, coal_price, gas_price, ccs_price):
"""Construct a cost object."""
GenCost2023.__init__(self, discount, coal_price, gas_price, ccs_price)
table = self.capcost_per_kw
table[tech.Black_Coal] = 5398
table[tech.CCGT] = 1766
table[tech.CCGT_CCS] = 4354
table[tech.CentralReceiver] = 6525
table[tech.Coal_CCS] = 11040
table[tech.OCGT] = 943
table[tech.PV1Axis] = 1572
table[tech.Wind] = 2642
table[tech.WindOffshore] = 5682

table = self.totcost_per_kwh
table[tech.Battery] = {1: 931, 2: 673, 4: 546, 8: 485}


class GenCost2023_2030_CP(GenCost2023):
"""GenCost 2022-23 costs for 2030 (current policies)."""

Expand Down Expand Up @@ -1062,7 +1041,6 @@ def __init__(self, discount, coal_price, gas_price, ccs_price):
'GenCost2022-in2050-CP': GenCost2022_2050_CP,
'GenCost2022-in2050-NZE2050': GenCost2022_2050_NZE2050,
'GenCost2022-in2050-NZE2050+': GenCost2022_2050_NZEPost2050,
'GenCost2023-in2022': GenCost2023_2022,
'GenCost2023-in2030-CP': GenCost2023_2030_CP,
'GenCost2023-in2030-NZE2050': GenCost2023_2030_NZE2050,
'GenCost2023-in2030-NZE2050+': GenCost2023_2030_NZEPost2050,
Expand Down

0 comments on commit ee9229c

Please sign in to comment.