diff --git a/hub/catalog_factories/data_models/cost/income.py b/hub/catalog_factories/data_models/cost/income.py index 0a8c0442..8a13cbdc 100644 --- a/hub/catalog_factories/data_models/cost/income.py +++ b/hub/catalog_factories/data_models/cost/income.py @@ -49,9 +49,8 @@ class Income: def electricity_export(self) -> Union[None, float]: """ Get electricity export incomes in currency per J - :return: None or float - """ - return self._construction_subsidy + :return: None or float""" + return self._electricity_export @property def reductions_tax(self) -> Union[None, float]: diff --git a/hub/data/costs/montreal_costs.xml b/hub/data/costs/montreal_costs.xml index aebffbc6..96b115ee 100644 --- a/hub/data/costs/montreal_costs.xml +++ b/hub/data/costs/montreal_costs.xml @@ -96,7 +96,7 @@ 3.6 0.07 - 0.05 + 2 @@ -195,8 +195,8 @@ 1.5 3.6 - 0.05 - 0.05 + 0.07 + 2 \ No newline at end of file diff --git a/hub/exports/building_energy/idf.py b/hub/exports/building_energy/idf.py index a70e5cc7..76646821 100644 --- a/hub/exports/building_energy/idf.py +++ b/hub/exports/building_energy/idf.py @@ -292,7 +292,7 @@ class Idf: return self._add_standard_compact_hourly_schedule(usage, schedule_type, new_schedules) def _add_construction(self, thermal_boundary): - vegetation_name = f'{thermal_boundary.construction_name}_{thermal_boundary.parent_surface.vegetation.name}' + #vegetation_name = f'{thermal_boundary.construction_name}_{thermal_boundary.parent_surface.vegetation.name}' for construction in self._idf.idfobjects[self._CONSTRUCTION]: if thermal_boundary.parent_surface.vegetation is not None: if construction.Name == vegetation_name: