bugfix: correctly read threshold capacity in add_brownfield

This commit is contained in:
Fabian Neumann 2024-06-19 15:54:23 +02:00
parent 6348c904bd
commit 450f75a989
2 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@ Upcoming Release
* Partially revert https://github.com/PyPSA/pypsa-eur/pull/967 to return to old grouping year logic (which was mostly correct)
* Bugfix: Correctly read in threshold capacity below which to remove components from previous planning horizons in :mod:`add_brownfield`.
PyPSA-Eur 0.11.0 (25th May 2024)
=====================================

View File

@ -65,7 +65,7 @@ rule add_brownfield:
H2_retrofit_capacity_per_CH4=config_provider(
"sector", "H2_retrofit_capacity_per_CH4"
),
threshold_capacity=config_provider("existing_capacities", " threshold_capacity"),
threshold_capacity=config_provider("existing_capacities", "threshold_capacity"),
snapshots=config_provider("snapshots"),
drop_leap_day=config_provider("enable", "drop_leap_day"),
carriers=config_provider("electricity", "renewable_carriers"),