2020-10-22 11:02:41 -04:00
|
|
|
"""
|
|
|
|
PhysicsFactory retrieve the specific physics module for the given region
|
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
|
|
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
|
|
|
"""
|
|
|
|
import pandas as pd
|
2020-10-29 08:16:48 -04:00
|
|
|
from factories.occupancy_feeders.helpers.occupancy_helper import OccupancyHelper
|
2020-10-22 11:02:41 -04:00
|
|
|
|
|
|
|
|
|
|
|
class DemoOccupancyParameters:
|
|
|
|
|
|
|
|
def __init__(self, city, base_path):
|
|
|
|
self._city = city
|
|
|
|
self._demo_schedules_path = base_path / 'demo_schedules.xlsx'
|
|
|
|
xls = pd.ExcelFile(self._demo_schedules_path)
|
2020-10-27 12:53:29 -04:00
|
|
|
# todo: review for more than one usage_zones per building
|
2020-10-22 11:02:41 -04:00
|
|
|
for building in city.buildings:
|
2020-10-27 09:31:57 -04:00
|
|
|
schedules = dict()
|
2020-10-22 11:02:41 -04:00
|
|
|
occupancy = pd.read_excel(xls, sheet_name=OccupancyHelper.pluto_occupancy_function(building.function),
|
2020-10-27 09:31:57 -04:00
|
|
|
skiprows=[0, 1, 2, 3], nrows=39, usecols="A:AA")
|
|
|
|
for index in range(0, 13):
|
|
|
|
row = occupancy.iloc[3 * index]
|
|
|
|
data = row[1:]
|
|
|
|
name = row[0]
|
|
|
|
for i in range(1, 3):
|
|
|
|
row = occupancy.iloc[3*index + i]
|
|
|
|
data1 = row[1:]
|
|
|
|
data = pd.concat([data, data1], axis=1)
|
|
|
|
schedules[name] = data
|
2020-10-27 12:53:29 -04:00
|
|
|
building.usage_zones[0].schedules = schedules
|