Skip to content

Commit

Permalink
Adding transport of biomass
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias157 committed Oct 11, 2024
1 parent 8cadc89 commit d75e38e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/assumptions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@ resources:
woodpot: 40 # PJ, potential of woody biomass for energy, Bramstoft et al. 2020
strawpot: 54 # PJ, potential of agro waste for energy, Bramstoft et al. 2020
biogaspot: 10.56 # PJ, potential of biogas for energy assuming 60% conversion efficiency (DEA tech catalogue of biogas plant) and manure potential (Bramstoft et al. 2020)
woodimport: False # Allow import of woody biomass to major cities?
woodimport: False # Allow import of woody biomass to major cities?
biotransportcost: 0.0153 # Cost of biomass transport in €/GJ/km, Rosendal et al 2024
14 changes: 13 additions & 1 deletion src/preprocessing
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ rule all:
f"{out_path}WND_VAR_T.inc",
f'{out_path}OFFSHORE_WND_VAR_T.inc',
f"{out_path}GKFX.inc",
f"{out_path}GMAXF.inc"
f"{out_path}GMAXF.inc",
f"{out_path}FUELTRANSPORT_COST.inc"
]

rule create_conversion_dictionaries:
Expand Down Expand Up @@ -234,6 +235,17 @@ rule grids:
python {modules_path}grids.py --nordsoeen-connection={params.nordsoeen_connection}"
"""

rule biomass_transport:
input:
f"{data_path}BalmorelData/municipal_connectivity.nc"
output:
f"{out_path}FUELTRANSPORT_COST.inc"
params:
transport_cost=config['resources']['biotransportcost']
shell:
"""
python {modules_path}biomass_transport.py transport {params.transport_cost}
"""

# 7. Other
rule onshore_vre:
Expand Down

0 comments on commit d75e38e

Please sign in to comment.