Skip to content
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
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
1 change: 1 addition & 0 deletions config/config.default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -873,6 +873,7 @@ sector:
co2_spatial: true
co2_network: true
co2_network_cost_factor: 1
co2_network_liquefaction: false
cc_fraction: 0.9
hydrogen_underground_storage: true
hydrogen_underground_storage_locations:
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
10 changes: 10 additions & 0 deletions config/schema.default.json
Original file line number Diff line number Diff line change
Expand Up @@ -4713,6 +4713,11 @@
"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.",
Expand Down Expand Up @@ -11162,6 +11167,11 @@
"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.",
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.
Comment thread
toniseibold marked this conversation as resolved.
Outdated

* 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
4 changes: 4 additions & 0 deletions scripts/lib/validation/config/sector.py
Original file line number Diff line number Diff line change
Expand Up @@ -748,6 +748,10 @@ 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.",
Expand Down
Loading