errors in stochastic schedules
This commit is contained in:
parent
9fa55f2ca3
commit
46a631c344
@ -28,9 +28,9 @@ class StochasticSchedulesImporter:
|
|||||||
Returns the city with the usage parameters assigned to the buildings
|
Returns the city with the usage parameters assigned to the buildings
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
_daily_schedules = pd.read_excel(self._xls, nrows=261, usecols="A:Y")
|
_daily_schedules = pd.read_excel(self._xls, nrows=365, usecols="A:Y")
|
||||||
year = []
|
year = []
|
||||||
for day in range(1, 262):
|
for day in range(1, 366):
|
||||||
values = _daily_schedules.iloc[day-1][1:].to_numpy()
|
values = _daily_schedules.iloc[day-1][1:].to_numpy()
|
||||||
year.extend(values)
|
year.extend(values)
|
||||||
schedule = Schedule()
|
schedule = Schedule()
|
||||||
|
@ -32,10 +32,6 @@ try:
|
|||||||
ConstructionFactory('nrel', city).enrich()
|
ConstructionFactory('nrel', city).enrich()
|
||||||
print('enrich constructions... done')
|
print('enrich constructions... done')
|
||||||
UsageFactory('comnet', city).enrich()
|
UsageFactory('comnet', city).enrich()
|
||||||
for building in city.buildings:
|
|
||||||
for internal_zone in building.internal_zones:
|
|
||||||
for usage_zone in internal_zone.usage_zones:
|
|
||||||
print(usage_zone.occupancy.occupancy_schedules)
|
|
||||||
print('enrich usage... done')
|
print('enrich usage... done')
|
||||||
in_path = (Path(__file__).parent.parent / 'data' / 'occupancyschedules_2019_point4.xlsx')
|
in_path = (Path(__file__).parent.parent / 'data' / 'occupancyschedules_2019_point4.xlsx')
|
||||||
CustomizedImportsFactory(ssi, city, in_path).enrich()
|
CustomizedImportsFactory(ssi, city, in_path).enrich()
|
||||||
|
Loading…
Reference in New Issue
Block a user