The error in montreal_custom_energy_system_parameters.py is fixed

Random assignation of systems to city buildings is done
This commit is contained in:
Saeed Ranjbar 2023-12-28 13:48:22 -05:00
parent a2d733d1d1
commit 6e1914963d
17 changed files with 1574 additions and 1411 deletions

View File

@ -107,14 +107,17 @@ class MontrealCustomEnergySystemParameters:
_generation_system.electricity_efficiency = archetype_generation_system.electricity_efficiency
_generic_storage_system = None
if archetype_generation_system.energy_storage_systems is not None:
if archetype_generation_system.energy_storage_systems.type_energy_stored == 'electrical':
_generic_storage_system = ElectricalStorageSystem()
_generic_storage_system.type_energy_stored = 'electrical'
else:
_generic_storage_system = ThermalStorageSystem()
_generic_storage_system.type_energy_stored = 'thermal'
_generation_system.energy_storage_systems = [_generic_storage_system]
_generation_systems.append(_generation_system)
_storage_systems = []
for storage_system in archetype_generation_system.energy_storage_systems:
if storage_system.type_energy_stored == 'electrical':
_generic_storage_system = ElectricalStorageSystem()
_generic_storage_system.type_energy_stored = 'electrical'
else:
_generic_storage_system = ThermalStorageSystem()
_generic_storage_system.type_energy_stored = 'thermal'
_storage_systems.append(_generic_storage_system)
_generation_system.energy_storage_systems = [_storage_systems]
_generation_systems.append(_generation_system)
return _generation_systems
@staticmethod

View File

@ -7,6 +7,7 @@ from hub.imports.construction_factory import ConstructionFactory
from hub.imports.usage_factory import UsageFactory
from hub.imports.weather_factory import WeatherFactory
from hub.imports.energy_systems_factory import EnergySystemsFactory
from scripts import random_assignation
import hub.helpers.constants as cte
geojson_file = process_geojson(x=-73.567908, y=45.492783, diff=0.00045)
@ -28,11 +29,10 @@ print('enrich weather... done')
energy_plus_workflow(city)
city_buildings_peak_heating_demands = {}
for building in city.buildings:
building.energy_systems_archetype_name = 'system 1 gas'
city_buildings_peak_heating_demands[f'{building.name}'] = building.heating_peak_load[cte.YEAR]
random_assignation._call_random(city.buildings, random_assignation.residential_systems_percentage)
EnergySystemsFactory('montreal_custom', city).enrich()
print('test')

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.21 10:16
Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 13:46
! This file shows details about the branches, nodes, and other
! elements of the flow connections.
! This file is intended for use in "debugging" potential problems

View File

@ -1,4 +1,4 @@
Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.21 10:16
Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 13:46
! <Version>, Version ID
Version, 9.5
! <Timesteps per Hour>, #TimeSteps, Minutes per TimeStep {minutes}

View File

@ -1 +1 @@
EnergyPlus Completed Successfully-- 35 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 39.68sec
EnergyPlus Completed Successfully-- 35 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 15.74sec

View File

@ -1,6 +1,6 @@
Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.21 10:16,
Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 13:46,
** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no "Ground Temperatures" were input.
** ~~~ ** Found first in surface=8999743B-69A2-42FE-8A7C-67B453734AB1
** ~~~ ** Found first in surface=5B48231E-B210-48CA-BFF3-62C8D8E642CD
** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.
** Warning ** GetInternalHeatGains: People="173347_OCCUPANCY", Activity Level Schedule Name values
** ~~~ ** fall outside typical range [70,1000] W/person for Thermal Comfort Reporting.
@ -85,4 +85,4 @@ Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.21 10:16,
************* Use Output:Diagnostics,DisplayUnusedObjects; to see them.
************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.
************* EnergyPlus Sizing Error Summary. During Sizing: 0 Warning; 0 Severe Errors.
************* EnergyPlus Completed Successfully-- 35 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 39.68sec
************* EnergyPlus Completed Successfully-- 35 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 15.74sec

View File

@ -1,4 +1,4 @@
Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.21 10:16
Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 13:46
1,5,Environment Title[],Latitude[deg],Longitude[deg],Time Zone[],Elevation[m]
2,8,Day of Simulation[],Month[],Day of Month[],DST Indicator[1=yes 0=no],Hour[],StartMinute[],EndMinute[],DayType
3,5,Cumulative Day of Simulation[],Month[],Day of Month[],DST Indicator[1=yes 0=no],DayType ! When Daily Report Variables Requested

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.21 10:16
Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 13:46
1,5,Environment Title[],Latitude[deg],Longitude[deg],Time Zone[],Elevation[m]
2,8,Day of Simulation[],Month[],Day of Month[],DST Indicator[1=yes 0=no],Hour[],StartMinute[],EndMinute[],DayType
3,5,Cumulative Day of Simulation[],Month[],Day of Month[],DST Indicator[1=yes 0=no],DayType ! When Daily Meters Requested

View File

@ -1,16 +1,16 @@
ReadVarsESO
processing:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_849ab9.rvi
processing:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_1b172e.rvi
input file:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_out.eso
output file:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_out.csv
getting all vars from:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_out.eso
number variables requested for output= 59
ReadVars Run Time=00hr 00min 2.98sec
ReadVars Run Time=00hr 00min 1.70sec
ReadVarsESO program completed successfully.
ReadVarsESO
processing:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_849ab9.mvi
processing:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_1b172e.mvi
input file:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_out.mtr
output file:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_mtr.csv
getting all vars from:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_out.mtr
number variables requested for output= 4
ReadVars Run Time=00hr 00min 0.39sec
ReadVars Run Time=00hr 00min 0.19sec
ReadVarsESO program completed successfully.

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
Program Version:,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.21 10:16
Program Version:,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 13:46
Tabular Output Report in Format: ,Comma
Building:,Buildings in b'Montreal'
@ -205,7 +205,7 @@ FOR:,Entire Facility
General
,,Value
,Program Version and Build,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.21 10:16
,Program Version and Build,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 13:46
,RunPeriod,RUN PERIOD 1
,Weather File,Montreal Int'l PQ CAN WYEC2-B-94792 WMO#=716270
,Latitude [deg],45.47
@ -373,158 +373,158 @@ FOR:,Entire Facility
Opaque Exterior
,,Construction,Reflectance,U-Factor with Film [W/m2-K],U-Factor no Film [W/m2-K],Gross Area [m2],Net Area [m2],Azimuth [deg],Tilt [deg],Cardinal Direction
,DA2DBB08-CA41-4871-A0A8-4673E8576B05,1981_1990_6,0.40,0.644,0.713,57.41,47.08,90.32,90.00,E
,C78EBBD1-8B31-4836-AB90-A46F01BF1586,1981_1990_6,0.40,0.644,0.713,57.41,47.08,269.70,90.00,W
,8999743B-69A2-42FE-8A7C-67B453734AB1,1981_1990_6,0.40,0.639,0.713,88.46,88.46,0.14,180.00,
,D6595750-3255-41B5-8254-B96ACF292BBE,1981_1990_6,0.40,0.649,0.713,88.46,88.46,0.14,0.00,
,10FF4FC7-A92B-4B40-957C-3A008648856F,1981_1990_6,0.40,0.644,0.713,51.38,42.13,90.32,90.00,E
,8D624A84-35F4-4519-B253-C3B68564C560,1981_1990_6,0.40,0.644,0.713,9.77,8.01,89.91,90.00,E
,C22BEF2D-ADA4-4921-8DC1-B4D10711D5AF,1981_1990_6,0.40,0.644,0.713,120.90,99.13,0.06,90.00,N
,7DD990C9-3907-46C8-986C-FFAB3E416899,1981_1990_6,0.40,0.644,0.713,4.80,3.93,359.13,90.00,N
,586964D8-CB6B-4909-8141-CB24582E02D2,1981_1990_6,0.40,0.644,0.713,60.89,49.93,269.70,90.00,W
,D53794C6-5099-4A8A-A478-FD3659B4CC41,1981_1990_6,0.40,0.639,0.713,94.56,94.56,270.32,180.00,
,38C85E00-1A52-4CE6-9B07-B24B047CAD25,1981_1990_6,0.40,0.649,0.713,94.56,94.56,89.91,0.00,
,DEFCD208-A569-4F67-8057-9BBAA044D0D1,1981_1990_6,0.40,0.644,0.713,269.34,220.85,270.37,90.00,W
,C4EE45BD-FFE9-4AE5-A943-19E38F02B369,1981_1990_6,0.40,0.644,0.713,42.68,35.00,0.73,90.00,N
,C6E93FE0-9BD0-4988-A9FA-85E3087B4CAA,1981_1990_6,0.40,0.644,0.713,50.71,41.58,269.95,90.00,W
,2ED136D2-C970-4AA9-AC6D-F1CF8E09BE42,1981_1990_6,0.40,0.644,0.713,33.05,27.10,0.68,90.00,N
,6C2F3EDC-54DF-4101-AB11-E65C22463480,1981_1990_6,0.40,0.644,0.713,330.80,271.25,270.63,90.00,W
,5343466E-9F28-4B4B-8836-C64F48D3561B,1981_1990_6,0.40,0.644,0.713,8.84,7.25,271.07,90.00,W
,CF45B16F-D9A0-4749-B814-DEB5F7437091,1981_1990_6,0.40,0.644,0.713,37.21,30.51,180.88,90.00,S
,CF45B86D-41F1-457B-A148-9732D24A4ACC,1981_1990_6,0.40,0.644,0.713,48.45,39.73,270.81,90.00,W
,64E08CB6-02C4-4CC0-B907-0B234905DBE8,1981_1990_6,0.40,0.644,0.713,50.23,41.19,180.83,90.00,S
,E596F062-D142-4026-B3A1-1F7A73B6820A,1981_1990_6,0.40,0.644,0.713,264.28,216.70,270.81,90.00,W
,14C6C244-6A9A-46AA-8257-3CCD07AB4170,1981_1990_6,0.40,0.644,0.713,547.94,449.30,180.80,90.00,S
,2D141783-9717-46F2-B1A8-3EFCD7D0B119,1981_1990_6,0.40,0.644,0.713,8.10,6.64,181.90,90.00,S
,F8D36176-0913-4B2E-9B2C-A234769A337E,1981_1990_6,0.40,0.644,0.713,16.36,13.41,90.30,90.00,E
,0CDAF8EB-1CEB-48E3-B07A-0A94317CFBAD,1981_1990_6,0.40,0.644,0.713,71.03,58.24,180.36,90.00,S
,D9652D85-82F3-44FB-9BA5-1334E49830A8,1981_1990_6,0.40,0.644,0.713,332.92,272.99,90.35,90.00,E
,9202E9EC-DA44-46BF-83A3-6F93C6796155,1981_1990_6,0.40,0.644,0.713,438.53,359.59,0.36,90.00,N
,C375692C-BDC4-4BDC-B04F-3AA74CE227CC,1981_1990_6,0.40,0.644,0.713,282.91,231.98,90.36,90.00,E
,94663C80-2BB1-498C-A0CB-A03722105057,1981_1990_6,0.40,0.644,0.713,432.84,354.92,180.36,90.00,S
,313396A9-6F9A-4E24-9E72-0B6500A752CE,1981_1990_6,0.40,0.644,0.713,344.94,282.84,90.36,90.00,E
,7521F29D-5C3F-4DA9-9001-A8EAC312AE83,1981_1990_6,0.40,0.644,0.713,629.18,515.91,0.35,90.00,N
,FE2E55CA-CDE1-4FE8-A0D0-209F6F2E0379,1981_1990_6,0.40,0.639,0.713,2308.92,2308.92,0.36,180.00,
,749AC796-0656-4BD9-AD3B-6A4775551EB0,1981_1990_6,0.40,0.649,0.713,2308.92,2308.92,0.36,0.00,
,34BC3599-AC57-4BBE-9D7F-2888C6DECCBA,1981_1990_6,0.40,0.644,0.713,5.62,4.61,358.71,90.00,N
,D3A4085A-5BB6-4BC0-9EEE-4A62F3546745,1981_1990_6,0.40,0.644,0.713,4.45,3.65,90.31,90.00,E
,C49A2819-ED87-426F-B948-8E020E557A82,1981_1990_6,0.40,0.644,0.713,65.43,53.65,269.70,90.00,W
,CB9B966A-B94D-4D90-9A4C-95B4643AC214,1981_1990_6,0.40,0.644,0.713,143.18,117.41,179.68,90.00,S
,9A933A7F-CF1D-4664-9EC0-7EC0F9C89CDA,1981_1990_6,0.40,0.644,0.713,59.97,49.18,89.74,90.00,E
,BF6FD901-CE16-4B3E-9771-5EBA8A9C0A64,1981_1990_6,0.40,0.639,0.713,92.64,92.64,359.68,180.00,
,0A36EF86-9120-4B50-A50B-5B69E27AC5EB,1981_1990_6,0.40,0.649,0.713,92.64,92.64,358.71,0.00,
,CFDEA50D-2C69-4366-B555-567EAF33DC9F,1981_1990_6,0.40,0.644,0.713,67.25,55.14,90.03,90.00,E
,EB711559-2FD4-4ED3-825F-FD9EA05F253D,1981_1990_6,0.40,0.644,0.713,144.70,118.65,359.95,90.00,N
,9D3EA49E-464E-4B27-ABE9-C16FDFD4C166,1981_1990_6,0.40,0.644,0.713,66.78,54.75,270.04,90.00,W
,2C88DABC-013D-4C68-B599-FFA7F23E1BA7,1981_1990_6,0.40,0.644,0.713,144.71,118.66,180.13,90.00,S
,9C304F09-7FB8-4332-8D9B-864D212E781C,1981_1990_6,0.40,0.639,0.713,96.97,96.97,0.13,180.00,
,9B7536E1-D256-403D-AEF0-E626FCEAD9AA,1981_1990_6,0.40,0.649,0.713,96.97,96.97,359.95,0.00,
,2C73C760-4411-444B-AD52-69E4D4C3EC74,1981_1990_6,0.40,0.644,0.713,4.42,3.62,90.22,90.00,E
,6BD9CC5D-EBF7-4F80-8081-A2B4AD7289C1,1981_1990_6,0.40,0.644,0.713,118.69,97.33,359.45,90.00,N
,48E3DAD2-0DE1-45BF-AA96-BFF4AB2B62C3,1981_1990_6,0.40,0.644,0.713,5.25,4.31,0.34,90.00,N
,EC1B4ACD-BDD6-42D0-8C8D-63F19F12588A,1981_1990_6,0.40,0.644,0.713,62.29,51.08,270.10,90.00,W
,C88BEAA9-D013-41CD-B847-F7EDB8C7A3DC,1981_1990_6,0.40,0.644,0.713,59.29,48.62,89.40,90.00,E
,08A9CB96-35E7-484E-8338-DF8D9EA00BB1,1981_1990_6,0.40,0.639,0.713,96.59,96.59,269.40,180.00,
,0D266BA8-9BBA-43AF-9784-696ABFF75986,1981_1990_6,0.40,0.649,0.713,96.59,96.59,90.22,0.00,
,A92AA13A-8C21-4BE2-84EB-C27DF99B34F2,1981_1990_6,0.40,0.644,0.713,57.41,47.08,90.32,90.00,E
,CCF64059-4168-4245-974F-8687C312C1F4,1981_1990_6,0.40,0.644,0.713,57.41,47.08,269.70,90.00,W
,FE41D3BC-A81F-43E2-9952-1EF717D22DC3,1981_1990_6,0.40,0.639,0.713,88.02,88.02,0.14,180.00,
,4CDAFCB8-7425-462B-A6A9-7893DA44744F,1981_1990_6,0.40,0.649,0.713,88.02,88.02,0.14,0.00,
,9EC27607-BD73-4952-BD08-D2DCC38CF510,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E
,70BB2665-FF18-47CF-AC1F-65127F2EBB6F,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W
,3D6B338B-AC1B-4C09-A99A-6879BB4A3C56,1981_1990_6,0.40,0.639,0.713,89.11,89.11,0.14,180.00,
,D51CA087-04C0-4DD5-A619-3EE6F767F1DF,1981_1990_6,0.40,0.649,0.713,89.11,89.11,0.14,0.00,
,854AC3BE-DB47-4CE7-A933-7CA461218A4D,1981_1990_6,0.40,0.644,0.713,62.03,50.86,89.40,90.00,E
,3483C3BC-272A-4B86-A04C-AF36D5E4CC52,1981_1990_6,0.40,0.644,0.713,62.29,51.08,270.10,90.00,W
,3CEF9635-8AEE-46FD-88CF-7B2BB45DF9EC,1981_1990_6,0.40,0.644,0.713,123.20,101.02,180.04,90.00,S
,AAA045E5-0474-486F-B6B1-444DEBD6286D,1981_1990_6,0.40,0.644,0.713,4.34,3.55,179.52,90.00,S
,36D429D7-F89D-452D-88C6-F1E3BEEBAFEB,1981_1990_6,0.40,0.639,0.713,97.60,97.60,359.52,180.00,
,1F980DFD-6138-4342-B24A-3B80050163A9,1981_1990_6,0.40,0.649,0.713,97.60,97.60,0.14,0.00,
,57A8693C-CCDF-4C91-AAAD-0725191E1ABA,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E
,8A3589E7-E5C2-4C83-A13E-2392FCCB5161,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W
,87C8F1CB-443B-4C6F-AFEF-BBF5C177512A,1981_1990_6,0.40,0.639,0.713,89.61,89.61,0.14,180.00,
,2D4357FE-8B7F-4996-AE6E-413A1D733446,1981_1990_6,0.40,0.649,0.713,89.61,89.61,0.14,0.00,
,ACED190C-5B13-4767-8FD3-210D24B1C73A,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E
,A15A5516-0E86-494B-9106-ACEB50A9AE6F,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W
,2D07A52E-2D21-4E96-AFF7-D489D8D83560,1981_1990_6,0.40,0.639,0.713,88.61,88.61,0.14,180.00,
,FDCF25E5-06C1-4B1A-9661-677FE95B28DA,1981_1990_6,0.40,0.649,0.713,88.61,88.61,0.14,0.00,
,597E8893-BF63-4356-83EB-581A544045AC,1981_1990_6,0.40,0.644,0.713,57.41,47.08,90.32,90.00,E
,E9F9F468-BE3C-406C-A131-151A54D54C3B,1981_1990_6,0.40,0.644,0.713,57.41,47.08,269.70,90.00,W
,5B48231E-B210-48CA-BFF3-62C8D8E642CD,1981_1990_6,0.40,0.639,0.713,88.46,88.46,0.14,180.00,
,5090EE93-FEFB-418C-B8E3-C35CC3106B55,1981_1990_6,0.40,0.649,0.713,88.46,88.46,0.14,0.00,
,81D97B28-7FE0-47F3-A8EF-DBC87B6FA485,1981_1990_6,0.40,0.644,0.713,51.38,42.13,90.32,90.00,E
,465F65FE-61CA-4913-AA63-BD2BAD166056,1981_1990_6,0.40,0.644,0.713,9.77,8.01,89.91,90.00,E
,D4DDF175-8CE1-4DE4-920D-9E87760A2357,1981_1990_6,0.40,0.644,0.713,120.90,99.13,0.06,90.00,N
,CD9C1CCB-94C4-4D52-918E-02B6D9F23CD6,1981_1990_6,0.40,0.644,0.713,4.80,3.93,359.13,90.00,N
,B8E5722F-137A-4265-A0C8-4477DACE4464,1981_1990_6,0.40,0.644,0.713,60.89,49.93,269.70,90.00,W
,3F6836B3-3739-4EB7-A50F-6B1EC2695C69,1981_1990_6,0.40,0.639,0.713,94.56,94.56,270.32,180.00,
,CADC5B75-BB4B-46D4-9B46-CB298FC508E4,1981_1990_6,0.40,0.649,0.713,94.56,94.56,89.91,0.00,
,7D0C86B4-2C88-4226-8256-72C260ECE0BD,1981_1990_6,0.40,0.644,0.713,269.34,220.85,270.37,90.00,W
,AA54AC6D-9DE4-4186-B260-051460D41D27,1981_1990_6,0.40,0.644,0.713,42.68,35.00,0.73,90.00,N
,9E618400-85C5-496B-A5FA-54781BA43CEF,1981_1990_6,0.40,0.644,0.713,50.71,41.58,269.95,90.00,W
,8CC9A5F8-7042-4266-B52C-96552E8171FD,1981_1990_6,0.40,0.644,0.713,33.05,27.10,0.68,90.00,N
,BD015AC2-ED48-45A8-AFF2-AAA3F0E7E0F8,1981_1990_6,0.40,0.644,0.713,330.80,271.25,270.63,90.00,W
,51CACE5A-D4F2-4D1B-ACB5-FFDBAF04A5E3,1981_1990_6,0.40,0.644,0.713,8.84,7.25,271.07,90.00,W
,CCB7F46B-11E3-47EF-9D74-515E3A60294A,1981_1990_6,0.40,0.644,0.713,37.21,30.51,180.88,90.00,S
,3F743FC3-A3AF-44B1-8C5B-8A239C7A0DF1,1981_1990_6,0.40,0.644,0.713,48.45,39.73,270.81,90.00,W
,2A3D3C01-7AC9-49C3-9D0F-CCC7112F80E7,1981_1990_6,0.40,0.644,0.713,50.23,41.19,180.83,90.00,S
,404B2F49-3137-4D51-9B65-BA17039744A7,1981_1990_6,0.40,0.644,0.713,264.28,216.70,270.81,90.00,W
,5E512775-1BB9-4BFF-B0C1-56B547F0A8DF,1981_1990_6,0.40,0.644,0.713,547.94,449.30,180.80,90.00,S
,E8D59443-A80D-4458-8F69-7EF4938D44C7,1981_1990_6,0.40,0.644,0.713,8.10,6.64,181.90,90.00,S
,F90B3E61-9004-40B2-A979-81DAB0B99469,1981_1990_6,0.40,0.644,0.713,16.36,13.41,90.30,90.00,E
,334BAEB1-D3D8-43BC-9D18-8C8D5497B950,1981_1990_6,0.40,0.644,0.713,71.03,58.24,180.36,90.00,S
,F2773F25-BF65-4CE3-89EC-CA874375AA3F,1981_1990_6,0.40,0.644,0.713,332.92,272.99,90.35,90.00,E
,1CA10200-62C5-402B-909C-83A2A86AC628,1981_1990_6,0.40,0.644,0.713,438.53,359.59,0.36,90.00,N
,CACC7EAD-4051-4299-A3FE-A21BD1EA6C93,1981_1990_6,0.40,0.644,0.713,282.91,231.98,90.36,90.00,E
,8278B81D-4747-472F-A7F3-0F5F4834369E,1981_1990_6,0.40,0.644,0.713,432.84,354.92,180.36,90.00,S
,EA7A188E-C0DD-41FB-AFFB-5546DD3ED8A0,1981_1990_6,0.40,0.644,0.713,344.94,282.84,90.36,90.00,E
,5E175F67-94FE-490D-AD22-13AD9EA2F624,1981_1990_6,0.40,0.644,0.713,629.18,515.91,0.35,90.00,N
,C53FC572-BF34-408F-8F51-C400DE236CBC,1981_1990_6,0.40,0.639,0.713,2308.92,2308.92,0.36,180.00,
,57B878DC-1779-436B-9756-55C0AF76D50E,1981_1990_6,0.40,0.649,0.713,2308.92,2308.92,0.36,0.00,
,8F1314AA-7CA7-4107-BFD4-E601556F45F2,1981_1990_6,0.40,0.644,0.713,5.62,4.61,358.71,90.00,N
,996A84C5-812F-403B-879D-7233B65AA66F,1981_1990_6,0.40,0.644,0.713,4.45,3.65,90.31,90.00,E
,48618736-DEE0-4588-AFDF-D82A1EC13FB0,1981_1990_6,0.40,0.644,0.713,65.43,53.65,269.70,90.00,W
,C4EA0EBA-E459-4E6E-BC40-59E57B9A1AB5,1981_1990_6,0.40,0.644,0.713,143.18,117.41,179.68,90.00,S
,96E4C93A-7D73-4F02-A1B0-1BA8B18682D1,1981_1990_6,0.40,0.644,0.713,59.97,49.18,89.74,90.00,E
,DAAFBE38-0BB6-4E78-99D8-A24D93683C5F,1981_1990_6,0.40,0.639,0.713,92.64,92.64,359.68,180.00,
,88AC3937-911D-427D-9291-68DA65F3AD67,1981_1990_6,0.40,0.649,0.713,92.64,92.64,358.71,0.00,
,E2ECFD8B-F3B6-4753-A361-6F442C491E6C,1981_1990_6,0.40,0.644,0.713,67.25,55.14,90.03,90.00,E
,DA9F4734-38C4-42B7-8862-1E510B356BD9,1981_1990_6,0.40,0.644,0.713,144.70,118.65,359.95,90.00,N
,C860B96F-077E-4B02-A9F9-B55670FD477B,1981_1990_6,0.40,0.644,0.713,66.78,54.75,270.04,90.00,W
,480A21AF-85AE-4059-B848-33FD5F3A5720,1981_1990_6,0.40,0.644,0.713,144.71,118.66,180.13,90.00,S
,7581E7C1-7442-4E57-B277-4F8CA5FDF4C0,1981_1990_6,0.40,0.639,0.713,96.97,96.97,0.13,180.00,
,49E69C19-AA91-4925-98AC-D68299566337,1981_1990_6,0.40,0.649,0.713,96.97,96.97,359.95,0.00,
,DB1D1E20-BE98-49D4-9E40-1940144BF615,1981_1990_6,0.40,0.644,0.713,4.42,3.62,90.22,90.00,E
,8FC429BC-81D9-449A-80A9-38F77B3E66DD,1981_1990_6,0.40,0.644,0.713,118.69,97.33,359.45,90.00,N
,759D0D84-9F31-46A9-AB0C-A80AF93CD9F9,1981_1990_6,0.40,0.644,0.713,5.25,4.31,0.34,90.00,N
,2FB34A99-C1EA-45CB-A3BE-D36736D9F6D4,1981_1990_6,0.40,0.644,0.713,62.29,51.08,270.10,90.00,W
,5EC4A61B-3773-449F-B181-753456E72C34,1981_1990_6,0.40,0.644,0.713,59.29,48.62,89.40,90.00,E
,1F2698C6-9AB2-4092-8689-F48F27F007F3,1981_1990_6,0.40,0.639,0.713,96.59,96.59,269.40,180.00,
,C421315B-3FA6-4F26-8FE4-2BD36E46C018,1981_1990_6,0.40,0.649,0.713,96.59,96.59,90.22,0.00,
,D9F477EB-A2BB-45DC-80C6-F24D09A96A5C,1981_1990_6,0.40,0.644,0.713,57.41,47.08,90.32,90.00,E
,12B9DB48-E074-4E87-8478-9A8221BFECE1,1981_1990_6,0.40,0.644,0.713,57.41,47.08,269.70,90.00,W
,0F842809-D03C-47DA-A397-CC369EC4D39B,1981_1990_6,0.40,0.639,0.713,88.02,88.02,0.14,180.00,
,9A1D52B6-CA21-44CB-8234-487282B053CE,1981_1990_6,0.40,0.649,0.713,88.02,88.02,0.14,0.00,
,D15932BE-B61F-4D05-8F3D-A538ADA1C1B9,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E
,D7BFAC7E-FFE4-43E5-A664-66123D42D5E0,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W
,F1D05492-FC37-4CE7-B4BE-AB84E65BBA2D,1981_1990_6,0.40,0.639,0.713,89.11,89.11,0.14,180.00,
,549077E1-BF77-47A7-AFFB-E487658423CC,1981_1990_6,0.40,0.649,0.713,89.11,89.11,0.14,0.00,
,88E8F7FF-619E-4595-81EB-D5BAD7867696,1981_1990_6,0.40,0.644,0.713,62.03,50.86,89.40,90.00,E
,28CE80FE-FE76-466F-A7EB-88A00D656F05,1981_1990_6,0.40,0.644,0.713,62.29,51.08,270.10,90.00,W
,F5F1247A-88BE-4F06-B629-4C3613F82D51,1981_1990_6,0.40,0.644,0.713,123.20,101.02,180.04,90.00,S
,B8CB1843-0410-4673-BFD4-5DC3C73F2BDD,1981_1990_6,0.40,0.644,0.713,4.34,3.55,179.52,90.00,S
,EC0278F6-DA80-4F16-8DE4-BB9973EBB3B2,1981_1990_6,0.40,0.639,0.713,97.60,97.60,359.52,180.00,
,DC07A81C-DAB5-45F7-BEE5-80767931DBC0,1981_1990_6,0.40,0.649,0.713,97.60,97.60,0.14,0.00,
,23571505-EC9B-43AD-BFCA-E0997E7A40A6,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E
,ED2B8CED-C770-4499-B4D2-1F89BA80E037,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W
,5B52E826-42B4-4A00-9549-10196A13F76D,1981_1990_6,0.40,0.639,0.713,89.61,89.61,0.14,180.00,
,36849036-C5B5-40B7-8F21-F853A75F082B,1981_1990_6,0.40,0.649,0.713,89.61,89.61,0.14,0.00,
,39CD3473-FBC3-431F-B595-088111688FF0,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E
,E3C38143-FDEB-4CAD-BFDE-4855A94C5FFE,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W
,CC5D3CDE-CC73-4B55-9BE2-DA25001A6EA6,1981_1990_6,0.40,0.639,0.713,88.61,88.61,0.14,180.00,
,BC98B527-A9A7-4167-8D48-AD07E222751B,1981_1990_6,0.40,0.649,0.713,88.61,88.61,0.14,0.00,
Opaque Interior
,,Construction,Reflectance,U-Factor with Film [W/m2-K],U-Factor no Film [W/m2-K],Gross Area [m2],Net Area [m2],Azimuth [deg],Tilt [deg],Cardinal Direction
,D61EDFC5-3A2B-4754-9701-AF5837BDE4C0,1981_1990_6,0.40,0.609,0.713,125.11,125.11,0.14,90.00,N
,31AFB167-A379-4F4C-9BC4-A232ECF39CD6,1981_1990_6,0.40,0.609,0.713,124.50,124.50,180.14,90.00,S
,0C7C5F8B-1E8D-4A84-83E1-A4BA4DA017DC,1981_1990_6,0.40,0.609,0.713,125.11,125.11,180.14,90.00,S
,4668EFE0-5255-4A3F-92E8-465BFEC7A023,1981_1990_6,0.40,0.609,0.713,137.65,137.65,0.14,90.00,N
,AC676F79-22FF-443D-B3F8-DE9BE3882230,1981_1990_6,0.40,0.609,0.713,124.66,124.66,180.14,90.00,S
,1E227EB9-1E76-45A4-97C1-C2150DC6981D,1981_1990_6,0.40,0.609,0.713,124.50,124.50,0.14,90.00,N
,C4B33EE1-913A-44E6-895A-00187083E503,1981_1990_6,0.40,0.609,0.713,123.89,123.89,180.14,90.00,S
,C624AE68-0972-41AB-B983-63341316A356,1981_1990_6,0.40,0.609,0.713,125.36,125.36,0.14,90.00,N
,611EDE91-A2CB-47E6-BEA7-985F6568D57B,1981_1990_6,0.40,0.609,0.713,126.07,126.07,180.14,90.00,S
,4784E25C-523C-4098-B91B-01593EA56D07,1981_1990_6,0.40,0.609,0.713,126.77,126.77,0.14,90.00,N
,AA41D277-A045-4628-8941-9D6FCCA71D8E,1981_1990_6,0.40,0.609,0.713,126.07,126.07,0.14,90.00,N
,40E1720D-794E-49DB-863F-18F95B978CEF,1981_1990_6,0.40,0.609,0.713,126.77,126.77,180.14,90.00,S
,5868F322-7B22-4FB5-BE43-C41C4491F897,1981_1990_6,0.40,0.609,0.713,124.66,124.66,0.14,90.00,N
,3621CC15-71DC-496F-9F02-9A87E583FCA9,1981_1990_6,0.40,0.609,0.713,125.36,125.36,180.14,90.00,S
,500F7547-EA7A-498B-8000-CC091AFCE755,1981_1990_6,0.40,0.609,0.713,125.11,125.11,0.14,90.00,N
,398D7259-ACD4-4A78-B8DD-F50A483BBA9D,1981_1990_6,0.40,0.609,0.713,124.50,124.50,180.14,90.00,S
,6AC6AA25-5E89-4029-9946-74804658CAF4,1981_1990_6,0.40,0.609,0.713,125.11,125.11,180.14,90.00,S
,84E6204F-F657-41CA-BD9C-FF8DD55FDCD9,1981_1990_6,0.40,0.609,0.713,137.65,137.65,0.14,90.00,N
,8DFBD53D-371B-4A6F-9422-D041D8AADF88,1981_1990_6,0.40,0.609,0.713,124.66,124.66,180.14,90.00,S
,4A29AC31-F3CA-4AE3-AF0C-5D2899DDD309,1981_1990_6,0.40,0.609,0.713,124.50,124.50,0.14,90.00,N
,1542594C-4A08-4E29-BBB6-BF6798DD1E56,1981_1990_6,0.40,0.609,0.713,123.89,123.89,180.14,90.00,S
,F72F957D-1E74-40BC-B6CB-D42C2B474277,1981_1990_6,0.40,0.609,0.713,125.36,125.36,0.14,90.00,N
,53505FE8-5ADB-4B73-BD6C-955D322B0A64,1981_1990_6,0.40,0.609,0.713,126.07,126.07,180.14,90.00,S
,744EAE42-6F20-4700-9BFC-85DD929A297D,1981_1990_6,0.40,0.609,0.713,126.77,126.77,0.14,90.00,N
,CB1B4365-3338-4050-8DE9-CBD4EBF6ACE2,1981_1990_6,0.40,0.609,0.713,126.07,126.07,0.14,90.00,N
,7FA395E8-2B05-448A-B1B1-9CA854CD4CDB,1981_1990_6,0.40,0.609,0.713,126.77,126.77,180.14,90.00,S
,E8EAF434-D518-420C-A1AE-4F9AC185C3C7,1981_1990_6,0.40,0.609,0.713,124.66,124.66,0.14,90.00,N
,E2AF1629-BF60-4BA4-B83F-DA0427CC5520,1981_1990_6,0.40,0.609,0.713,125.36,125.36,180.14,90.00,S
Exterior Fenestration
,,Construction,Glass Area [m2],Frame Area [m2],Divider Area [m2],Area of One Opening [m2],Area of Multiplied Openings [m2],Glass U-Factor [W/m2-K],Glass SHGC,Glass Visible Transmittance,Frame Conductance [W/m2-K],Divider Conductance [W/m2-K],Shade Control,Parent Surface,Azimuth [deg],Tilt [deg],Cardinal Direction
,DA2DBB08-CA41-4871-A0A8-4673E8576B05 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,DA2DBB08-CA41-4871-A0A8-4673E8576B05,90.32,90.00,E
,C78EBBD1-8B31-4836-AB90-A46F01BF1586 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,C78EBBD1-8B31-4836-AB90-A46F01BF1586,269.70,90.00,W
,10FF4FC7-A92B-4B40-957C-3A008648856F WINDOW,WINDOW_CONSTRUCTION_1,9.25,0.00,0.00,9.25,9.25,2.954,0.391,0.305,,,No,10FF4FC7-A92B-4B40-957C-3A008648856F,90.32,90.00,E
,8D624A84-35F4-4519-B253-C3B68564C560 WINDOW,WINDOW_CONSTRUCTION_1,1.76,0.00,0.00,1.76,1.76,2.954,0.391,0.305,,,No,8D624A84-35F4-4519-B253-C3B68564C560,89.91,90.00,E
,C22BEF2D-ADA4-4921-8DC1-B4D10711D5AF WINDOW,WINDOW_CONSTRUCTION_1,21.76,0.00,0.00,21.76,21.76,2.954,0.391,0.305,,,No,C22BEF2D-ADA4-4921-8DC1-B4D10711D5AF,0.06,90.00,N
,7DD990C9-3907-46C8-986C-FFAB3E416899 WINDOW,WINDOW_CONSTRUCTION_1,0.86,0.00,0.00,0.86,0.86,2.954,0.391,0.305,,,No,7DD990C9-3907-46C8-986C-FFAB3E416899,359.13,90.00,N
,586964D8-CB6B-4909-8141-CB24582E02D2 WINDOW,WINDOW_CONSTRUCTION_1,10.96,0.00,0.00,10.96,10.96,2.954,0.391,0.305,,,No,586964D8-CB6B-4909-8141-CB24582E02D2,269.70,90.00,W
,DEFCD208-A569-4F67-8057-9BBAA044D0D1 WINDOW,WINDOW_CONSTRUCTION_1,48.49,0.00,0.00,48.49,48.49,2.954,0.391,0.305,,,No,DEFCD208-A569-4F67-8057-9BBAA044D0D1,270.37,90.00,W
,C4EE45BD-FFE9-4AE5-A943-19E38F02B369 WINDOW,WINDOW_CONSTRUCTION_1,7.68,0.00,0.00,7.68,7.68,2.954,0.391,0.305,,,No,C4EE45BD-FFE9-4AE5-A943-19E38F02B369,0.73,90.00,N
,C6E93FE0-9BD0-4988-A9FA-85E3087B4CAA WINDOW,WINDOW_CONSTRUCTION_1,9.13,0.00,0.00,9.13,9.13,2.954,0.391,0.305,,,No,C6E93FE0-9BD0-4988-A9FA-85E3087B4CAA,269.95,90.00,W
,2ED136D2-C970-4AA9-AC6D-F1CF8E09BE42 WINDOW,WINDOW_CONSTRUCTION_1,5.95,0.00,0.00,5.95,5.95,2.954,0.391,0.305,,,No,2ED136D2-C970-4AA9-AC6D-F1CF8E09BE42,0.68,90.00,N
,6C2F3EDC-54DF-4101-AB11-E65C22463480 WINDOW,WINDOW_CONSTRUCTION_1,59.55,0.00,0.00,59.55,59.55,2.954,0.391,0.305,,,No,6C2F3EDC-54DF-4101-AB11-E65C22463480,270.63,90.00,W
,5343466E-9F28-4B4B-8836-C64F48D3561B WINDOW,WINDOW_CONSTRUCTION_1,1.59,0.00,0.00,1.59,1.59,2.954,0.391,0.305,,,No,5343466E-9F28-4B4B-8836-C64F48D3561B,271.07,90.00,W
,CF45B16F-D9A0-4749-B814-DEB5F7437091 WINDOW,WINDOW_CONSTRUCTION_1,6.70,0.00,0.00,6.70,6.70,2.954,0.391,0.305,,,No,CF45B16F-D9A0-4749-B814-DEB5F7437091,180.88,90.00,S
,CF45B86D-41F1-457B-A148-9732D24A4ACC WINDOW,WINDOW_CONSTRUCTION_1,8.72,0.00,0.00,8.72,8.72,2.954,0.391,0.305,,,No,CF45B86D-41F1-457B-A148-9732D24A4ACC,270.81,90.00,W
,64E08CB6-02C4-4CC0-B907-0B234905DBE8 WINDOW,WINDOW_CONSTRUCTION_1,9.04,0.00,0.00,9.04,9.04,2.954,0.391,0.305,,,No,64E08CB6-02C4-4CC0-B907-0B234905DBE8,180.83,90.00,S
,E596F062-D142-4026-B3A1-1F7A73B6820A WINDOW,WINDOW_CONSTRUCTION_1,47.57,0.00,0.00,47.57,47.57,2.954,0.391,0.305,,,No,E596F062-D142-4026-B3A1-1F7A73B6820A,270.81,90.00,W
,14C6C244-6A9A-46AA-8257-3CCD07AB4170 WINDOW,WINDOW_CONSTRUCTION_1,98.64,0.00,0.00,98.64,98.64,2.954,0.391,0.305,,,No,14C6C244-6A9A-46AA-8257-3CCD07AB4170,180.80,90.00,S
,2D141783-9717-46F2-B1A8-3EFCD7D0B119 WINDOW,WINDOW_CONSTRUCTION_1,1.46,0.00,0.00,1.46,1.46,2.954,0.391,0.305,,,No,2D141783-9717-46F2-B1A8-3EFCD7D0B119,181.90,90.00,S
,F8D36176-0913-4B2E-9B2C-A234769A337E WINDOW,WINDOW_CONSTRUCTION_1,2.94,0.00,0.00,2.94,2.94,2.954,0.391,0.305,,,No,F8D36176-0913-4B2E-9B2C-A234769A337E,90.30,90.00,E
,0CDAF8EB-1CEB-48E3-B07A-0A94317CFBAD WINDOW,WINDOW_CONSTRUCTION_1,12.79,0.00,0.00,12.79,12.79,2.954,0.391,0.305,,,No,0CDAF8EB-1CEB-48E3-B07A-0A94317CFBAD,180.36,90.00,S
,D9652D85-82F3-44FB-9BA5-1334E49830A8 WINDOW,WINDOW_CONSTRUCTION_1,59.93,0.00,0.00,59.93,59.93,2.954,0.391,0.305,,,No,D9652D85-82F3-44FB-9BA5-1334E49830A8,90.35,90.00,E
,9202E9EC-DA44-46BF-83A3-6F93C6796155 WINDOW,WINDOW_CONSTRUCTION_1,78.94,0.00,0.00,78.94,78.94,2.954,0.391,0.305,,,No,9202E9EC-DA44-46BF-83A3-6F93C6796155,0.36,90.00,N
,C375692C-BDC4-4BDC-B04F-3AA74CE227CC WINDOW,WINDOW_CONSTRUCTION_1,50.93,0.00,0.00,50.93,50.93,2.954,0.391,0.305,,,No,C375692C-BDC4-4BDC-B04F-3AA74CE227CC,90.36,90.00,E
,94663C80-2BB1-498C-A0CB-A03722105057 WINDOW,WINDOW_CONSTRUCTION_1,77.92,0.00,0.00,77.92,77.92,2.954,0.391,0.305,,,No,94663C80-2BB1-498C-A0CB-A03722105057,180.36,90.00,S
,313396A9-6F9A-4E24-9E72-0B6500A752CE WINDOW,WINDOW_CONSTRUCTION_1,62.10,0.00,0.00,62.10,62.10,2.954,0.391,0.305,,,No,313396A9-6F9A-4E24-9E72-0B6500A752CE,90.36,90.00,E
,7521F29D-5C3F-4DA9-9001-A8EAC312AE83 WINDOW,WINDOW_CONSTRUCTION_1,113.26,0.00,0.00,113.26,113.26,2.954,0.391,0.305,,,No,7521F29D-5C3F-4DA9-9001-A8EAC312AE83,0.35,90.00,N
,34BC3599-AC57-4BBE-9D7F-2888C6DECCBA WINDOW,WINDOW_CONSTRUCTION_1,1.01,0.00,0.00,1.01,1.01,2.954,0.391,0.305,,,No,34BC3599-AC57-4BBE-9D7F-2888C6DECCBA,358.71,90.00,N
,D3A4085A-5BB6-4BC0-9EEE-4A62F3546745 WINDOW,WINDOW_CONSTRUCTION_1,0.80,0.00,0.00,0.80,0.80,2.954,0.391,0.305,,,No,D3A4085A-5BB6-4BC0-9EEE-4A62F3546745,90.31,90.00,E
,C49A2819-ED87-426F-B948-8E020E557A82 WINDOW,WINDOW_CONSTRUCTION_1,11.78,0.00,0.00,11.78,11.78,2.954,0.391,0.305,,,No,C49A2819-ED87-426F-B948-8E020E557A82,269.70,90.00,W
,CB9B966A-B94D-4D90-9A4C-95B4643AC214 WINDOW,WINDOW_CONSTRUCTION_1,25.78,0.00,0.00,25.78,25.78,2.954,0.391,0.305,,,No,CB9B966A-B94D-4D90-9A4C-95B4643AC214,179.68,90.00,S
,9A933A7F-CF1D-4664-9EC0-7EC0F9C89CDA WINDOW,WINDOW_CONSTRUCTION_1,10.80,0.00,0.00,10.80,10.80,2.954,0.391,0.305,,,No,9A933A7F-CF1D-4664-9EC0-7EC0F9C89CDA,89.74,90.00,E
,CFDEA50D-2C69-4366-B555-567EAF33DC9F WINDOW,WINDOW_CONSTRUCTION_1,12.11,0.00,0.00,12.11,12.11,2.954,0.391,0.305,,,No,CFDEA50D-2C69-4366-B555-567EAF33DC9F,90.03,90.00,E
,EB711559-2FD4-4ED3-825F-FD9EA05F253D WINDOW,WINDOW_CONSTRUCTION_1,26.05,0.00,0.00,26.05,26.05,2.954,0.391,0.305,,,No,EB711559-2FD4-4ED3-825F-FD9EA05F253D,359.95,90.00,N
,9D3EA49E-464E-4B27-ABE9-C16FDFD4C166 WINDOW,WINDOW_CONSTRUCTION_1,12.02,0.00,0.00,12.02,12.02,2.954,0.391,0.305,,,No,9D3EA49E-464E-4B27-ABE9-C16FDFD4C166,270.04,90.00,W
,2C88DABC-013D-4C68-B599-FFA7F23E1BA7 WINDOW,WINDOW_CONSTRUCTION_1,26.05,0.00,0.00,26.05,26.05,2.954,0.391,0.305,,,No,2C88DABC-013D-4C68-B599-FFA7F23E1BA7,180.13,90.00,S
,2C73C760-4411-444B-AD52-69E4D4C3EC74 WINDOW,WINDOW_CONSTRUCTION_1,0.80,0.00,0.00,0.80,0.80,2.954,0.391,0.305,,,No,2C73C760-4411-444B-AD52-69E4D4C3EC74,90.22,90.00,E
,6BD9CC5D-EBF7-4F80-8081-A2B4AD7289C1 WINDOW,WINDOW_CONSTRUCTION_1,21.37,0.00,0.00,21.37,21.37,2.954,0.391,0.305,,,No,6BD9CC5D-EBF7-4F80-8081-A2B4AD7289C1,359.45,90.00,N
,48E3DAD2-0DE1-45BF-AA96-BFF4AB2B62C3 WINDOW,WINDOW_CONSTRUCTION_1,0.95,0.00,0.00,0.95,0.95,2.954,0.391,0.305,,,No,48E3DAD2-0DE1-45BF-AA96-BFF4AB2B62C3,0.34,90.00,N
,EC1B4ACD-BDD6-42D0-8C8D-63F19F12588A WINDOW,WINDOW_CONSTRUCTION_1,11.21,0.00,0.00,11.21,11.21,2.954,0.391,0.305,,,No,EC1B4ACD-BDD6-42D0-8C8D-63F19F12588A,270.10,90.00,W
,C88BEAA9-D013-41CD-B847-F7EDB8C7A3DC WINDOW,WINDOW_CONSTRUCTION_1,10.67,0.00,0.00,10.67,10.67,2.954,0.391,0.305,,,No,C88BEAA9-D013-41CD-B847-F7EDB8C7A3DC,89.40,90.00,E
,A92AA13A-8C21-4BE2-84EB-C27DF99B34F2 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,A92AA13A-8C21-4BE2-84EB-C27DF99B34F2,90.32,90.00,E
,CCF64059-4168-4245-974F-8687C312C1F4 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,CCF64059-4168-4245-974F-8687C312C1F4,269.70,90.00,W
,9EC27607-BD73-4952-BD08-D2DCC38CF510 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,9EC27607-BD73-4952-BD08-D2DCC38CF510,89.40,90.00,E
,70BB2665-FF18-47CF-AC1F-65127F2EBB6F WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,70BB2665-FF18-47CF-AC1F-65127F2EBB6F,270.10,90.00,W
,854AC3BE-DB47-4CE7-A933-7CA461218A4D WINDOW,WINDOW_CONSTRUCTION_1,11.17,0.00,0.00,11.17,11.17,2.954,0.391,0.305,,,No,854AC3BE-DB47-4CE7-A933-7CA461218A4D,89.40,90.00,E
,3483C3BC-272A-4B86-A04C-AF36D5E4CC52 WINDOW,WINDOW_CONSTRUCTION_1,11.21,0.00,0.00,11.21,11.21,2.954,0.391,0.305,,,No,3483C3BC-272A-4B86-A04C-AF36D5E4CC52,270.10,90.00,W
,3CEF9635-8AEE-46FD-88CF-7B2BB45DF9EC WINDOW,WINDOW_CONSTRUCTION_1,22.18,0.00,0.00,22.18,22.18,2.954,0.391,0.305,,,No,3CEF9635-8AEE-46FD-88CF-7B2BB45DF9EC,180.04,90.00,S
,AAA045E5-0474-486F-B6B1-444DEBD6286D WINDOW,WINDOW_CONSTRUCTION_1,0.78,0.00,0.00,0.78,0.78,2.954,0.391,0.305,,,No,AAA045E5-0474-486F-B6B1-444DEBD6286D,179.52,90.00,S
,57A8693C-CCDF-4C91-AAAD-0725191E1ABA WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,57A8693C-CCDF-4C91-AAAD-0725191E1ABA,89.40,90.00,E
,8A3589E7-E5C2-4C83-A13E-2392FCCB5161 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,8A3589E7-E5C2-4C83-A13E-2392FCCB5161,270.10,90.00,W
,ACED190C-5B13-4767-8FD3-210D24B1C73A WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,ACED190C-5B13-4767-8FD3-210D24B1C73A,89.40,90.00,E
,A15A5516-0E86-494B-9106-ACEB50A9AE6F WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,A15A5516-0E86-494B-9106-ACEB50A9AE6F,270.10,90.00,W
,597E8893-BF63-4356-83EB-581A544045AC WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,597E8893-BF63-4356-83EB-581A544045AC,90.32,90.00,E
,E9F9F468-BE3C-406C-A131-151A54D54C3B WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,E9F9F468-BE3C-406C-A131-151A54D54C3B,269.70,90.00,W
,81D97B28-7FE0-47F3-A8EF-DBC87B6FA485 WINDOW,WINDOW_CONSTRUCTION_1,9.25,0.00,0.00,9.25,9.25,2.954,0.391,0.305,,,No,81D97B28-7FE0-47F3-A8EF-DBC87B6FA485,90.32,90.00,E
,465F65FE-61CA-4913-AA63-BD2BAD166056 WINDOW,WINDOW_CONSTRUCTION_1,1.76,0.00,0.00,1.76,1.76,2.954,0.391,0.305,,,No,465F65FE-61CA-4913-AA63-BD2BAD166056,89.91,90.00,E
,D4DDF175-8CE1-4DE4-920D-9E87760A2357 WINDOW,WINDOW_CONSTRUCTION_1,21.76,0.00,0.00,21.76,21.76,2.954,0.391,0.305,,,No,D4DDF175-8CE1-4DE4-920D-9E87760A2357,0.06,90.00,N
,CD9C1CCB-94C4-4D52-918E-02B6D9F23CD6 WINDOW,WINDOW_CONSTRUCTION_1,0.86,0.00,0.00,0.86,0.86,2.954,0.391,0.305,,,No,CD9C1CCB-94C4-4D52-918E-02B6D9F23CD6,359.13,90.00,N
,B8E5722F-137A-4265-A0C8-4477DACE4464 WINDOW,WINDOW_CONSTRUCTION_1,10.96,0.00,0.00,10.96,10.96,2.954,0.391,0.305,,,No,B8E5722F-137A-4265-A0C8-4477DACE4464,269.70,90.00,W
,7D0C86B4-2C88-4226-8256-72C260ECE0BD WINDOW,WINDOW_CONSTRUCTION_1,48.49,0.00,0.00,48.49,48.49,2.954,0.391,0.305,,,No,7D0C86B4-2C88-4226-8256-72C260ECE0BD,270.37,90.00,W
,AA54AC6D-9DE4-4186-B260-051460D41D27 WINDOW,WINDOW_CONSTRUCTION_1,7.68,0.00,0.00,7.68,7.68,2.954,0.391,0.305,,,No,AA54AC6D-9DE4-4186-B260-051460D41D27,0.73,90.00,N
,9E618400-85C5-496B-A5FA-54781BA43CEF WINDOW,WINDOW_CONSTRUCTION_1,9.13,0.00,0.00,9.13,9.13,2.954,0.391,0.305,,,No,9E618400-85C5-496B-A5FA-54781BA43CEF,269.95,90.00,W
,8CC9A5F8-7042-4266-B52C-96552E8171FD WINDOW,WINDOW_CONSTRUCTION_1,5.95,0.00,0.00,5.95,5.95,2.954,0.391,0.305,,,No,8CC9A5F8-7042-4266-B52C-96552E8171FD,0.68,90.00,N
,BD015AC2-ED48-45A8-AFF2-AAA3F0E7E0F8 WINDOW,WINDOW_CONSTRUCTION_1,59.55,0.00,0.00,59.55,59.55,2.954,0.391,0.305,,,No,BD015AC2-ED48-45A8-AFF2-AAA3F0E7E0F8,270.63,90.00,W
,51CACE5A-D4F2-4D1B-ACB5-FFDBAF04A5E3 WINDOW,WINDOW_CONSTRUCTION_1,1.59,0.00,0.00,1.59,1.59,2.954,0.391,0.305,,,No,51CACE5A-D4F2-4D1B-ACB5-FFDBAF04A5E3,271.07,90.00,W
,CCB7F46B-11E3-47EF-9D74-515E3A60294A WINDOW,WINDOW_CONSTRUCTION_1,6.70,0.00,0.00,6.70,6.70,2.954,0.391,0.305,,,No,CCB7F46B-11E3-47EF-9D74-515E3A60294A,180.88,90.00,S
,3F743FC3-A3AF-44B1-8C5B-8A239C7A0DF1 WINDOW,WINDOW_CONSTRUCTION_1,8.72,0.00,0.00,8.72,8.72,2.954,0.391,0.305,,,No,3F743FC3-A3AF-44B1-8C5B-8A239C7A0DF1,270.81,90.00,W
,2A3D3C01-7AC9-49C3-9D0F-CCC7112F80E7 WINDOW,WINDOW_CONSTRUCTION_1,9.04,0.00,0.00,9.04,9.04,2.954,0.391,0.305,,,No,2A3D3C01-7AC9-49C3-9D0F-CCC7112F80E7,180.83,90.00,S
,404B2F49-3137-4D51-9B65-BA17039744A7 WINDOW,WINDOW_CONSTRUCTION_1,47.57,0.00,0.00,47.57,47.57,2.954,0.391,0.305,,,No,404B2F49-3137-4D51-9B65-BA17039744A7,270.81,90.00,W
,5E512775-1BB9-4BFF-B0C1-56B547F0A8DF WINDOW,WINDOW_CONSTRUCTION_1,98.64,0.00,0.00,98.64,98.64,2.954,0.391,0.305,,,No,5E512775-1BB9-4BFF-B0C1-56B547F0A8DF,180.80,90.00,S
,E8D59443-A80D-4458-8F69-7EF4938D44C7 WINDOW,WINDOW_CONSTRUCTION_1,1.46,0.00,0.00,1.46,1.46,2.954,0.391,0.305,,,No,E8D59443-A80D-4458-8F69-7EF4938D44C7,181.90,90.00,S
,F90B3E61-9004-40B2-A979-81DAB0B99469 WINDOW,WINDOW_CONSTRUCTION_1,2.94,0.00,0.00,2.94,2.94,2.954,0.391,0.305,,,No,F90B3E61-9004-40B2-A979-81DAB0B99469,90.30,90.00,E
,334BAEB1-D3D8-43BC-9D18-8C8D5497B950 WINDOW,WINDOW_CONSTRUCTION_1,12.79,0.00,0.00,12.79,12.79,2.954,0.391,0.305,,,No,334BAEB1-D3D8-43BC-9D18-8C8D5497B950,180.36,90.00,S
,F2773F25-BF65-4CE3-89EC-CA874375AA3F WINDOW,WINDOW_CONSTRUCTION_1,59.93,0.00,0.00,59.93,59.93,2.954,0.391,0.305,,,No,F2773F25-BF65-4CE3-89EC-CA874375AA3F,90.35,90.00,E
,1CA10200-62C5-402B-909C-83A2A86AC628 WINDOW,WINDOW_CONSTRUCTION_1,78.94,0.00,0.00,78.94,78.94,2.954,0.391,0.305,,,No,1CA10200-62C5-402B-909C-83A2A86AC628,0.36,90.00,N
,CACC7EAD-4051-4299-A3FE-A21BD1EA6C93 WINDOW,WINDOW_CONSTRUCTION_1,50.93,0.00,0.00,50.93,50.93,2.954,0.391,0.305,,,No,CACC7EAD-4051-4299-A3FE-A21BD1EA6C93,90.36,90.00,E
,8278B81D-4747-472F-A7F3-0F5F4834369E WINDOW,WINDOW_CONSTRUCTION_1,77.92,0.00,0.00,77.92,77.92,2.954,0.391,0.305,,,No,8278B81D-4747-472F-A7F3-0F5F4834369E,180.36,90.00,S
,EA7A188E-C0DD-41FB-AFFB-5546DD3ED8A0 WINDOW,WINDOW_CONSTRUCTION_1,62.10,0.00,0.00,62.10,62.10,2.954,0.391,0.305,,,No,EA7A188E-C0DD-41FB-AFFB-5546DD3ED8A0,90.36,90.00,E
,5E175F67-94FE-490D-AD22-13AD9EA2F624 WINDOW,WINDOW_CONSTRUCTION_1,113.26,0.00,0.00,113.26,113.26,2.954,0.391,0.305,,,No,5E175F67-94FE-490D-AD22-13AD9EA2F624,0.35,90.00,N
,8F1314AA-7CA7-4107-BFD4-E601556F45F2 WINDOW,WINDOW_CONSTRUCTION_1,1.01,0.00,0.00,1.01,1.01,2.954,0.391,0.305,,,No,8F1314AA-7CA7-4107-BFD4-E601556F45F2,358.71,90.00,N
,996A84C5-812F-403B-879D-7233B65AA66F WINDOW,WINDOW_CONSTRUCTION_1,0.80,0.00,0.00,0.80,0.80,2.954,0.391,0.305,,,No,996A84C5-812F-403B-879D-7233B65AA66F,90.31,90.00,E
,48618736-DEE0-4588-AFDF-D82A1EC13FB0 WINDOW,WINDOW_CONSTRUCTION_1,11.78,0.00,0.00,11.78,11.78,2.954,0.391,0.305,,,No,48618736-DEE0-4588-AFDF-D82A1EC13FB0,269.70,90.00,W
,C4EA0EBA-E459-4E6E-BC40-59E57B9A1AB5 WINDOW,WINDOW_CONSTRUCTION_1,25.78,0.00,0.00,25.78,25.78,2.954,0.391,0.305,,,No,C4EA0EBA-E459-4E6E-BC40-59E57B9A1AB5,179.68,90.00,S
,96E4C93A-7D73-4F02-A1B0-1BA8B18682D1 WINDOW,WINDOW_CONSTRUCTION_1,10.80,0.00,0.00,10.80,10.80,2.954,0.391,0.305,,,No,96E4C93A-7D73-4F02-A1B0-1BA8B18682D1,89.74,90.00,E
,E2ECFD8B-F3B6-4753-A361-6F442C491E6C WINDOW,WINDOW_CONSTRUCTION_1,12.11,0.00,0.00,12.11,12.11,2.954,0.391,0.305,,,No,E2ECFD8B-F3B6-4753-A361-6F442C491E6C,90.03,90.00,E
,DA9F4734-38C4-42B7-8862-1E510B356BD9 WINDOW,WINDOW_CONSTRUCTION_1,26.05,0.00,0.00,26.05,26.05,2.954,0.391,0.305,,,No,DA9F4734-38C4-42B7-8862-1E510B356BD9,359.95,90.00,N
,C860B96F-077E-4B02-A9F9-B55670FD477B WINDOW,WINDOW_CONSTRUCTION_1,12.02,0.00,0.00,12.02,12.02,2.954,0.391,0.305,,,No,C860B96F-077E-4B02-A9F9-B55670FD477B,270.04,90.00,W
,480A21AF-85AE-4059-B848-33FD5F3A5720 WINDOW,WINDOW_CONSTRUCTION_1,26.05,0.00,0.00,26.05,26.05,2.954,0.391,0.305,,,No,480A21AF-85AE-4059-B848-33FD5F3A5720,180.13,90.00,S
,DB1D1E20-BE98-49D4-9E40-1940144BF615 WINDOW,WINDOW_CONSTRUCTION_1,0.80,0.00,0.00,0.80,0.80,2.954,0.391,0.305,,,No,DB1D1E20-BE98-49D4-9E40-1940144BF615,90.22,90.00,E
,8FC429BC-81D9-449A-80A9-38F77B3E66DD WINDOW,WINDOW_CONSTRUCTION_1,21.37,0.00,0.00,21.37,21.37,2.954,0.391,0.305,,,No,8FC429BC-81D9-449A-80A9-38F77B3E66DD,359.45,90.00,N
,759D0D84-9F31-46A9-AB0C-A80AF93CD9F9 WINDOW,WINDOW_CONSTRUCTION_1,0.95,0.00,0.00,0.95,0.95,2.954,0.391,0.305,,,No,759D0D84-9F31-46A9-AB0C-A80AF93CD9F9,0.34,90.00,N
,2FB34A99-C1EA-45CB-A3BE-D36736D9F6D4 WINDOW,WINDOW_CONSTRUCTION_1,11.21,0.00,0.00,11.21,11.21,2.954,0.391,0.305,,,No,2FB34A99-C1EA-45CB-A3BE-D36736D9F6D4,270.10,90.00,W
,5EC4A61B-3773-449F-B181-753456E72C34 WINDOW,WINDOW_CONSTRUCTION_1,10.67,0.00,0.00,10.67,10.67,2.954,0.391,0.305,,,No,5EC4A61B-3773-449F-B181-753456E72C34,89.40,90.00,E
,D9F477EB-A2BB-45DC-80C6-F24D09A96A5C WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,D9F477EB-A2BB-45DC-80C6-F24D09A96A5C,90.32,90.00,E
,12B9DB48-E074-4E87-8478-9A8221BFECE1 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,12B9DB48-E074-4E87-8478-9A8221BFECE1,269.70,90.00,W
,D15932BE-B61F-4D05-8F3D-A538ADA1C1B9 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,D15932BE-B61F-4D05-8F3D-A538ADA1C1B9,89.40,90.00,E
,D7BFAC7E-FFE4-43E5-A664-66123D42D5E0 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,D7BFAC7E-FFE4-43E5-A664-66123D42D5E0,270.10,90.00,W
,88E8F7FF-619E-4595-81EB-D5BAD7867696 WINDOW,WINDOW_CONSTRUCTION_1,11.17,0.00,0.00,11.17,11.17,2.954,0.391,0.305,,,No,88E8F7FF-619E-4595-81EB-D5BAD7867696,89.40,90.00,E
,28CE80FE-FE76-466F-A7EB-88A00D656F05 WINDOW,WINDOW_CONSTRUCTION_1,11.21,0.00,0.00,11.21,11.21,2.954,0.391,0.305,,,No,28CE80FE-FE76-466F-A7EB-88A00D656F05,270.10,90.00,W
,F5F1247A-88BE-4F06-B629-4C3613F82D51 WINDOW,WINDOW_CONSTRUCTION_1,22.18,0.00,0.00,22.18,22.18,2.954,0.391,0.305,,,No,F5F1247A-88BE-4F06-B629-4C3613F82D51,180.04,90.00,S
,B8CB1843-0410-4673-BFD4-5DC3C73F2BDD WINDOW,WINDOW_CONSTRUCTION_1,0.78,0.00,0.00,0.78,0.78,2.954,0.391,0.305,,,No,B8CB1843-0410-4673-BFD4-5DC3C73F2BDD,179.52,90.00,S
,23571505-EC9B-43AD-BFCA-E0997E7A40A6 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,23571505-EC9B-43AD-BFCA-E0997E7A40A6,89.40,90.00,E
,ED2B8CED-C770-4499-B4D2-1F89BA80E037 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,ED2B8CED-C770-4499-B4D2-1F89BA80E037,270.10,90.00,W
,39CD3473-FBC3-431F-B595-088111688FF0 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,39CD3473-FBC3-431F-B595-088111688FF0,89.40,90.00,E
,E3C38143-FDEB-4CAD-BFDE-4855A94C5FFE WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,E3C38143-FDEB-4CAD-BFDE-4855A94C5FFE,270.10,90.00,W
,Total or Average,,,,,,1128.02,2.954,0.391,0.305,,,,,,,
,North Total or Average,,,,,,277.84,2.954,0.391,0.305,,,,,,,
,Non-North Total or Average,,,,,,850.18,2.954,0.391,0.305,,,,,,,

1 Program Version:,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.21 10:16 Program Version:,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 13:46
2 Tabular Output Report in Format: ,Comma
3 Building:,Buildings in b'Montreal'
4 Environment:,RUN PERIOD 1 ** Montreal Int'l PQ CAN WYEC2-B-94792 WMO#=716270
205 ,176296,96.97,Yes,Yes,969.68,1.00,423.43,0.00,76.23,76.23,16.5060,8.33,15.0055
206 ,177698,96.59,Yes,Yes,869.35,1.00,249.95,0.00,45.00,45.00,16.5060,8.33,15.0055
207 ,178164,88.02,Yes,Yes,792.22,1.00,114.82,0.00,20.67,20.67,16.5060,8.33,15.0055
208 ,181359,89.11,Yes,Yes,801.95,1.00,114.83,0.00,20.67,20.67,16.5060,8.33,15.0055
209 ,181706,97.60,Yes,Yes,878.41,1.00,251.85,0.00,45.34,45.34,16.5060,8.33,15.0055
210 ,183144,89.61,Yes,Yes,806.45,1.00,114.83,0.00,20.67,20.67,16.5060,8.33,15.0055
211 ,183243,88.61,Yes,Yes,797.45,1.00,114.83,0.00,20.67,20.67,16.5060,8.33,15.0055
373 ,57A8693C-CCDF-4C91-AAAD-0725191E1ABA,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E ,23571505-EC9B-43AD-BFCA-E0997E7A40A6,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E
374 ,8A3589E7-E5C2-4C83-A13E-2392FCCB5161,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W ,ED2B8CED-C770-4499-B4D2-1F89BA80E037,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W
375 ,87C8F1CB-443B-4C6F-AFEF-BBF5C177512A,1981_1990_6,0.40,0.639,0.713,89.61,89.61,0.14,180.00, ,5B52E826-42B4-4A00-9549-10196A13F76D,1981_1990_6,0.40,0.639,0.713,89.61,89.61,0.14,180.00,
376 ,2D4357FE-8B7F-4996-AE6E-413A1D733446,1981_1990_6,0.40,0.649,0.713,89.61,89.61,0.14,0.00, ,36849036-C5B5-40B7-8F21-F853A75F082B,1981_1990_6,0.40,0.649,0.713,89.61,89.61,0.14,0.00,
377 ,ACED190C-5B13-4767-8FD3-210D24B1C73A,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E ,39CD3473-FBC3-431F-B595-088111688FF0,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E
378 ,A15A5516-0E86-494B-9106-ACEB50A9AE6F,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W ,E3C38143-FDEB-4CAD-BFDE-4855A94C5FFE,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W
379 ,2D07A52E-2D21-4E96-AFF7-D489D8D83560,1981_1990_6,0.40,0.639,0.713,88.61,88.61,0.14,180.00, ,CC5D3CDE-CC73-4B55-9BE2-DA25001A6EA6,1981_1990_6,0.40,0.639,0.713,88.61,88.61,0.14,180.00,
380 ,FDCF25E5-06C1-4B1A-9661-677FE95B28DA,1981_1990_6,0.40,0.649,0.713,88.61,88.61,0.14,0.00, ,BC98B527-A9A7-4167-8D48-AD07E222751B,1981_1990_6,0.40,0.649,0.713,88.61,88.61,0.14,0.00,
381 Opaque Interior
382 ,,Construction,Reflectance,U-Factor with Film [W/m2-K],U-Factor no Film [W/m2-K],Gross Area [m2],Net Area [m2],Azimuth [deg],Tilt [deg],Cardinal Direction
383 ,D61EDFC5-3A2B-4754-9701-AF5837BDE4C0,1981_1990_6,0.40,0.609,0.713,125.11,125.11,0.14,90.00,N ,500F7547-EA7A-498B-8000-CC091AFCE755,1981_1990_6,0.40,0.609,0.713,125.11,125.11,0.14,90.00,N
384 ,31AFB167-A379-4F4C-9BC4-A232ECF39CD6,1981_1990_6,0.40,0.609,0.713,124.50,124.50,180.14,90.00,S ,398D7259-ACD4-4A78-B8DD-F50A483BBA9D,1981_1990_6,0.40,0.609,0.713,124.50,124.50,180.14,90.00,S
385 ,0C7C5F8B-1E8D-4A84-83E1-A4BA4DA017DC,1981_1990_6,0.40,0.609,0.713,125.11,125.11,180.14,90.00,S ,6AC6AA25-5E89-4029-9946-74804658CAF4,1981_1990_6,0.40,0.609,0.713,125.11,125.11,180.14,90.00,S
386 ,4668EFE0-5255-4A3F-92E8-465BFEC7A023,1981_1990_6,0.40,0.609,0.713,137.65,137.65,0.14,90.00,N ,84E6204F-F657-41CA-BD9C-FF8DD55FDCD9,1981_1990_6,0.40,0.609,0.713,137.65,137.65,0.14,90.00,N
387 ,AC676F79-22FF-443D-B3F8-DE9BE3882230,1981_1990_6,0.40,0.609,0.713,124.66,124.66,180.14,90.00,S ,8DFBD53D-371B-4A6F-9422-D041D8AADF88,1981_1990_6,0.40,0.609,0.713,124.66,124.66,180.14,90.00,S
388 ,1E227EB9-1E76-45A4-97C1-C2150DC6981D,1981_1990_6,0.40,0.609,0.713,124.50,124.50,0.14,90.00,N ,4A29AC31-F3CA-4AE3-AF0C-5D2899DDD309,1981_1990_6,0.40,0.609,0.713,124.50,124.50,0.14,90.00,N
389 ,C4B33EE1-913A-44E6-895A-00187083E503,1981_1990_6,0.40,0.609,0.713,123.89,123.89,180.14,90.00,S ,1542594C-4A08-4E29-BBB6-BF6798DD1E56,1981_1990_6,0.40,0.609,0.713,123.89,123.89,180.14,90.00,S
390 ,C624AE68-0972-41AB-B983-63341316A356,1981_1990_6,0.40,0.609,0.713,125.36,125.36,0.14,90.00,N ,F72F957D-1E74-40BC-B6CB-D42C2B474277,1981_1990_6,0.40,0.609,0.713,125.36,125.36,0.14,90.00,N
391 ,611EDE91-A2CB-47E6-BEA7-985F6568D57B,1981_1990_6,0.40,0.609,0.713,126.07,126.07,180.14,90.00,S ,53505FE8-5ADB-4B73-BD6C-955D322B0A64,1981_1990_6,0.40,0.609,0.713,126.07,126.07,180.14,90.00,S
392 ,4784E25C-523C-4098-B91B-01593EA56D07,1981_1990_6,0.40,0.609,0.713,126.77,126.77,0.14,90.00,N ,744EAE42-6F20-4700-9BFC-85DD929A297D,1981_1990_6,0.40,0.609,0.713,126.77,126.77,0.14,90.00,N
393 ,AA41D277-A045-4628-8941-9D6FCCA71D8E,1981_1990_6,0.40,0.609,0.713,126.07,126.07,0.14,90.00,N ,CB1B4365-3338-4050-8DE9-CBD4EBF6ACE2,1981_1990_6,0.40,0.609,0.713,126.07,126.07,0.14,90.00,N
394 ,40E1720D-794E-49DB-863F-18F95B978CEF,1981_1990_6,0.40,0.609,0.713,126.77,126.77,180.14,90.00,S ,7FA395E8-2B05-448A-B1B1-9CA854CD4CDB,1981_1990_6,0.40,0.609,0.713,126.77,126.77,180.14,90.00,S
395 ,5868F322-7B22-4FB5-BE43-C41C4491F897,1981_1990_6,0.40,0.609,0.713,124.66,124.66,0.14,90.00,N ,E8EAF434-D518-420C-A1AE-4F9AC185C3C7,1981_1990_6,0.40,0.609,0.713,124.66,124.66,0.14,90.00,N
396 ,3621CC15-71DC-496F-9F02-9A87E583FCA9,1981_1990_6,0.40,0.609,0.713,125.36,125.36,180.14,90.00,S ,E2AF1629-BF60-4BA4-B83F-DA0427CC5520,1981_1990_6,0.40,0.609,0.713,125.36,125.36,180.14,90.00,S
397 Exterior Fenestration
398 ,,Construction,Glass Area [m2],Frame Area [m2],Divider Area [m2],Area of One Opening [m2],Area of Multiplied Openings [m2],Glass U-Factor [W/m2-K],Glass SHGC,Glass Visible Transmittance,Frame Conductance [W/m2-K],Divider Conductance [W/m2-K],Shade Control,Parent Surface,Azimuth [deg],Tilt [deg],Cardinal Direction
399 ,DA2DBB08-CA41-4871-A0A8-4673E8576B05 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,DA2DBB08-CA41-4871-A0A8-4673E8576B05,90.32,90.00,E ,597E8893-BF63-4356-83EB-581A544045AC WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,597E8893-BF63-4356-83EB-581A544045AC,90.32,90.00,E
400 ,C78EBBD1-8B31-4836-AB90-A46F01BF1586 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,C78EBBD1-8B31-4836-AB90-A46F01BF1586,269.70,90.00,W ,E9F9F468-BE3C-406C-A131-151A54D54C3B WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,E9F9F468-BE3C-406C-A131-151A54D54C3B,269.70,90.00,W
401 ,10FF4FC7-A92B-4B40-957C-3A008648856F WINDOW,WINDOW_CONSTRUCTION_1,9.25,0.00,0.00,9.25,9.25,2.954,0.391,0.305,,,No,10FF4FC7-A92B-4B40-957C-3A008648856F,90.32,90.00,E ,81D97B28-7FE0-47F3-A8EF-DBC87B6FA485 WINDOW,WINDOW_CONSTRUCTION_1,9.25,0.00,0.00,9.25,9.25,2.954,0.391,0.305,,,No,81D97B28-7FE0-47F3-A8EF-DBC87B6FA485,90.32,90.00,E
402 ,8D624A84-35F4-4519-B253-C3B68564C560 WINDOW,WINDOW_CONSTRUCTION_1,1.76,0.00,0.00,1.76,1.76,2.954,0.391,0.305,,,No,8D624A84-35F4-4519-B253-C3B68564C560,89.91,90.00,E ,465F65FE-61CA-4913-AA63-BD2BAD166056 WINDOW,WINDOW_CONSTRUCTION_1,1.76,0.00,0.00,1.76,1.76,2.954,0.391,0.305,,,No,465F65FE-61CA-4913-AA63-BD2BAD166056,89.91,90.00,E
403 ,C22BEF2D-ADA4-4921-8DC1-B4D10711D5AF WINDOW,WINDOW_CONSTRUCTION_1,21.76,0.00,0.00,21.76,21.76,2.954,0.391,0.305,,,No,C22BEF2D-ADA4-4921-8DC1-B4D10711D5AF,0.06,90.00,N ,D4DDF175-8CE1-4DE4-920D-9E87760A2357 WINDOW,WINDOW_CONSTRUCTION_1,21.76,0.00,0.00,21.76,21.76,2.954,0.391,0.305,,,No,D4DDF175-8CE1-4DE4-920D-9E87760A2357,0.06,90.00,N
404 ,7DD990C9-3907-46C8-986C-FFAB3E416899 WINDOW,WINDOW_CONSTRUCTION_1,0.86,0.00,0.00,0.86,0.86,2.954,0.391,0.305,,,No,7DD990C9-3907-46C8-986C-FFAB3E416899,359.13,90.00,N ,CD9C1CCB-94C4-4D52-918E-02B6D9F23CD6 WINDOW,WINDOW_CONSTRUCTION_1,0.86,0.00,0.00,0.86,0.86,2.954,0.391,0.305,,,No,CD9C1CCB-94C4-4D52-918E-02B6D9F23CD6,359.13,90.00,N
405 ,586964D8-CB6B-4909-8141-CB24582E02D2 WINDOW,WINDOW_CONSTRUCTION_1,10.96,0.00,0.00,10.96,10.96,2.954,0.391,0.305,,,No,586964D8-CB6B-4909-8141-CB24582E02D2,269.70,90.00,W ,B8E5722F-137A-4265-A0C8-4477DACE4464 WINDOW,WINDOW_CONSTRUCTION_1,10.96,0.00,0.00,10.96,10.96,2.954,0.391,0.305,,,No,B8E5722F-137A-4265-A0C8-4477DACE4464,269.70,90.00,W
406 ,DEFCD208-A569-4F67-8057-9BBAA044D0D1 WINDOW,WINDOW_CONSTRUCTION_1,48.49,0.00,0.00,48.49,48.49,2.954,0.391,0.305,,,No,DEFCD208-A569-4F67-8057-9BBAA044D0D1,270.37,90.00,W ,7D0C86B4-2C88-4226-8256-72C260ECE0BD WINDOW,WINDOW_CONSTRUCTION_1,48.49,0.00,0.00,48.49,48.49,2.954,0.391,0.305,,,No,7D0C86B4-2C88-4226-8256-72C260ECE0BD,270.37,90.00,W
407 ,C4EE45BD-FFE9-4AE5-A943-19E38F02B369 WINDOW,WINDOW_CONSTRUCTION_1,7.68,0.00,0.00,7.68,7.68,2.954,0.391,0.305,,,No,C4EE45BD-FFE9-4AE5-A943-19E38F02B369,0.73,90.00,N ,AA54AC6D-9DE4-4186-B260-051460D41D27 WINDOW,WINDOW_CONSTRUCTION_1,7.68,0.00,0.00,7.68,7.68,2.954,0.391,0.305,,,No,AA54AC6D-9DE4-4186-B260-051460D41D27,0.73,90.00,N
408 ,C6E93FE0-9BD0-4988-A9FA-85E3087B4CAA WINDOW,WINDOW_CONSTRUCTION_1,9.13,0.00,0.00,9.13,9.13,2.954,0.391,0.305,,,No,C6E93FE0-9BD0-4988-A9FA-85E3087B4CAA,269.95,90.00,W ,9E618400-85C5-496B-A5FA-54781BA43CEF WINDOW,WINDOW_CONSTRUCTION_1,9.13,0.00,0.00,9.13,9.13,2.954,0.391,0.305,,,No,9E618400-85C5-496B-A5FA-54781BA43CEF,269.95,90.00,W
409 ,2ED136D2-C970-4AA9-AC6D-F1CF8E09BE42 WINDOW,WINDOW_CONSTRUCTION_1,5.95,0.00,0.00,5.95,5.95,2.954,0.391,0.305,,,No,2ED136D2-C970-4AA9-AC6D-F1CF8E09BE42,0.68,90.00,N ,8CC9A5F8-7042-4266-B52C-96552E8171FD WINDOW,WINDOW_CONSTRUCTION_1,5.95,0.00,0.00,5.95,5.95,2.954,0.391,0.305,,,No,8CC9A5F8-7042-4266-B52C-96552E8171FD,0.68,90.00,N
410 ,6C2F3EDC-54DF-4101-AB11-E65C22463480 WINDOW,WINDOW_CONSTRUCTION_1,59.55,0.00,0.00,59.55,59.55,2.954,0.391,0.305,,,No,6C2F3EDC-54DF-4101-AB11-E65C22463480,270.63,90.00,W ,BD015AC2-ED48-45A8-AFF2-AAA3F0E7E0F8 WINDOW,WINDOW_CONSTRUCTION_1,59.55,0.00,0.00,59.55,59.55,2.954,0.391,0.305,,,No,BD015AC2-ED48-45A8-AFF2-AAA3F0E7E0F8,270.63,90.00,W
411 ,5343466E-9F28-4B4B-8836-C64F48D3561B WINDOW,WINDOW_CONSTRUCTION_1,1.59,0.00,0.00,1.59,1.59,2.954,0.391,0.305,,,No,5343466E-9F28-4B4B-8836-C64F48D3561B,271.07,90.00,W ,51CACE5A-D4F2-4D1B-ACB5-FFDBAF04A5E3 WINDOW,WINDOW_CONSTRUCTION_1,1.59,0.00,0.00,1.59,1.59,2.954,0.391,0.305,,,No,51CACE5A-D4F2-4D1B-ACB5-FFDBAF04A5E3,271.07,90.00,W
412 ,CF45B16F-D9A0-4749-B814-DEB5F7437091 WINDOW,WINDOW_CONSTRUCTION_1,6.70,0.00,0.00,6.70,6.70,2.954,0.391,0.305,,,No,CF45B16F-D9A0-4749-B814-DEB5F7437091,180.88,90.00,S ,CCB7F46B-11E3-47EF-9D74-515E3A60294A WINDOW,WINDOW_CONSTRUCTION_1,6.70,0.00,0.00,6.70,6.70,2.954,0.391,0.305,,,No,CCB7F46B-11E3-47EF-9D74-515E3A60294A,180.88,90.00,S
413 ,CF45B86D-41F1-457B-A148-9732D24A4ACC WINDOW,WINDOW_CONSTRUCTION_1,8.72,0.00,0.00,8.72,8.72,2.954,0.391,0.305,,,No,CF45B86D-41F1-457B-A148-9732D24A4ACC,270.81,90.00,W ,3F743FC3-A3AF-44B1-8C5B-8A239C7A0DF1 WINDOW,WINDOW_CONSTRUCTION_1,8.72,0.00,0.00,8.72,8.72,2.954,0.391,0.305,,,No,3F743FC3-A3AF-44B1-8C5B-8A239C7A0DF1,270.81,90.00,W
414 ,64E08CB6-02C4-4CC0-B907-0B234905DBE8 WINDOW,WINDOW_CONSTRUCTION_1,9.04,0.00,0.00,9.04,9.04,2.954,0.391,0.305,,,No,64E08CB6-02C4-4CC0-B907-0B234905DBE8,180.83,90.00,S ,2A3D3C01-7AC9-49C3-9D0F-CCC7112F80E7 WINDOW,WINDOW_CONSTRUCTION_1,9.04,0.00,0.00,9.04,9.04,2.954,0.391,0.305,,,No,2A3D3C01-7AC9-49C3-9D0F-CCC7112F80E7,180.83,90.00,S
415 ,E596F062-D142-4026-B3A1-1F7A73B6820A WINDOW,WINDOW_CONSTRUCTION_1,47.57,0.00,0.00,47.57,47.57,2.954,0.391,0.305,,,No,E596F062-D142-4026-B3A1-1F7A73B6820A,270.81,90.00,W ,404B2F49-3137-4D51-9B65-BA17039744A7 WINDOW,WINDOW_CONSTRUCTION_1,47.57,0.00,0.00,47.57,47.57,2.954,0.391,0.305,,,No,404B2F49-3137-4D51-9B65-BA17039744A7,270.81,90.00,W
416 ,14C6C244-6A9A-46AA-8257-3CCD07AB4170 WINDOW,WINDOW_CONSTRUCTION_1,98.64,0.00,0.00,98.64,98.64,2.954,0.391,0.305,,,No,14C6C244-6A9A-46AA-8257-3CCD07AB4170,180.80,90.00,S ,5E512775-1BB9-4BFF-B0C1-56B547F0A8DF WINDOW,WINDOW_CONSTRUCTION_1,98.64,0.00,0.00,98.64,98.64,2.954,0.391,0.305,,,No,5E512775-1BB9-4BFF-B0C1-56B547F0A8DF,180.80,90.00,S
417 ,2D141783-9717-46F2-B1A8-3EFCD7D0B119 WINDOW,WINDOW_CONSTRUCTION_1,1.46,0.00,0.00,1.46,1.46,2.954,0.391,0.305,,,No,2D141783-9717-46F2-B1A8-3EFCD7D0B119,181.90,90.00,S ,E8D59443-A80D-4458-8F69-7EF4938D44C7 WINDOW,WINDOW_CONSTRUCTION_1,1.46,0.00,0.00,1.46,1.46,2.954,0.391,0.305,,,No,E8D59443-A80D-4458-8F69-7EF4938D44C7,181.90,90.00,S
418 ,F8D36176-0913-4B2E-9B2C-A234769A337E WINDOW,WINDOW_CONSTRUCTION_1,2.94,0.00,0.00,2.94,2.94,2.954,0.391,0.305,,,No,F8D36176-0913-4B2E-9B2C-A234769A337E,90.30,90.00,E ,F90B3E61-9004-40B2-A979-81DAB0B99469 WINDOW,WINDOW_CONSTRUCTION_1,2.94,0.00,0.00,2.94,2.94,2.954,0.391,0.305,,,No,F90B3E61-9004-40B2-A979-81DAB0B99469,90.30,90.00,E
419 ,0CDAF8EB-1CEB-48E3-B07A-0A94317CFBAD WINDOW,WINDOW_CONSTRUCTION_1,12.79,0.00,0.00,12.79,12.79,2.954,0.391,0.305,,,No,0CDAF8EB-1CEB-48E3-B07A-0A94317CFBAD,180.36,90.00,S ,334BAEB1-D3D8-43BC-9D18-8C8D5497B950 WINDOW,WINDOW_CONSTRUCTION_1,12.79,0.00,0.00,12.79,12.79,2.954,0.391,0.305,,,No,334BAEB1-D3D8-43BC-9D18-8C8D5497B950,180.36,90.00,S
420 ,D9652D85-82F3-44FB-9BA5-1334E49830A8 WINDOW,WINDOW_CONSTRUCTION_1,59.93,0.00,0.00,59.93,59.93,2.954,0.391,0.305,,,No,D9652D85-82F3-44FB-9BA5-1334E49830A8,90.35,90.00,E ,F2773F25-BF65-4CE3-89EC-CA874375AA3F WINDOW,WINDOW_CONSTRUCTION_1,59.93,0.00,0.00,59.93,59.93,2.954,0.391,0.305,,,No,F2773F25-BF65-4CE3-89EC-CA874375AA3F,90.35,90.00,E
421 ,9202E9EC-DA44-46BF-83A3-6F93C6796155 WINDOW,WINDOW_CONSTRUCTION_1,78.94,0.00,0.00,78.94,78.94,2.954,0.391,0.305,,,No,9202E9EC-DA44-46BF-83A3-6F93C6796155,0.36,90.00,N ,1CA10200-62C5-402B-909C-83A2A86AC628 WINDOW,WINDOW_CONSTRUCTION_1,78.94,0.00,0.00,78.94,78.94,2.954,0.391,0.305,,,No,1CA10200-62C5-402B-909C-83A2A86AC628,0.36,90.00,N
422 ,C375692C-BDC4-4BDC-B04F-3AA74CE227CC WINDOW,WINDOW_CONSTRUCTION_1,50.93,0.00,0.00,50.93,50.93,2.954,0.391,0.305,,,No,C375692C-BDC4-4BDC-B04F-3AA74CE227CC,90.36,90.00,E ,CACC7EAD-4051-4299-A3FE-A21BD1EA6C93 WINDOW,WINDOW_CONSTRUCTION_1,50.93,0.00,0.00,50.93,50.93,2.954,0.391,0.305,,,No,CACC7EAD-4051-4299-A3FE-A21BD1EA6C93,90.36,90.00,E
423 ,94663C80-2BB1-498C-A0CB-A03722105057 WINDOW,WINDOW_CONSTRUCTION_1,77.92,0.00,0.00,77.92,77.92,2.954,0.391,0.305,,,No,94663C80-2BB1-498C-A0CB-A03722105057,180.36,90.00,S ,8278B81D-4747-472F-A7F3-0F5F4834369E WINDOW,WINDOW_CONSTRUCTION_1,77.92,0.00,0.00,77.92,77.92,2.954,0.391,0.305,,,No,8278B81D-4747-472F-A7F3-0F5F4834369E,180.36,90.00,S
424 ,313396A9-6F9A-4E24-9E72-0B6500A752CE WINDOW,WINDOW_CONSTRUCTION_1,62.10,0.00,0.00,62.10,62.10,2.954,0.391,0.305,,,No,313396A9-6F9A-4E24-9E72-0B6500A752CE,90.36,90.00,E ,EA7A188E-C0DD-41FB-AFFB-5546DD3ED8A0 WINDOW,WINDOW_CONSTRUCTION_1,62.10,0.00,0.00,62.10,62.10,2.954,0.391,0.305,,,No,EA7A188E-C0DD-41FB-AFFB-5546DD3ED8A0,90.36,90.00,E
425 ,7521F29D-5C3F-4DA9-9001-A8EAC312AE83 WINDOW,WINDOW_CONSTRUCTION_1,113.26,0.00,0.00,113.26,113.26,2.954,0.391,0.305,,,No,7521F29D-5C3F-4DA9-9001-A8EAC312AE83,0.35,90.00,N ,5E175F67-94FE-490D-AD22-13AD9EA2F624 WINDOW,WINDOW_CONSTRUCTION_1,113.26,0.00,0.00,113.26,113.26,2.954,0.391,0.305,,,No,5E175F67-94FE-490D-AD22-13AD9EA2F624,0.35,90.00,N
426 ,34BC3599-AC57-4BBE-9D7F-2888C6DECCBA WINDOW,WINDOW_CONSTRUCTION_1,1.01,0.00,0.00,1.01,1.01,2.954,0.391,0.305,,,No,34BC3599-AC57-4BBE-9D7F-2888C6DECCBA,358.71,90.00,N ,8F1314AA-7CA7-4107-BFD4-E601556F45F2 WINDOW,WINDOW_CONSTRUCTION_1,1.01,0.00,0.00,1.01,1.01,2.954,0.391,0.305,,,No,8F1314AA-7CA7-4107-BFD4-E601556F45F2,358.71,90.00,N
427 ,D3A4085A-5BB6-4BC0-9EEE-4A62F3546745 WINDOW,WINDOW_CONSTRUCTION_1,0.80,0.00,0.00,0.80,0.80,2.954,0.391,0.305,,,No,D3A4085A-5BB6-4BC0-9EEE-4A62F3546745,90.31,90.00,E ,996A84C5-812F-403B-879D-7233B65AA66F WINDOW,WINDOW_CONSTRUCTION_1,0.80,0.00,0.00,0.80,0.80,2.954,0.391,0.305,,,No,996A84C5-812F-403B-879D-7233B65AA66F,90.31,90.00,E
428 ,C49A2819-ED87-426F-B948-8E020E557A82 WINDOW,WINDOW_CONSTRUCTION_1,11.78,0.00,0.00,11.78,11.78,2.954,0.391,0.305,,,No,C49A2819-ED87-426F-B948-8E020E557A82,269.70,90.00,W ,48618736-DEE0-4588-AFDF-D82A1EC13FB0 WINDOW,WINDOW_CONSTRUCTION_1,11.78,0.00,0.00,11.78,11.78,2.954,0.391,0.305,,,No,48618736-DEE0-4588-AFDF-D82A1EC13FB0,269.70,90.00,W
429 ,CB9B966A-B94D-4D90-9A4C-95B4643AC214 WINDOW,WINDOW_CONSTRUCTION_1,25.78,0.00,0.00,25.78,25.78,2.954,0.391,0.305,,,No,CB9B966A-B94D-4D90-9A4C-95B4643AC214,179.68,90.00,S ,C4EA0EBA-E459-4E6E-BC40-59E57B9A1AB5 WINDOW,WINDOW_CONSTRUCTION_1,25.78,0.00,0.00,25.78,25.78,2.954,0.391,0.305,,,No,C4EA0EBA-E459-4E6E-BC40-59E57B9A1AB5,179.68,90.00,S
430 ,9A933A7F-CF1D-4664-9EC0-7EC0F9C89CDA WINDOW,WINDOW_CONSTRUCTION_1,10.80,0.00,0.00,10.80,10.80,2.954,0.391,0.305,,,No,9A933A7F-CF1D-4664-9EC0-7EC0F9C89CDA,89.74,90.00,E ,96E4C93A-7D73-4F02-A1B0-1BA8B18682D1 WINDOW,WINDOW_CONSTRUCTION_1,10.80,0.00,0.00,10.80,10.80,2.954,0.391,0.305,,,No,96E4C93A-7D73-4F02-A1B0-1BA8B18682D1,89.74,90.00,E
431 ,CFDEA50D-2C69-4366-B555-567EAF33DC9F WINDOW,WINDOW_CONSTRUCTION_1,12.11,0.00,0.00,12.11,12.11,2.954,0.391,0.305,,,No,CFDEA50D-2C69-4366-B555-567EAF33DC9F,90.03,90.00,E ,E2ECFD8B-F3B6-4753-A361-6F442C491E6C WINDOW,WINDOW_CONSTRUCTION_1,12.11,0.00,0.00,12.11,12.11,2.954,0.391,0.305,,,No,E2ECFD8B-F3B6-4753-A361-6F442C491E6C,90.03,90.00,E
432 ,EB711559-2FD4-4ED3-825F-FD9EA05F253D WINDOW,WINDOW_CONSTRUCTION_1,26.05,0.00,0.00,26.05,26.05,2.954,0.391,0.305,,,No,EB711559-2FD4-4ED3-825F-FD9EA05F253D,359.95,90.00,N ,DA9F4734-38C4-42B7-8862-1E510B356BD9 WINDOW,WINDOW_CONSTRUCTION_1,26.05,0.00,0.00,26.05,26.05,2.954,0.391,0.305,,,No,DA9F4734-38C4-42B7-8862-1E510B356BD9,359.95,90.00,N
433 ,9D3EA49E-464E-4B27-ABE9-C16FDFD4C166 WINDOW,WINDOW_CONSTRUCTION_1,12.02,0.00,0.00,12.02,12.02,2.954,0.391,0.305,,,No,9D3EA49E-464E-4B27-ABE9-C16FDFD4C166,270.04,90.00,W ,C860B96F-077E-4B02-A9F9-B55670FD477B WINDOW,WINDOW_CONSTRUCTION_1,12.02,0.00,0.00,12.02,12.02,2.954,0.391,0.305,,,No,C860B96F-077E-4B02-A9F9-B55670FD477B,270.04,90.00,W
434 ,2C88DABC-013D-4C68-B599-FFA7F23E1BA7 WINDOW,WINDOW_CONSTRUCTION_1,26.05,0.00,0.00,26.05,26.05,2.954,0.391,0.305,,,No,2C88DABC-013D-4C68-B599-FFA7F23E1BA7,180.13,90.00,S ,480A21AF-85AE-4059-B848-33FD5F3A5720 WINDOW,WINDOW_CONSTRUCTION_1,26.05,0.00,0.00,26.05,26.05,2.954,0.391,0.305,,,No,480A21AF-85AE-4059-B848-33FD5F3A5720,180.13,90.00,S
435 ,2C73C760-4411-444B-AD52-69E4D4C3EC74 WINDOW,WINDOW_CONSTRUCTION_1,0.80,0.00,0.00,0.80,0.80,2.954,0.391,0.305,,,No,2C73C760-4411-444B-AD52-69E4D4C3EC74,90.22,90.00,E ,DB1D1E20-BE98-49D4-9E40-1940144BF615 WINDOW,WINDOW_CONSTRUCTION_1,0.80,0.00,0.00,0.80,0.80,2.954,0.391,0.305,,,No,DB1D1E20-BE98-49D4-9E40-1940144BF615,90.22,90.00,E
436 ,6BD9CC5D-EBF7-4F80-8081-A2B4AD7289C1 WINDOW,WINDOW_CONSTRUCTION_1,21.37,0.00,0.00,21.37,21.37,2.954,0.391,0.305,,,No,6BD9CC5D-EBF7-4F80-8081-A2B4AD7289C1,359.45,90.00,N ,8FC429BC-81D9-449A-80A9-38F77B3E66DD WINDOW,WINDOW_CONSTRUCTION_1,21.37,0.00,0.00,21.37,21.37,2.954,0.391,0.305,,,No,8FC429BC-81D9-449A-80A9-38F77B3E66DD,359.45,90.00,N
437 ,48E3DAD2-0DE1-45BF-AA96-BFF4AB2B62C3 WINDOW,WINDOW_CONSTRUCTION_1,0.95,0.00,0.00,0.95,0.95,2.954,0.391,0.305,,,No,48E3DAD2-0DE1-45BF-AA96-BFF4AB2B62C3,0.34,90.00,N ,759D0D84-9F31-46A9-AB0C-A80AF93CD9F9 WINDOW,WINDOW_CONSTRUCTION_1,0.95,0.00,0.00,0.95,0.95,2.954,0.391,0.305,,,No,759D0D84-9F31-46A9-AB0C-A80AF93CD9F9,0.34,90.00,N
438 ,EC1B4ACD-BDD6-42D0-8C8D-63F19F12588A WINDOW,WINDOW_CONSTRUCTION_1,11.21,0.00,0.00,11.21,11.21,2.954,0.391,0.305,,,No,EC1B4ACD-BDD6-42D0-8C8D-63F19F12588A,270.10,90.00,W ,2FB34A99-C1EA-45CB-A3BE-D36736D9F6D4 WINDOW,WINDOW_CONSTRUCTION_1,11.21,0.00,0.00,11.21,11.21,2.954,0.391,0.305,,,No,2FB34A99-C1EA-45CB-A3BE-D36736D9F6D4,270.10,90.00,W
439 ,C88BEAA9-D013-41CD-B847-F7EDB8C7A3DC WINDOW,WINDOW_CONSTRUCTION_1,10.67,0.00,0.00,10.67,10.67,2.954,0.391,0.305,,,No,C88BEAA9-D013-41CD-B847-F7EDB8C7A3DC,89.40,90.00,E ,5EC4A61B-3773-449F-B181-753456E72C34 WINDOW,WINDOW_CONSTRUCTION_1,10.67,0.00,0.00,10.67,10.67,2.954,0.391,0.305,,,No,5EC4A61B-3773-449F-B181-753456E72C34,89.40,90.00,E
440 ,A92AA13A-8C21-4BE2-84EB-C27DF99B34F2 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,A92AA13A-8C21-4BE2-84EB-C27DF99B34F2,90.32,90.00,E ,D9F477EB-A2BB-45DC-80C6-F24D09A96A5C WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,D9F477EB-A2BB-45DC-80C6-F24D09A96A5C,90.32,90.00,E
441 ,CCF64059-4168-4245-974F-8687C312C1F4 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,CCF64059-4168-4245-974F-8687C312C1F4,269.70,90.00,W ,12B9DB48-E074-4E87-8478-9A8221BFECE1 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,12B9DB48-E074-4E87-8478-9A8221BFECE1,269.70,90.00,W
442 ,9EC27607-BD73-4952-BD08-D2DCC38CF510 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,9EC27607-BD73-4952-BD08-D2DCC38CF510,89.40,90.00,E ,D15932BE-B61F-4D05-8F3D-A538ADA1C1B9 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,D15932BE-B61F-4D05-8F3D-A538ADA1C1B9,89.40,90.00,E
443 ,70BB2665-FF18-47CF-AC1F-65127F2EBB6F WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,70BB2665-FF18-47CF-AC1F-65127F2EBB6F,270.10,90.00,W ,D7BFAC7E-FFE4-43E5-A664-66123D42D5E0 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,D7BFAC7E-FFE4-43E5-A664-66123D42D5E0,270.10,90.00,W
444 ,854AC3BE-DB47-4CE7-A933-7CA461218A4D WINDOW,WINDOW_CONSTRUCTION_1,11.17,0.00,0.00,11.17,11.17,2.954,0.391,0.305,,,No,854AC3BE-DB47-4CE7-A933-7CA461218A4D,89.40,90.00,E ,88E8F7FF-619E-4595-81EB-D5BAD7867696 WINDOW,WINDOW_CONSTRUCTION_1,11.17,0.00,0.00,11.17,11.17,2.954,0.391,0.305,,,No,88E8F7FF-619E-4595-81EB-D5BAD7867696,89.40,90.00,E
445 ,3483C3BC-272A-4B86-A04C-AF36D5E4CC52 WINDOW,WINDOW_CONSTRUCTION_1,11.21,0.00,0.00,11.21,11.21,2.954,0.391,0.305,,,No,3483C3BC-272A-4B86-A04C-AF36D5E4CC52,270.10,90.00,W ,28CE80FE-FE76-466F-A7EB-88A00D656F05 WINDOW,WINDOW_CONSTRUCTION_1,11.21,0.00,0.00,11.21,11.21,2.954,0.391,0.305,,,No,28CE80FE-FE76-466F-A7EB-88A00D656F05,270.10,90.00,W
446 ,3CEF9635-8AEE-46FD-88CF-7B2BB45DF9EC WINDOW,WINDOW_CONSTRUCTION_1,22.18,0.00,0.00,22.18,22.18,2.954,0.391,0.305,,,No,3CEF9635-8AEE-46FD-88CF-7B2BB45DF9EC,180.04,90.00,S ,F5F1247A-88BE-4F06-B629-4C3613F82D51 WINDOW,WINDOW_CONSTRUCTION_1,22.18,0.00,0.00,22.18,22.18,2.954,0.391,0.305,,,No,F5F1247A-88BE-4F06-B629-4C3613F82D51,180.04,90.00,S
447 ,AAA045E5-0474-486F-B6B1-444DEBD6286D WINDOW,WINDOW_CONSTRUCTION_1,0.78,0.00,0.00,0.78,0.78,2.954,0.391,0.305,,,No,AAA045E5-0474-486F-B6B1-444DEBD6286D,179.52,90.00,S ,B8CB1843-0410-4673-BFD4-5DC3C73F2BDD WINDOW,WINDOW_CONSTRUCTION_1,0.78,0.00,0.00,0.78,0.78,2.954,0.391,0.305,,,No,B8CB1843-0410-4673-BFD4-5DC3C73F2BDD,179.52,90.00,S
448 ,57A8693C-CCDF-4C91-AAAD-0725191E1ABA WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,57A8693C-CCDF-4C91-AAAD-0725191E1ABA,89.40,90.00,E ,23571505-EC9B-43AD-BFCA-E0997E7A40A6 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,23571505-EC9B-43AD-BFCA-E0997E7A40A6,89.40,90.00,E
449 ,8A3589E7-E5C2-4C83-A13E-2392FCCB5161 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,8A3589E7-E5C2-4C83-A13E-2392FCCB5161,270.10,90.00,W ,ED2B8CED-C770-4499-B4D2-1F89BA80E037 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,ED2B8CED-C770-4499-B4D2-1F89BA80E037,270.10,90.00,W
450 ,ACED190C-5B13-4767-8FD3-210D24B1C73A WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,ACED190C-5B13-4767-8FD3-210D24B1C73A,89.40,90.00,E ,39CD3473-FBC3-431F-B595-088111688FF0 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,39CD3473-FBC3-431F-B595-088111688FF0,89.40,90.00,E
451 ,A15A5516-0E86-494B-9106-ACEB50A9AE6F WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,A15A5516-0E86-494B-9106-ACEB50A9AE6F,270.10,90.00,W ,E3C38143-FDEB-4CAD-BFDE-4855A94C5FFE WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,E3C38143-FDEB-4CAD-BFDE-4855A94C5FFE,270.10,90.00,W
452 ,Total or Average,,,,,,1128.02,2.954,0.391,0.305,,,,,,,
453 ,North Total or Average,,,,,,277.84,2.954,0.391,0.305,,,,,,,
454 ,Non-North Total or Average,,,,,,850.18,2.954,0.391,0.305,,,,,,,
455 Interior Fenestration
456 ,,Construction,Area of One Opening [m2],Area of Openings [m2],Glass U-Factor [W/m2-K],Glass SHGC,Glass Visible Transmittance,Parent Surface
457 ,Total or Average,,,0.00,-,-,-,
458 Exterior Door
459 ,,Construction,U-Factor with Film [W/m2-K],U-Factor no Film [W/m2-K],Gross Area [m2],Parent Surface
460 ,None,,,,,
461 Interior Door
462 ,,Construction,U-Factor with Film [W/m2-K],U-Factor no Film [W/m2-K],Gross Area [m2],Parent Surface
463 ,None,,,,,
464 ----------------------------------------------------------------------------------------------------
465 REPORT:,Lighting Summary
466 FOR:,Entire Facility
467 Interior Lighting
468 ,,Zone,Lighting Power Density [W/m2],Zone Area [m2],Total Power [W],End Use Subcategory,Schedule Name,Scheduled Hours/Week [hr],Hours/Week > 1% [hr],Full Load Hours/Week [hr],Return Air Fraction,Conditioned (Y/N),Consumption [kWh]
469 ,173347_LIGHTS,173347,16.5060,88.46,1460.14,ELECTRIC EQUIPMENT#173347#GeneralLights,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,39.20,63.00,39.20,0.0000,Y,2984.42
470 ,173348_LIGHTS,173348,16.5060,94.56,1560.75,ELECTRIC EQUIPMENT#173348#GeneralLights,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,39.20,63.00,39.20,0.0000,Y,3190.05
471 ,175012_LIGHTS,175012,27.5100,2308.92,63518.52,ELECTRIC EQUIPMENT#175012#GeneralLights,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,39.20,63.00,39.20,0.0000,Y,129827.20
472 ,176261_LIGHTS,176261,16.5060,92.64,1529.05,ELECTRIC EQUIPMENT#176261#GeneralLights,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,39.20,63.00,39.20,0.0000,Y,3125.26
473 ,176296_LIGHTS,176296,16.5060,96.97,1600.56,ELECTRIC EQUIPMENT#176296#GeneralLights,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,39.20,63.00,39.20,0.0000,Y,3271.43
474 ,177698_LIGHTS,177698,16.5060,96.59,1594.39,ELECTRIC EQUIPMENT#177698#GeneralLights,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,39.20,63.00,39.20,0.0000,Y,3258.81
475 ,178164_LIGHTS,178164,16.5060,88.02,1452.93,ELECTRIC EQUIPMENT#178164#GeneralLights,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,39.20,63.00,39.20,0.0000,Y,2969.69
476 ,181359_LIGHTS,181359,16.5060,89.11,1470.78,ELECTRIC EQUIPMENT#181359#GeneralLights,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,39.20,63.00,39.20,0.0000,Y,3006.17
477 ,181706_LIGHTS,181706,16.5060,97.60,1611.01,ELECTRIC EQUIPMENT#181706#GeneralLights,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,39.20,63.00,39.20,0.0000,Y,3292.79
478 ,183144_LIGHTS,183144,16.5060,89.61,1479.03,ELECTRIC EQUIPMENT#183144#GeneralLights,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,39.20,63.00,39.20,0.0000,Y,3023.02
479 ,183243_LIGHTS,183243,16.5060,88.61,1462.52,ELECTRIC EQUIPMENT#183243#GeneralLights,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,39.20,63.00,39.20,0.0000,Y,2989.28
480 ,Interior Lighting Total,,24.3694,3231.08,78739.67,,,,,,,,160938.11
481 Daylighting
482 ,,Zone,Control Name,Daylighting Method,Control Type,Fraction Controlled,Lighting Installed in Zone [W],Lighting Controlled [W]
483 ,None,,,,,,,
484 Exterior Lighting
485 ,,Total Watts,Astronomical Clock/Schedule,Schedule Name,Scheduled Hours/Week [hr],Hours/Week > 1% [hr],Full Load Hours/Week [hr],Consumption [kWh]
486 ,Exterior Lighting Total,0.00,,,,,,0.00
487 ----------------------------------------------------------------------------------------------------
488 REPORT:,Equipment Summary
489 FOR:,Entire Facility
490 Central Plant
491 ,,Type,Nominal Capacity [W],Nominal Efficiency [W/W],IPLV in SI Units [W/W],IPLV in IP Units [Btu/W-h]
492 ,None,,,,,
493 Cooling Coils
494 ,,Type,Design Coil Load [W],Nominal Total Capacity [W],Nominal Sensible Capacity [W],Nominal Latent Capacity [W],Nominal Sensible Heat Ratio,Nominal Efficiency [W/W],Nominal Coil UA Value [W/C],Nominal Coil Surface Area [m2]
495 ,None,,,,,,,,,
496 DX Cooling Coils
497 ,,DX Cooling Coil Type,Standard Rated Net Cooling Capacity [W],Standard Rated Net COP [W/W],EER [Btu/W-h],SEER User [Btu/W-h],SEER Standard [Btu/W-h],IEER [Btu/W-h]
498 ,None,,,,,,,
499 DX Cooling Coil ASHRAE 127 Standard Ratings Report
500 ,,DX Cooling Coil Type,Rated Net Cooling Capacity Test A [W],Rated Electric Power Test A [W],Rated Net Cooling Capacity Test B [W],Rated Electric Power Test B [W],Rated Net Cooling Capacity Test C [W],Rated Electric Power Test C [W],Rated Net Cooling Capacity Test D [W],Rated Electric Power Test D [W]
501 ,None,,,,,,,,,
502 DX Heating Coils
503 ,,DX Heating Coil Type,High Temperature Heating (net) Rating Capacity [W],Low Temperature Heating (net) Rating Capacity [W],HSPF [Btu/W-h],Region Number
504 ,None,,,,,
505 Heating Coils
506 ,,Type,Design Coil Load [W],Nominal Total Capacity [W],Nominal Efficiency [W/W]
507 ,None,,,,
508 Fans
509 ,,Type,Total Efficiency [W/W],Delta Pressure [pa],Max Air Flow Rate [m3/s],Rated Electricity Rate [W],Rated Power Per Max Air Flow Rate [W-s/m3],Motor Heat In Air Fraction,Fan Energy Index,End Use Subcategory,Design Day Name for Fan Sizing Peak,Date/Time for Fan Sizing Peak
510 ,None,,,,,,,,,,,
511 Pumps
512 ,,Type,Control,Head [pa],Water Flow [m3/s],Electricity Rate [W],Power Per Water Flow Rate [W-s/m3],Motor Efficiency [W/W],End Use Subcategory
513 ,None,,,,,,,,
514 Service Water Heating
515 ,,Type,Storage Volume [m3],Input [W],Thermal Efficiency [W/W],Recovery Efficiency [W/W],Energy Factor
516 ,None,,,,,,
517 ----------------------------------------------------------------------------------------------------
518 REPORT:,HVAC Sizing Summary
519 FOR:,Entire Facility
520 Zone Sensible Cooling
521 ,,Calculated Design Load [W],User Design Load [W],User Design Load per Area [W/m2],Calculated Design Air Flow [m3/s],User Design Air Flow [m3/s],Design Day Name,Date/Time Of Peak {TIMESTAMP},Thermostat Setpoint Temperature at Peak Load [C],Indoor Temperature at Peak Load [C],Indoor Humidity Ratio at Peak Load [kgWater/kgDryAir],Outdoor Temperature at Peak Load [C],Outdoor Humidity Ratio at Peak Load [kgWater/kgDryAir],Minimum Outdoor Air Flow Rate [m3/s],Heat Gain Rate from DOAS [W]
522 ,None,,,,,,,,,,,,,,
523 The Design Load is the zone sensible load only. It does not include any system effects or ventilation loads.
524 Zone Sensible Heating
525 ,,Calculated Design Load [W],User Design Load [W],User Design Load per Area [W/m2],Calculated Design Air Flow [m3/s],User Design Air Flow [m3/s],Design Day Name,Date/Time Of Peak {TIMESTAMP},Thermostat Setpoint Temperature at Peak Load [C],Indoor Temperature at Peak Load [C],Indoor Humidity Ratio at Peak Load [kgWater/kgDryAir],Outdoor Temperature at Peak Load [C],Outdoor Humidity Ratio at Peak Load [kgWater/kgDryAir],Minimum Outdoor Air Flow Rate [m3/s],Heat Gain Rate from DOAS [W]
526 ,None,,,,,,,,,,,,,,
527 The Design Load is the zone sensible load only. It does not include any system effects or ventilation loads.
528 System Design Air Flow Rates
529 ,,Calculated cooling [m3/s],User cooling [m3/s],Calculated heating [m3/s],User heating [m3/s],Adjusted cooling [m3/s],Adjusted heating [m3/s],Adjusted main [m3/s],Calculated Heating Air Flow Ratio [],User Heating Air Flow Ratio []
530 ,None,,,,,,,,,

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,159 @@
"""
This project aims to assign energy systems archetype names to Montreal buildings.
The random assignation is based on statistical information extracted from different sources, being:
- For residential buildings:
- SHEU 2015: https://oee.nrcan.gc.ca/corporate/statistics/neud/dpa/menus/sheu/2015/tables.cfm
- For non-residential buildings:
- Montreal dataportal: https://dataportalforcities.org/north-america/canada/quebec/montreal
- https://www.eia.gov/consumption/commercial/data/2018/
"""
import glob
import json
import random
from pathlib import Path
from hub.city_model_structure.building import Building
from hub.city_model_structure.city import City
import hub.helpers.constants as cte
energy_systems_format = 'montreal_custom'
# parameters:
residential_systems_percentage = {'system 1 gas': 44,
'system 1 electricity': 6,
'system 2 gas': 0,
'system 2 electricity': 0,
'system 3 and 4 gas': 0,
'system 3 and 4 electricity': 0,
'system 5 gas': 0,
'system 5 electricity': 0,
'system 6 gas': 0,
'system 6 electricity': 0,
'system 8 gas': 44,
'system 8 electricity': 6}
non_residential_systems_percentage = {'system 1 gas': 0,
'system 1 electricity': 0,
'system 2 gas': 0,
'system 2 electricity': 0,
'system 3 and 4 gas': 39,
'system 3 and 4 electricity': 36,
'system 5 gas': 0,
'system 5 electricity': 0,
'system 6 gas': 13,
'system 6 electricity': 12,
'system 8 gas': 0,
'system 8 electricity': 0}
def _retrieve_buildings(path, year_of_construction_field=None,
function_field=None, function_to_hub=None, aliases_field=None):
_buildings = []
with open(path, 'r', encoding='utf8') as json_file:
_geojson = json.loads(json_file.read())
for feature in _geojson['features']:
_building = {}
year_of_construction = None
if year_of_construction_field is not None:
year_of_construction = int(feature['properties'][year_of_construction_field])
function = None
if function_field is not None:
function = feature['properties'][function_field]
if function_to_hub is not None:
# use the transformation dictionary to retrieve the proper function
if function in function_to_hub:
function = function_to_hub[function]
building_name = ''
building_aliases = []
if 'id' in feature:
building_name = feature['id']
if aliases_field is not None:
for alias_field in aliases_field:
building_aliases.append(feature['properties'][alias_field])
_building['year_of_construction'] = year_of_construction
_building['function'] = function
_building['building_name'] = building_name
_building['building_aliases'] = building_aliases
_buildings.append(_building)
return _buildings
def _call_random(_buildings: [Building], _systems_percentage):
_buildings_with_systems = []
_systems_distribution = []
_selected_buildings = list(range(0, len(_buildings)))
random.shuffle(_selected_buildings)
total = 0
maximum = 0
add_to = 0
for _system in _systems_percentage:
if _systems_percentage[_system] > 0:
number_of_buildings = round(_systems_percentage[_system] / 100 * len(_selected_buildings))
_systems_distribution.append({'system': _system, 'number': _systems_percentage[_system],
'number_of_buildings': number_of_buildings})
if number_of_buildings > maximum:
maximum = number_of_buildings
add_to = len(_systems_distribution) - 1
total += number_of_buildings
missing = 0
if total != len(_selected_buildings):
missing = len(_selected_buildings)-total
if missing != 0:
_systems_distribution[add_to]['number_of_buildings'] += missing
_position = 0
for case in _systems_distribution:
for i in range(0, case['number_of_buildings']):
_buildings[_selected_buildings[_position]].energy_systems_archetype_name = case['system']
_position += 1
return _buildings
# try:
# print('[simulation start]')
# input_path = Path('').resolve()
# output_path = Path('').resolve()
# files = glob.glob(str(input_path / '*'))
# processed_files = glob.glob(str(output_path / '*'))
#
# files_to_skip = []
#
# # keep track of processed pickles, so we don't process them again
# for processed_file in processed_files:
# files_to_skip.append(Path(processed_file).resolve().stem)
#
# for file in files:
# if Path(file).stem not in files_to_skip:
# city = City.load(file)
# available_systems = residential_systems_percentage.keys()
# residential_buildings = []
# non_residential_buildings = []
# for building in city.buildings:
# if building.function == cte.RESIDENTIAL:
# residential_buildings.append(building)
# else:
# non_residential_buildings.append(building)
# buildings_with_systems = _call_random(residential_buildings, available_systems, residential_systems_percentage)
# buildings_with_systems.extend(_call_random(non_residential_buildings, available_systems,
# non_residential_systems_percentage))
# file_path = (output_path / f'{Path(file).stem}.pickle').resolve()
# city.save(file_path)
# print(f'[{file_path} completed]')
#
# else:
# print(f"{Path(file)} already processed - skipping")
#
# except Exception as ex:
# print(ex)
# print('error: ', ex)
# print('[simulation abort]')
####My Randomization
# num_buildings = len(city.buildings)
# energy_systems = []
# for _ in range(num_buildings):
# system_archetype = random.choices(
# list(random_assignation.residential_systems_percentage.keys()),
# weights=list(random_assignation.residential_systems_percentage.values())
# )[0]
# energy_systems.append(system_archetype)
# for building, energy_system in zip(city.buildings, energy_systems):
# building.energy_systems_archetype_name = energy_system

View File

@ -33,6 +33,7 @@ class TestSystemsCatalog(TestCase):
with self.assertRaises(IndexError):
catalog.get_entry('unknown')
print(catalog.entries())
def test_north_america_systems_catalog(self):
catalog = EnergySystemsCatalogFactory('north_america').catalog

View File

@ -77,7 +77,7 @@ class TestSystemsFactory(TestCase):
ResultFactory('insel_monthly_energy_balance', self._city, self._output_path).enrich()
for building in self._city.buildings:
building.energy_systems_archetype_name = 'system 1 gas pv'
building.energy_systems_archetype_name = 'system 1 electricity'
EnergySystemsFactory('montreal_custom', self._city).enrich()
# Need to assign energy systems to buildings:
for building in self._city.buildings: