Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianGeis committed Feb 23, 2024
1 parent f0f448c commit bd6a560
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/compile_cost_assumptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ def clean_up_units(tech_data, value_column="", source=""):

if "methanolisation" in tech_data.index:
tech_data = tech_data.sort_index()
tech_data.loc[("methanolisation", "Variable O&M"), "unit"] = "EUR/MWh_MeOH"
tech_data.loc[('methanolisation', 'Variable O&M'), "unit"] = "EUR/MWh_MeOH"

tech_data.unit = tech_data.unit.str.replace("\)", "")
return tech_data
Expand Down Expand Up @@ -1292,7 +1292,7 @@ def add_carbon_capture(data, tech_data):
data.loc[(tech,"capture_rate"), 'unit'] = 'per unit'


for tech in ['direct air capture','cement capture', 'biomass CHP capture']:
for tech in ['direct air capture', 'cement capture', 'biomass CHP capture']:

data.loc[(tech,"investment"), years] = tech_data.loc[(tech,'Specific investment'), years].values[0]*1e6
data.loc[(tech,"investment"), 'unit'] = 'EUR/(tCO2/h)'
Expand Down

0 comments on commit bd6a560

Please sign in to comment.