PyPSA / pypsa-ariadne

High resolution, sector-coupled model of the German Energy System
https://ariadneprojekt.de/en/model-documentation-pypsa/
MIT License
6 stars 4 forks source link

Refinements of Wasserstoff-Kernnetz #9

Closed fneum closed 5 months ago

fneum commented 5 months ago
JulianGeis commented 5 months ago

The overlap with the ipcei pipelines lokks good: IPCEI: image

Model: image

JulianGeis commented 5 months ago

Tasks of refinement are build in:

  1. If kernnetz pipeline is build in period, the corresponding gas pipeline capacity is removed if it exists
  2. build_year is considered
  3. until 2030 H2 pipes in Germany are not extendable, however kernnetz exists
  4. from 2030 all H2 pipelines are extedable, The kernnetz capacities are not implemented as p_nom_min, but as additional lines which is not extendable.

What I checked:

checklist

2030

import cartopy.crs as ccrs import pandas as pd

fig, ax = plt.subplots(1, 1, figsize=(20,20), subplot_kw={"projection":ccrs.PlateCarree()}) n_f.links = n_f.links.loc[(n_f.links.carrier == "H2 pipeline") & (n_f.links.index.str.contains("kernnetz")), :]

n_f.plot(ax=ax, line_widths=0, link_widths=n_f.links.p_nom/5e3)



- the reduction of retrofitted and gas pipeline capacity is applied don the right lines
- To run the model with H2 retrofit those fixes have to be made to pypsa-eur submoduls branch:
- https://github.com/daniel-rdt/pypsa-eur/blame/44d9337b2e826aaa25b285784b3efa960bdb96e1/scripts/plot_network.py#L325-L337
- https://github.com/daniel-rdt/pypsa-eur/blame/44d9337b2e826aaa25b285784b3efa960bdb96e1/scripts/plot_network.py#L263-L268