Skip to content

Commit

Permalink
Mark function as not implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
birgits committed Oct 12, 2022
1 parent 5b9f0c1 commit 75084b6
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions edisgo/edisgo.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
integrate_charging_parks,
)
from edisgo.io.generators_import import oedb as import_generators_oedb
from edisgo.io.heat_pump_import import oedb as import_heat_pumps_oedb

# from edisgo.io.heat_pump_import import oedb as import_heat_pumps_oedb
from edisgo.network import timeseries
from edisgo.network.electromobility import Electromobility
from edisgo.network.heat import HeatPump
Expand Down Expand Up @@ -1659,13 +1660,14 @@ def import_heat_pumps(self, scenario=None, **kwargs):
See :func:`edisgo.io.heat_pump_import.oedb`.
"""
integrated_heat_pumps = import_heat_pumps_oedb(
edisgo_object=self, scenario=scenario, **kwargs
)
self.heat_pump.set_heat_demand(
self, "oedb", heat_pump_names=integrated_heat_pumps
)
self.heat_pump.set_cop(self, "oedb", heat_pump_names=integrated_heat_pumps)
raise NotImplementedError
# integrated_heat_pumps = import_heat_pumps_oedb(
# edisgo_object=self, scenario=scenario, **kwargs
# )
# self.heat_pump.set_heat_demand(
# self, "oedb", heat_pump_names=integrated_heat_pumps
# )
# self.heat_pump.set_cop(self, "oedb", heat_pump_names=integrated_heat_pumps)

def apply_heat_pump_operating_strategy(
self, strategy="uncontrolled", heat_pump_names=None, **kwargs
Expand Down

0 comments on commit 75084b6

Please sign in to comment.