FT and electrolyis waste heat for DH as float
This commit is contained in:
parent
b6d11bba6f
commit
e932466b05
@ -571,12 +571,12 @@ sector:
|
||||
min_part_load_fischer_tropsch: 0.5
|
||||
min_part_load_methanolisation: 0.3
|
||||
min_part_load_methanation: 0.3
|
||||
use_fischer_tropsch_waste_heat: true
|
||||
use_fischer_tropsch_waste_heat: 0.2
|
||||
use_haber_bosch_waste_heat: true
|
||||
use_methanolisation_waste_heat: true
|
||||
use_methanation_waste_heat: true
|
||||
use_fuel_cell_waste_heat: true
|
||||
use_electrolysis_waste_heat: true
|
||||
use_electrolysis_waste_heat: 0.2
|
||||
electricity_transmission_grid: true
|
||||
electricity_distribution_grid: true
|
||||
electricity_distribution_grid_cost_factor: 1.0
|
||||
|
@ -3350,7 +3350,7 @@ def add_waste_heat(n):
|
||||
)
|
||||
n.links.loc[urban_central + " Fischer-Tropsch", "efficiency3"] = (
|
||||
0.95 - n.links.loc[urban_central + " Fischer-Tropsch", "efficiency"]
|
||||
)
|
||||
) * options["use_fischer_tropsch_waste_heat"]
|
||||
|
||||
if options["use_methanation_waste_heat"] and "Sabatier" in link_carriers:
|
||||
n.links.loc[urban_central + " Sabatier", "bus3"] = (
|
||||
@ -3399,7 +3399,7 @@ def add_waste_heat(n):
|
||||
)
|
||||
n.links.loc[urban_central + " H2 Electrolysis", "efficiency2"] = (
|
||||
0.84 - n.links.loc[urban_central + " H2 Electrolysis", "efficiency"]
|
||||
)
|
||||
) * options["use_electrolysis_waste_heat"]
|
||||
|
||||
if options["use_fuel_cell_waste_heat"] and "H2 Fuel Cell" in link_carriers:
|
||||
n.links.loc[urban_central + " H2 Fuel Cell", "bus2"] = (
|
||||
|
Loading…
Reference in New Issue
Block a user