From 8b0600b02cbe674d53190f2d570418f409a719ce Mon Sep 17 00:00:00 2001 From: Fabian Neumann Date: Fri, 24 May 2024 10:40:57 +0200 Subject: [PATCH] disable everywhere_powerplants by default (closes #1072) --- config/config.default.yaml | 2 +- doc/release_notes.rst | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/config/config.default.yaml b/config/config.default.yaml index 6974d382d..d64a36c5e 100644 --- a/config/config.default.yaml +++ b/config/config.default.yaml @@ -113,7 +113,7 @@ electricity: powerplants_filter: (DateOut >= 2023 or DateOut != DateOut) and not (Country == 'Germany' and Fueltype == 'Nuclear') custom_powerplants: false - everywhere_powerplants: [nuclear, oil, OCGT, CCGT, coal, lignite, geothermal, biomass] + everywhere_powerplants: [] conventional_carriers: [nuclear, oil, OCGT, CCGT, coal, lignite, geothermal, biomass] renewable_carriers: [solar, solar-hsat, onwind, offwind-ac, offwind-dc, offwind-float, hydro] diff --git a/doc/release_notes.rst b/doc/release_notes.rst index 3bc77f400..a7e91f97b 100644 --- a/doc/release_notes.rst +++ b/doc/release_notes.rst @@ -10,6 +10,8 @@ Release Notes Upcoming Release ================ +* Disable option ``electricity: everywhere_powerplants``` by default to save memory in :mod:`simplify_network`. + * Non-essential example configuration files have been moved to ``config/examples``.