bugfix: correctly read threshold capacity in add_brownfield
This commit is contained in:
parent
6348c904bd
commit
450f75a989
@ -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)
|
* 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)
|
PyPSA-Eur 0.11.0 (25th May 2024)
|
||||||
=====================================
|
=====================================
|
||||||
|
@ -65,7 +65,7 @@ rule add_brownfield:
|
|||||||
H2_retrofit_capacity_per_CH4=config_provider(
|
H2_retrofit_capacity_per_CH4=config_provider(
|
||||||
"sector", "H2_retrofit_capacity_per_CH4"
|
"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"),
|
snapshots=config_provider("snapshots"),
|
||||||
drop_leap_day=config_provider("enable", "drop_leap_day"),
|
drop_leap_day=config_provider("enable", "drop_leap_day"),
|
||||||
carriers=config_provider("electricity", "renewable_carriers"),
|
carriers=config_provider("electricity", "renewable_carriers"),
|
||||||
|
Loading…
Reference in New Issue
Block a user