From de0478968c9e271fdb8f4c766b05240a80fc31dc Mon Sep 17 00:00:00 2001 From: Fabian Neumann Date: Wed, 25 Nov 2020 13:18:30 +0100 Subject: [PATCH] config: make storage modelling with Store and Link default (#205) --- config.default.yaml | 4 ++-- config.tutorial.yaml | 4 ++-- doc/release_notes.rst | 2 ++ 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/config.default.yaml b/config.default.yaml index 0913282a..ff7a503f 100755 --- a/config.default.yaml +++ b/config.default.yaml @@ -41,8 +41,8 @@ electricity: extendable_carriers: Generator: [] - StorageUnit: [battery, H2] - Store: [] # battery, H2 + StorageUnit: [] # battery, H2 + Store: [battery, H2] Link: [] max_hours: diff --git a/config.tutorial.yaml b/config.tutorial.yaml index 7d577bc9..a51c2202 100755 --- a/config.tutorial.yaml +++ b/config.tutorial.yaml @@ -38,8 +38,8 @@ electricity: extendable_carriers: Generator: [OCGT] - StorageUnit: [battery, H2] - Store: [] #battery, H2 + StorageUnit: [] #battery, H2 + Store: [battery, H2] Link: [] max_hours: diff --git a/doc/release_notes.rst b/doc/release_notes.rst index dafbd200..85a7337b 100644 --- a/doc/release_notes.rst +++ b/doc/release_notes.rst @@ -39,6 +39,8 @@ Upcoming Release * The mappings for clustered lines and buses produced by the ``simplify_network`` and ``cluster_network`` rules changed from Hierarchical Data Format (.h5) to Comma-Separated Values format (.csv) (`#198 `_) +* Modelling hydrogen and battery storage with Store and Link components is now the default, rather than using StorageUnit components with fixed power-to-energy ratio (`#205 `_). + PyPSA-Eur 0.2.0 (8th June 2020) ==================================