Skip to content

Commit

Permalink
* nemo/costs/gencost2025.py: Include common costs.
Browse files Browse the repository at this point in the history
  • Loading branch information
bje- committed Dec 11, 2024
1 parent 4c5a8a3 commit 06ed799
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions nemo/costs/gencost2025.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,15 @@ def __init__(self, discount, coal_price, gas_price, ccs_price):
"""Construct a cost object."""
GenCost.__init__(self, discount, coal_price, gas_price, ccs_price)

# Fixed O&M (FOM) costs. Clear all base costs as 2025 costs
# have changed considerably.
self.fixed_om_costs.clear()
self.fixed_om_costs.update({
# Fixed O&M (FOM) costs
# Clear all base costs as 2025 costs have changed considerably.
self.fixed_om_costs = {
tech.DemandResponse: 0,
tech.Diesel: 0,
tech.Hydro: 0,
tech.PumpedHydroPump: 0,
tech.PumpedHydroTurbine: 0,

tech.Black_Coal: 64.9,
tech.CCGT: 15,
tech.CCGT_CCS: 22.5,
Expand All @@ -45,7 +50,14 @@ def __init__(self, discount, coal_price, gas_price, ccs_price):
tech.WindOffshore: 174.6})

# Variable O&M (VOM) costs
self.opcost_per_mwh.update({
# Clear all base costs as 2025 costs have changed considerably.
self.opcost_per_mwh = {
# a reasonable estimate of diesel VOM
tech.Diesel: 8,
tech.Hydro: 0,
tech.PumpedHydroPump: 0,
tech.PumpedHydroTurbine: 0,

tech.Black_Coal: 4.7,
tech.CCGT: 4.1,
tech.CCGT_CCS: 8.0,
Expand Down

0 comments on commit 06ed799

Please sign in to comment.