Skip to content
Open
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
e79d9a3
improving carbon manangement modeling
toniseibold May 7, 2026
a3a770a
include co2_network_liquefaction in default config
toniseibold May 7, 2026
019db10
documentation
toniseibold May 7, 2026
6a16ff8
[pypsa-bot] run `generate-config`
pypsa[bot] May 7, 2026
14ba6e7
Merge branch 'master' into carbon_capture
toniseibold May 7, 2026
6058df3
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 7, 2026
9664f71
bug fixing
toniseibold May 7, 2026
11628b8
adjusting capital costs for post combustion capture depending on flue…
toniseibold May 7, 2026
fc2aa92
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 7, 2026
68e02de
Fix unit
toniseibold May 7, 2026
b425f45
bug fix
toniseibold May 7, 2026
d17a13b
bug fix
toniseibold May 7, 2026
2bfaa20
cleaning up and minor fixes
toniseibold May 12, 2026
df9e105
Updated plot_balance_map* scripts to include co2 dense carrier in co2…
bobbyxng May 12, 2026
b89dc7f
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 12, 2026
a14b458
change technology data name in line with technology-data PR
toniseibold May 12, 2026
103366c
making technology-data pr prequisite for this pr
toniseibold May 12, 2026
5041899
addressing change requests of documentation, bugfixing and spatially …
toniseibold May 26, 2026
e80f130
merge master
fneum Jun 9, 2026
577e525
pre-commit fixes
fneum Jun 9, 2026
a8fa479
update data/versions.csv
fneum Jun 9, 2026
dd0e476
Merge branch 'master' into carbon_capture
fneum Jun 28, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions config/config.default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,14 @@ sector:
co2_spatial: true
co2_network: true
co2_network_cost_factor: 1
co2_network_liquefaction: false
cc_fraction: 0.9
cc_capital_cost_factor:
gas: 2.0
biomass: 1.8
coal: 1.8
waste: 1.7
cement: 1.0
hydrogen_underground_storage: true
hydrogen_underground_storage_locations:
- onshore
Expand Down
3 changes: 3 additions & 0 deletions config/plotting.default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -693,6 +693,9 @@ plotting:
DAC: '#ff5270'
co2 stored: '#f2385a'
co2 sequestered: '#f2682f'
co2 dense: '#65334d'
co2 expansion: '#c6ebbe'
co2 compression: '#a9dbb8'
co2: '#f29dae'
co2 vent: '#ffd4dc'
CO2 pipeline: '#f5627f'
Expand Down
24 changes: 24 additions & 0 deletions config/schema.default.json
Original file line number Diff line number Diff line change
Expand Up @@ -4713,11 +4713,23 @@
"description": "The cost factor for the capital cost of the carbon dioxide transmission network.",
"type": "number"
},
"co2_network_liquefaction": {
"default": false,
"description": "Add option for including compressor stations with investment costs and electricity demand for liquefaction step for carbon dioxide before transport.",
"type": "boolean"
},
"cc_fraction": {
"default": 0.9,
"description": "The default fraction of CO2 captured with post-combustion capture.",
"type": "number"
},
"cc_capital_cost_factor": {
"additionalProperties": {
"type": "number"
},
"description": "Size of the carbon capture unit depending on the amount of carbon dioxide in the flue gas. The more CO2, the smaller the capture unit and thus the lower the capital cost factor. The default values are based on the DEA technology-data report.",
"type": "object"
},
"hydrogen_underground_storage": {
"default": true,
"description": "Add options for storing hydrogen underground. Storage potential depends regionally.",
Expand Down Expand Up @@ -11162,11 +11174,23 @@
"description": "The cost factor for the capital cost of the carbon dioxide transmission network.",
"type": "number"
},
"co2_network_liquefaction": {
"default": false,
"description": "Add option for including compressor stations with investment costs and electricity demand for liquefaction step for carbon dioxide before transport.",
"type": "boolean"
},
"cc_fraction": {
"default": 0.9,
"description": "The default fraction of CO2 captured with post-combustion capture.",
"type": "number"
},
"cc_capital_cost_factor": {
"additionalProperties": {
"type": "number"
},
"description": "Size of the carbon capture unit depending on the amount of carbon dioxide in the flue gas. The more CO2, the smaller the capture unit and thus the lower the capital cost factor. The default values are based on the DEA technology-data report.",
"type": "object"
},
"hydrogen_underground_storage": {
"default": true,
"description": "Add options for storing hydrogen underground. Storage potential depends regionally.",
Expand Down
5 changes: 4 additions & 1 deletion doc/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ Release Notes

.. Upcoming Release
.. =================

* Adding option to include the compression step in carbon dioxide transport before transporting in dense phase and including electricity demand for post combustion carbon capture. Adjusting the capital costs for post combustion capture that differs depending on the carbon dioxide percentage in the flue gas.

* Fix: Re-introduce capital costs for non-bicharging discharge links in ``add_electricity.py``, e.g. fuel cells.

* The lockfile update workflow now excludes packages published within the last 7 days to reduce the risk of pulling in broken or yanked releases (https://github.com/PyPSA/pypsa-eur/pull/2130).

* The industry reference year and the ammonia production data have been updated to 2023 (https://github.com/PyPSA/pypsa-eur/pull/2103)
* The industry reference year and the ammonia production data have been updated to 2023 (https://github.com/PyPSA/pypsa-eur/pull/2103)

* refactor: Use scripts path provider consistently (https://github.com/PyPSA/pypsa-eur/pull/2093).

Expand Down
15 changes: 14 additions & 1 deletion scripts/lib/validation/config/sector.py
Original file line number Diff line number Diff line change
Expand Up @@ -748,11 +748,24 @@ class SectorConfig(BaseModel):
1,
description="The cost factor for the capital cost of the carbon dioxide transmission network.",
)
co2_network_liquefaction: bool = Field(
False,
description="Add option for including compressor stations with investment costs and electricity demand for liquefaction step for carbon dioxide before transport.",
)
cc_fraction: float = Field(
0.9,
description="The default fraction of CO2 captured with post-combustion capture.",
)

cc_capital_cost_factor: dict[str, float] = Field(
default_factory=lambda: {
"gas": 2.0,
"biomass": 1.8,
"coal": 1.8,
"waste": 1.7,
"cement": 1.0,
Comment thread
toniseibold marked this conversation as resolved.
},
description="Size of the carbon capture unit depending on the amount of carbon dioxide in the flue gas. The more CO2, the smaller the capture unit and thus the lower the capital cost factor. The default values are based on the DEA technology-data report.",
Comment thread
toniseibold marked this conversation as resolved.
Outdated
)
hydrogen_underground_storage: bool = Field(
True,
description="Add options for storing hydrogen underground. Storage potential depends regionally.",
Expand Down
Loading
Loading