Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion config/config.default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ solar_thermal:
# docs in https://pypsa-eur.readthedocs.io/en/latest/configuration.html#existing_capacities
existing_capacities:
grouping_years_power:
- 1920
- 1900
- 1950
- 1955
- 1960
Expand Down
2 changes: 2 additions & 0 deletions doc/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Release Notes
.. Upcoming Release
.. =================

* Fix: Lower the lower bound used to group the power plants in ``add_existing_baseyear`` (https://github.com/PyPSA/pypsa-eur/pull/2097). This now includes all power plants built since 1900.

PyPSA-Eur v2026.02.0 (18th February 2026)
=========================================

Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/validation/config/existing_capacities.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class ExistingCapacitiesConfig(ConfigModel):

grouping_years_power: list[int] = Field(
default_factory=lambda: [
1920,
1900,
1950,
1955,
1960,
Expand Down