Add default values when there are no consumption and therefore no emissions can be calculated

This commit is contained in:
Guille Gutierrez 2023-11-24 06:58:01 +01:00
parent d23de74ed3
commit 42d881dbb4
2 changed files with 16 additions and 1 deletions

View File

@ -22,6 +22,8 @@ class Co2Emission:
cte.RENEWABLE: 0}
self._emissions_factor = emissions_factor
self._building = building
self._year = [0]
self._month = [0 for _ in range(12)]
@property
def building(self) -> Building:
@ -63,11 +65,23 @@ class Co2Emission:
values = [v * emission_factor for v in self._building.lighting_electrical_demand[time_period]]
results_by_time_period[time_period] = values
results[cte.LIGHTING] = results_by_time_period
results_by_time_period = {}
for time_period in self._building.appliances_electrical_demand:
values = [v * emission_factor for v in self._building.appliances_electrical_demand[time_period]]
results_by_time_period[time_period] = values
results[cte.APPLIANCES] = results_by_time_period
if cte.HEATING not in results:
results[cte.HEATING] = {cte.YEAR: self._year, cte.MONTH: self._month}
if cte.COOLING not in results:
results[cte.COOLING] = {cte.YEAR: self._year, cte.MONTH: self._month}
if cte.ELECTRICITY not in results:
results[cte.ELECTRICITY] = {cte.YEAR: self._year, cte.MONTH: self._month}
if cte.LIGHTING not in results:
results[cte.LIGHTING] = {cte.YEAR: self._year, cte.MONTH: self._month}
if cte.APPLIANCES not in results:
results[cte.APPLIANCES] = {cte.YEAR: self._year, cte.MONTH: self._month}
if cte.DOMESTIC_HOT_WATER not in results:
results[cte.DOMESTIC_HOT_WATER] = {cte.YEAR: self._year, cte.MONTH: self._month}
return results

View File

@ -62,6 +62,7 @@ class UnitTests(unittest.TestCase):
for building in self.init.city.buildings:
result = Co2Emission(building).operational_co2
self.assertIsNotNone(result)
print(result)
def tearDown(self):
files = glob.glob('output/[!.]*')