costs: Add costs for submarine HVDC based on own analysis

This commit is contained in:
Jonas Hörsch 2018-09-03 23:09:11 +02:00
parent ba3a008018
commit 21267a59e0
2 changed files with 7 additions and 1 deletions

View File

@ -175,6 +175,9 @@ HVAC overhead,2030,FOM,2,%/year,Hagspiel
HVDC overhead,2030,investment,400,EUR/MW/km,Hagspiel HVDC overhead,2030,investment,400,EUR/MW/km,Hagspiel
HVDC overhead,2030,lifetime,40,years,Hagspiel HVDC overhead,2030,lifetime,40,years,Hagspiel
HVDC overhead,2030,FOM,2,%/year,Hagspiel HVDC overhead,2030,FOM,2,%/year,Hagspiel
HVDC submarine,2030,investment,2000,EUR/MW/km,Own analysis of European submarine HVDC projects since 2000
HVDC submarine,2030,lifetime,40,years,Hagspiel
HVDC submarine,2030,FOM,2,%/year,Hagspiel
HVDC inverter pair,2030,investment,150000,EUR/MW,Hagspiel HVDC inverter pair,2030,investment,150000,EUR/MW,Hagspiel
HVDC inverter pair,2030,lifetime,40,years,Hagspiel HVDC inverter pair,2030,lifetime,40,years,Hagspiel
HVDC inverter pair,2030,FOM,2,%/year,Hagspiel HVDC inverter pair,2030,FOM,2,%/year,Hagspiel

1 technology year parameter value unit source
175 HVDC overhead 2030 investment 400 EUR/MW/km Hagspiel
176 HVDC overhead 2030 lifetime 40 years Hagspiel
177 HVDC overhead 2030 FOM 2 %/year Hagspiel
178 HVDC submarine 2030 investment 2000 EUR/MW/km Own analysis of European submarine HVDC projects since 2000
179 HVDC submarine 2030 lifetime 40 years Hagspiel
180 HVDC submarine 2030 FOM 2 %/year Hagspiel
181 HVDC inverter pair 2030 investment 150000 EUR/MW Hagspiel
182 HVDC inverter pair 2030 lifetime 40 years Hagspiel
183 HVDC inverter pair 2030 FOM 2 %/year Hagspiel

View File

@ -143,7 +143,10 @@ def update_transmission_costs(n, costs, length_factor=1.0):
dc_b = n.links.carrier == 'DC' dc_b = n.links.carrier == 'DC'
n.links.loc[dc_b, 'capital_cost'] = (n.links.loc[dc_b, 'length'] * length_factor * n.links.loc[dc_b, 'capital_cost'] = (n.links.loc[dc_b, 'length'] * length_factor *
costs.at['HVDC overhead', 'capital_cost'] + ((1. - n.links.loc[dc_b, 'underwater_fraction']) *
costs.at['HVDC overhead', 'capital_cost'] +
n.links.loc[dc_b, 'underwater_fraction'] *
costs.at['HVDC submarine', 'capital_cost']) +
costs.at['HVDC inverter pair', 'capital_cost']) costs.at['HVDC inverter pair', 'capital_cost'])
# ### Generators # ### Generators