From a566d38a85ce9d23ea39a78ea4f458ea34c6a04d Mon Sep 17 00:00:00 2001 From: Guille Date: Wed, 31 May 2023 12:20:02 -0400 Subject: [PATCH] Complete basic clean up and warning removal --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index c56dc04..ef14452 100644 --- a/main.py +++ b/main.py @@ -13,7 +13,7 @@ from energy_systems_sizing import EnergySystemsSizing try: - file_path = (Path(__file__).parent / 'input_files' / 'selected_building.geojson') + file_path = (Path(__file__).parent / 'data' / 'selected_building.geojson') climate_reference_city = 'Montreal' weather_file = 'CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw' weather_format = 'epw' @@ -23,7 +23,7 @@ try: attic_heated_case = 0 basement_heated_case = 1 - out_path = (Path(__file__).parent / 'output_files') + out_path = (Path(__file__).parent / 'outputs') tmp_folder = (Path(__file__).parent / 'tmp') print('[simulation start]')