Skip to content

Commit 155ddea

Browse files
committed
remove breakpoint, remove FOM adjustment
1 parent 595ec7e commit 155ddea

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/compile_cost_assumptions.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ def adjust_for_inflation(costs, techs, ref_year, col):
657657
"""
658658

659659
inflation = (1 + snakemake.config['rate_inflation'])**(ref_year - snakemake.config['eur_year'])
660-
paras = ["investment", "VOM", "fixed", "fuel"]
660+
paras = ["investment", "VOM", "fuel"]
661661
filter_i = costs.index.get_level_values(0).isin(techs) & costs.index.get_level_values(1).isin(paras)
662662

663663
costs.loc[filter_i, col] = costs.loc[filter_i, col].div(inflation.loc[filter_i], axis=0)
@@ -2275,7 +2275,6 @@ def geometric_series(nominator, denominator=1, number_of_terms=1, start=1):
22752275
costs_tot = unify_diw(costs_tot)
22762276
costs_tot.drop("fixed", level=1, inplace=True)
22772277

2278-
breakpoint()
22792278
# adjust for inflation
22802279
techs = costs_tot.index.get_level_values(0).unique()
22812280
costs_tot = adjust_for_inflation(data, techs, costs_tot.currency_year, years)

0 commit comments

Comments
 (0)