diff --git a/src/andromede/input_converter/src/utils.py b/src/andromede/input_converter/src/utils.py index 6110673b..39d6a051 100644 --- a/src/andromede/input_converter/src/utils.py +++ b/src/andromede/input_converter/src/utils.py @@ -68,5 +68,41 @@ def convert_renewable_to_component_list( return components -def convert_hydro_to_component_list(areas: Area) -> list[InputComponent]: +def convert_hydro_to_component_list(area: Area) -> list[InputComponent]: + raise NotImplementedError + + +def convert_thermals_to_component_list( + areas: list[Area], root_path: Path +) -> list[InputComponent]: + raise NotImplementedError + + +def convert_load_matrix_to_component_list( + areas: list[Area], root_path: Path +) -> list[InputComponent]: + raise NotImplementedError + + +def convert_misc_gen_to_component_list( + areas: list[Area], root_path: Path +) -> list[InputComponent]: + raise NotImplementedError + + +def convert_reserves_matrix_to_component_list( + areas: list[Area], root_path: Path +) -> list[InputComponent]: + raise NotImplementedError + + +def convert_wind_matrix_to_component_list( + areas: list[Area], root_path: Path +) -> list[InputComponent]: + raise NotImplementedError + + +def convert_solar_matrix_to_component_list( + areas: list[Area], root_path: Path +) -> list[InputComponent]: raise NotImplementedError