bugfix: take district heating progress not potential

This commit is contained in:
Fabian Neumann 2021-10-04 14:28:59 +02:00
parent 1f8c1678b8
commit 19d128aafd

View File

@ -1697,7 +1697,7 @@ def create_nodes_for_heat_sector():
axis=1).max(axis=1) axis=1).max(axis=1)
# difference of max potential and today's share of district heating # difference of max potential and today's share of district heating
diff = (urban_fraction * central_fraction) - dist_fraction_node diff = (urban_fraction * central_fraction) - dist_fraction_node
progress = get(options["district_heating"]["potential"], investment_year) progress = get(options["district_heating"]["progress"], investment_year)
dist_fraction_node += diff * progress dist_fraction_node += diff * progress
print( print(
"The current district heating share compared to the maximum", "The current district heating share compared to the maximum",