diff --git a/doc/release_notes.rst b/doc/release_notes.rst index 72ddadbc..bd99ce16 100644 --- a/doc/release_notes.rst +++ b/doc/release_notes.rst @@ -59,6 +59,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. diff --git a/scripts/prepare_sector_network.py b/scripts/prepare_sector_network.py index 6e498b63..fa485e6a 100644 --- a/scripts/prepare_sector_network.py +++ b/scripts/prepare_sector_network.py @@ -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'] )