From 289c25268837f686459ed2633c507c243a0fcd69 Mon Sep 17 00:00:00 2001 From: lisazeyen Date: Thu, 4 Aug 2022 17:42:57 +0200 Subject: [PATCH] remove link to co2 atmosphere --- scripts/prepare_sector_network.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/prepare_sector_network.py b/scripts/prepare_sector_network.py index 386b6aaa..a6e1e8be 100644 --- a/scripts/prepare_sector_network.py +++ b/scripts/prepare_sector_network.py @@ -1521,7 +1521,7 @@ def add_heat(n, costs): capital_cost=costs.at[key, 'efficiency'] * costs.at[key, 'fixed'], lifetime=costs.at[key, 'lifetime'] ) - + if options["biomass_boiler"] and name not in ["urban central"]: #TODO: Add surcharge for pellets n.madd("Link", @@ -1529,10 +1529,8 @@ def add_heat(n, costs): p_nom_extendable=True, bus0=spatial.biomass.df.loc[nodes[name], "nodes"].values, bus1=nodes[name] + f" {name} heat", - bus2="co2 atmosphere", carrier=name + " biomass boiler", efficiency=costs.at['biomass boiler', 'efficiency'], - efficiency2=costs.at['solid biomass', 'CO2 intensity']-costs.at['solid biomass', 'CO2 intensity'], capital_cost=costs.at['biomass boiler', 'efficiency'] * costs.at['biomass boiler', 'fixed'], lifetime=costs.at['biomass boiler', 'lifetime'] )