From 1c192253bf023b1906e83f8f0d0476074b865de7 Mon Sep 17 00:00:00 2001 From: Heronimonimo Date: Mon, 18 Feb 2019 17:37:29 +0100 Subject: [PATCH] Remove capital costs for existing conventional capacity All the existing conventional capacity has sunk capital costs. Therefore these should be put to 0. --- scripts/add_electricity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/add_electricity.py b/scripts/add_electricity.py index 13e8bf5d..29164061 100644 --- a/scripts/add_electricity.py +++ b/scripts/add_electricity.py @@ -227,7 +227,7 @@ def attach_conventional_generators(n, costs, ppl): p_nom=p['p_nom'], efficiency=costs.at[tech, 'efficiency'], marginal_cost=costs.at[tech, 'marginal_cost'], - capital_cost=costs.at[tech, 'capital_cost']) + capital_cost=0) def attach_hydro(n, costs, ppl):