From 77172f18dc9c500df4a15e000305fce4172f75d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20H=C3=B6rsch?= Date: Tue, 13 Mar 2018 10:50:28 +0100 Subject: [PATCH] Fix solar capital costs --- scripts/add_electricity.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/add_electricity.py b/scripts/add_electricity.py index dcca87eb..8e40ab59 100644 --- a/scripts/add_electricity.py +++ b/scripts/add_electricity.py @@ -55,6 +55,9 @@ def load_costs(Nyears=1.): costs = costs.rename(columns={"CO2 intensity": "co2_emissions"}) costs.at['OCGT', 'co2_emissions'] = costs.at['gas', 'co2_emissions'] + costs.at['CCGT', 'co2_emissions'] = costs.at['gas', 'co2_emissions'] + + costs.at['solar', 'capital_cost'] = 0.5*(costs.at['solar-rooftop', 'capital_cost'] + costs.at['solar-utility', 'capital_cost']) def costs_for_storage(store, link1, link2=None, max_hours=1.): capital_cost = link1['capital_cost'] + max_hours * store['capital_cost']