From 9c78d6591d9f0a5043ce4b7e88516cff7d03dd2f Mon Sep 17 00:00:00 2001 From: Heronimonimo Date: Mon, 18 Feb 2019 18:36:56 +0100 Subject: [PATCH] Add CCGT to the weight factor for conventional carriers --- scripts/cluster_network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cluster_network.py b/scripts/cluster_network.py index 7fb339fc..afcb282c 100644 --- a/scripts/cluster_network.py +++ b/scripts/cluster_network.py @@ -30,7 +30,7 @@ def normed(x): return (x/x.sum()).fillna(0.) def weighting_for_country(n, x): - conv_carriers = {'OCGT', 'PHS', 'hydro'} + conv_carriers = {'OCGT','CCGT','PHS', 'hydro'} gen = (n .generators.loc[n.generators.carrier.isin(conv_carriers)] .groupby('bus').p_nom.sum()