From 4a4a8cb1cbb342276a514c403a0a5ab7830ff836 Mon Sep 17 00:00:00 2001 From: guille Date: Mon, 7 Mar 2022 11:27:54 -0500 Subject: [PATCH] remove the .idea from the git --- simplified_radiosity_algorithm.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/simplified_radiosity_algorithm.py b/simplified_radiosity_algorithm.py index 6976645..f341283 100644 --- a/simplified_radiosity_algorithm.py +++ b/simplified_radiosity_algorithm.py @@ -108,12 +108,14 @@ class SimplifiedRadiosityAlgorithm: """ for radiation in self.radiation: city_object_name = radiation.columns.values.tolist()[1].split(':')[1] + print(city_object_name) if building_name is not None: if city_object_name != building_name: # todo: in case there is a specific building name defined, then assign values only to that specific building continue building = city.city_object(city_object_name) + print(f'[{building.name}], {city_object_name}') for column in radiation.columns.values: if column == cte.MONTH: continue @@ -136,7 +138,6 @@ class SimplifiedRadiosityAlgorithm: def _create_cli_file(self, key): file = self._city.climate_file - print(file) days_in_month = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] WeatherFactory(key, self._city, file_name=self._weather_file_name).enrich() content = self._city.name + '\n'