add home battery storage and inverter costs (#99)

* add home battery storage and inverter costs

* Update prepare_sector_network.py

* add release note

Co-authored-by: Fabian Neumann <fabian.neumann@outlook.de>
This commit is contained in:
lisazeyen 2021-07-01 20:16:12 +02:00 committed by GitHub
parent 1fc1d2a17d
commit ca685a10af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -57,6 +57,7 @@ Future release
* New dependencies: ``tqdm``, ``atlite>=0.2.4``, ``pytz`` and ``geopy`` (optional).
These are included in the environment specifications of PyPSA-Eur.
* Consistent use of ``__main__`` block and further unspecific code cleaning.
* Distinguish costs for home battery storage and inverter from utility-scale battery costs.

View File

@ -787,7 +787,7 @@ def insert_electricity_distribution_grid(n, costs):
e_cyclic=True,
e_nom_extendable=True,
carrier="home battery",
capital_cost=costs.at['battery storage', 'fixed'],
capital_cost=costs.at['home battery storage', 'fixed'],
lifetime=costs.at['battery storage', 'lifetime']
)
@ -797,7 +797,7 @@ def insert_electricity_distribution_grid(n, costs):
bus1=nodes + " home battery",
carrier="home battery charger",
efficiency=costs.at['battery inverter', 'efficiency']**0.5,
capital_cost=costs.at['battery inverter', 'fixed'],
capital_cost=costs.at['home battery inverter', 'fixed'],
p_nom_extendable=True,
lifetime=costs.at['battery inverter', 'lifetime']
)