config: make storage modelling with Store and Link default (#205)

This commit is contained in:
Fabian Neumann 2020-11-25 13:18:30 +01:00 committed by GitHub
parent 5240b090d9
commit de0478968c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View File

@ -41,8 +41,8 @@ electricity:
extendable_carriers:
Generator: []
StorageUnit: [battery, H2]
Store: [] # battery, H2
StorageUnit: [] # battery, H2
Store: [battery, H2]
Link: []
max_hours:

View File

@ -38,8 +38,8 @@ electricity:
extendable_carriers:
Generator: [OCGT]
StorageUnit: [battery, H2]
Store: [] #battery, H2
StorageUnit: [] #battery, H2
Store: [battery, H2]
Link: []
max_hours:

View File

@ -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 <https://github.com/PyPSA/pypsa-eur/pull/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 <https://github.com/PyPSA/pypsa-eur/pull/205>`_).
PyPSA-Eur 0.2.0 (8th June 2020)
==================================