Skip to content

Commit

Permalink
restructuring scenario evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
k-rieck committed Jan 16, 2024
1 parent 38038a2 commit f3837ba
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
from hisim import log


class ResultDataCollector:
class ResultDataCollection:

"""ResultDataCollector class which collects and concatenate the result data from the system_setups/results."""
"""ResultDataCollection class which collects and concatenate the result data from the system_setups/results."""

def __init__(
self,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
from hisim import log


class ScenarioChartGenerator:
class ScenarioChartGeneration:

"""ScenarioChartGenerator class."""
"""ScenarioChartGeneration class."""

def __init__(
self,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Data Processing and Plotting for Scenario Comparison."""
"""Result Data Processing and Plotting for Scenario Comparison."""


import glob
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ def __init__(
) -> None:
"""Initialize the class."""

result_data_collection.ResultDataCollector(
result_data_collection.ResultDataCollection(
data_processing_mode=data_processing_mode,
folder_from_which_data_will_be_collected=folder_from_which_data_will_be_collected,
path_to_default_config=path_to_default_config,
time_resolution_of_data_set=time_resolution_of_data_set,
simulation_duration_to_check=simulation_duration_to_check,
)
result_data_plotting.ScenarioChartGenerator(
result_data_plotting.ScenarioChartGeneration(
simulation_duration_to_check=simulation_duration_to_check,
time_resolution_of_data_set=time_resolution_of_data_set,
data_processing_mode=data_processing_mode,
Expand Down

0 comments on commit f3837ba

Please sign in to comment.