adapted to new structure of hub

This commit is contained in:
Pilar 2023-02-01 11:36:26 -05:00
parent ccd90b1ad9
commit d3bd6e782c
2 changed files with 7 additions and 7 deletions

View File

@ -8,9 +8,9 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
from pathlib import Path
import pandas as pd
import helpers.constants as cte
import hub.helpers.constants as cte
from helpers.monthly_values import MonthlyValues
from exports.energy_building_exports_factory import EnergyBuildingsExportsFactory
from hub.exports.energy_building_exports_factory import EnergyBuildingsExportsFactory
from insel.monthly_demand_calculation import MonthlyDemandCalculation
_DAYS_A_MONTH = {cte.MONDAY: [5, 4, 4, 5, 4, 4, 5, 4, 4, 5, 4, 5],

View File

@ -8,12 +8,12 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
from pathlib import Path
from unittest import TestCase
import pandas as pd
import helpers.constants as cte
import hub.helpers.constants as cte
from helpers.monthly_values import MonthlyValues
from imports.geometry_factory import GeometryFactory
from imports.construction_factory import ConstructionFactory
from imports.usage_factory import UsageFactory
from imports.weather_factory import WeatherFactory
from hub.imports.geometry_factory import GeometryFactory
from hub.imports.construction_factory import ConstructionFactory
from hub.imports.usage_factory import UsageFactory
from hub.imports.weather_factory import WeatherFactory
from monthly_energy_balance import MonthlyEnergyBalance