add option to use electrolysis waste heat in district heating
This commit is contained in:
parent
9be7afffcd
commit
b1b289fc45
@ -263,6 +263,7 @@ sector:
|
||||
ammonia: false # can be false (no NH3 carrier), true (copperplated NH3), "regional" (regionalised NH3 without network)
|
||||
use_fischer_tropsch_waste_heat: true
|
||||
use_fuel_cell_waste_heat: true
|
||||
use_electrolysis_waste_heat: false
|
||||
electricity_distribution_grid: true
|
||||
electricity_distribution_grid_cost_factor: 1.0 #multiplies cost in data/costs.csv
|
||||
electricity_grid_connection: true # only applies to onshore wind and utility PV
|
||||
|
@ -2470,6 +2470,11 @@ def add_waste_heat(n):
|
||||
n.links.loc[urban_central + " Fischer-Tropsch", "bus3"] = urban_central + " urban central heat"
|
||||
n.links.loc[urban_central + " Fischer-Tropsch", "efficiency3"] = 0.95 - n.links.loc[urban_central + " Fischer-Tropsch", "efficiency"]
|
||||
|
||||
# TODO integrate useable waste heat efficiency into technology-data from DEA
|
||||
if options.get('use_electrolysis_waste_heat', False):
|
||||
n.links.loc[urban_central + " H2 Electrolysis", "bus2"] = urban_central + " urban central heat"
|
||||
n.links.loc[urban_central + " H2 Electrolysis", "efficiency2"] = 0.84 - n.links.loc[urban_central + " H2 Electrolysis", "efficiency"]
|
||||
|
||||
if options['use_fuel_cell_waste_heat']:
|
||||
n.links.loc[urban_central + " H2 Fuel Cell", "bus2"] = urban_central + " urban central heat"
|
||||
n.links.loc[urban_central + " H2 Fuel Cell", "efficiency2"] = 0.95 - n.links.loc[urban_central + " H2 Fuel Cell", "efficiency"]
|
||||
|
Loading…
Reference in New Issue
Block a user