Skip to content

Commit

Permalink
Merge pull request #260 from PyPSA/pellet-boiler
Browse files Browse the repository at this point in the history
add biomass pellet boiler for decentral heating
  • Loading branch information
lisazeyen authored Aug 5, 2022
2 parents 654ef43 + 9752b4b commit d9ac089
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
2 changes: 2 additions & 0 deletions config.default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ sector:
central: 180
boilers: true
oil_boilers: false
biomass_boiler: true
chp: true
micro_chp: false
solar_thermal: true
Expand Down Expand Up @@ -511,6 +512,7 @@ plotting:
solid biomass for industry CC: '#47411c'
solid biomass for industry co2 from atmosphere: '#736412'
solid biomass for industry co2 to stored: '#47411c'
biomass boiler: '#8A9A5B'
biomass to liquid: '#32CD32'
BioSNG: '#123456'
# power transmission
Expand Down
7 changes: 5 additions & 2 deletions doc/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,12 @@ incorporates retrofitting options to hydrogen.

**New features and functionality**

* option for BioSNG (methane from biomass) with and without CC is added

* option for BtL (Biomass to liquid fuel/oil) with and without CC is added
* Add option for biomass boilers (wood pellets) for decentral heating

* Add option for BioSNG (methane from biomass) with and without CC

* Add option for BtL (Biomass to liquid fuel/oil) with and without CC

* Units are assigned to the buses. These only provide a better understanding. The specifications of the units are not taken into account in the optimisation, which means that no automatic conversion of units takes place.

Expand Down
17 changes: 17 additions & 0 deletions scripts/prepare_sector_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -1522,6 +1522,7 @@ def add_heat(n, costs):
lifetime=costs.at[key, 'lifetime']
)


if options["solar_thermal"]:

n.add("Carrier", name + " solar thermal")
Expand Down Expand Up @@ -1860,6 +1861,22 @@ def add_biomass(n, costs):
lifetime=costs.at[key, 'lifetime']
)

if options["pellet_boiler"]:
#TODO: Add surcharge for pellets
nodes_heat = create_nodes_for_heat_sector()[0]
for name in ["residential rural", "services rural",
"residential urban decentral", "services urban decentral"]:

n.madd("Link",
nodes_heat[name] + f" {name} biomass boiler",
p_nom_extendable=True,
bus0=spatial.biomass.df.loc[nodes_heat[name], "nodes"].values,
bus1=nodes_heat[name] + f" {name} heat",
carrier=name + " biomass boiler",
efficiency=costs.at['biomass boiler', 'efficiency'],
capital_cost=costs.at['biomass boiler', 'efficiency'] * costs.at['biomass boiler', 'fixed'],
lifetime=costs.at['biomass boiler', 'lifetime']
)

#Solid biomass to liquid fuel
if options["biomass_to_liquid"]:
Expand Down

0 comments on commit d9ac089

Please sign in to comment.