Skip to content

Commit

Permalink
Drop biomass boiler since the target value is always NaN
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaraBuettner committed Jan 16, 2025
1 parent 01d2b93 commit 20bfc79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/egon/data/datasets/heat_supply/individual_heating.py
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ def cascade_per_technology(
{"bus_id": "mv_grid_id", "share": "capacity"}, axis=1, inplace=True
)

elif tech.index in ("gas_boiler", "resistive_heater", "solar_thermal", "biomass_boiler"):
elif tech.index in ("gas_boiler", "resistive_heater", "solar_thermal"):
# Select target value for Germany
target = db.select_dataframe(
f"""
Expand Down Expand Up @@ -709,9 +709,9 @@ def cascade_heat_supply_indiv(scenario, distribution_level, plotting=True):
)
elif scenario == "eGon100RE":
technologies = pd.DataFrame(
index=["heat_pump", "resistive_heater", "solar_thermal", "biomass_boiler", "gas_boiler", "oil_boiler"],
index=["heat_pump", "resistive_heater", "solar_thermal", "gas_boiler", "oil_boiler"],
columns=["estimated_flh", "priority"],
data={"estimated_flh": [4000, 2000, 2000, 8000, 8000, 8000], "priority": [6,5,4,3,2,1]},
data={"estimated_flh": [4000, 2000, 2000, 8000, 8000], "priority": [5,4,3,2,1]},
)
elif scenario == "status2019":
technologies = pd.DataFrame(
Expand Down

0 comments on commit 20bfc79

Please sign in to comment.