diff --git a/hub/imports/energy_systems/energy_system_sizing.py b/hub/imports/energy_systems/energy_system_sizing.py new file mode 100644 index 00000000..68c191f3 --- /dev/null +++ b/hub/imports/energy_systems/energy_system_sizing.py @@ -0,0 +1,43 @@ +""" +Energy System rule-based sizing +SPDX - License - Identifier: LGPL - 3.0 - or -later +Copyright © 2023 Concordia CERC group +Project Coder Saeed Ranjbar saeed.ranjbar@concordia.ca +""" + +import hub.helpers.constants as cte + + +class SystemSizing: + """ + The energy system sizing class + """ + def __init__(self, buildings): + self.buildings = buildings + + def hvac_sizing(self): + for building in self.buildings: + peak_heating_demand = building.heating_peak_load[cte.YEAR][0] + peak_cooling_demand = building.cooling_peak_load[cte.YEAR][0] + if peak_heating_demand > peak_cooling_demand: + sizing_demand = peak_heating_demand + for system in building.energy_systems: + if 'Heating' in system.demand_types: + for generation in system.generation_systems: + if generation.system_type == 'Heat Pump': + generation.nominal_heat_output = 0.6 * sizing_demand / 1000 + elif generation.system_type == 'Boiler': + generation.nominal_heat_output = 0.4 * sizing_demand / 1000 + + else: + sizing_demand = peak_cooling_demand + for system in building.energy_systems: + if 'Cooling' in system.demand_types: + for generation in system.generation_systems: + if generation.system_type == 'Heat Pump': + generation.nominal_heat_output = sizing_demand / 1000 + + + + + diff --git a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py index 51165126..98e1801d 100644 --- a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py @@ -116,7 +116,7 @@ class MontrealCustomEnergySystemParameters: _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_system.energy_storage_systems = _storage_systems _generation_systems.append(_generation_system) return _generation_systems diff --git a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py index f898cdfa..4f4f2b67 100644 --- a/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py +++ b/hub/imports/energy_systems/north_america_custom_energy_system_parameters.py @@ -119,7 +119,7 @@ class NorthAmericaCustomEnergySystemParameters: _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_system.energy_storage_systems = _storage_systems _generation_systems.append(_generation_system) return _generation_systems diff --git a/main.py b/main.py index 2673d838..f2f9507a 100644 --- a/main.py +++ b/main.py @@ -7,9 +7,9 @@ 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.random_assignation import call_random, residential_systems_percentage +from scripts.random_assignation import call_random, residential_systems_percentage, residential_new_systems_percentage import hub.helpers.constants as cte - +from hub.imports.energy_systems.energy_system_sizing import SystemSizing geojson_file = process_geojson(x=-73.567908, y=45.492783, diff=0.00045) file_path = (Path(__file__).parent.parent / 'input_files' / f'{geojson_file}') print('[simulation start]') @@ -30,6 +30,9 @@ energy_plus_workflow(city) city_buildings_peak_heating_demands = {} for building in city.buildings: city_buildings_peak_heating_demands[f'{building.name}'] = building.heating_peak_load[cte.YEAR] -call_random(city.buildings, residential_systems_percentage) -EnergySystemsFactory('montreal_custom', city).enrich() +# call_random(city.buildings, residential_systems_percentage) +# EnergySystemsFactory('montreal_custom', city).enrich() +call_random(city.buildings, residential_new_systems_percentage) +EnergySystemsFactory('north_america', city).enrich() +SystemSizing(city.buildings).hvac_sizing() print('test') diff --git a/out_files/Montreal.idf b/out_files/Montreal.idf index 60eca2e2..1c527d10 100644 --- a/out_files/Montreal.idf +++ b/out_files/Montreal.idf @@ -1199,7 +1199,7 @@ ZONE, Yes; !- Part of Total Floor Area BUILDINGSURFACE:DETAILED, - 49a6a0d1-21fa-4174-a2e8-6e59f41be8b9, !- Name + f865dfc4-f54f-4140-92dc-0d85027b6556, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 173347, !- Zone Name @@ -1223,7 +1223,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6714f8ce-fbe1-41fa-8146-152344e45e89, !- Name + 66443928-1b2b-4d46-a3a3-5fb64b451447, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 173347, !- Zone Name @@ -1247,7 +1247,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - e9a776d7-c08a-4903-bdde-33a1b75c006f, !- Name + 88d081f6-1235-44a7-a462-7d1ce4b365bf, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173347, !- Zone Name @@ -1271,12 +1271,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - f4521949-b172-4b21-bf0b-6432aa6135a1, !- Name + d524e2bc-728b-4064-a728-b9233029f720, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173347, !- Zone Name Surface, !- Outside Boundary Condition - f4521949-b172-4b21-bf0b-6432aa6135a1, !- Outside Boundary Condition Object + d524e2bc-728b-4064-a728-b9233029f720, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -1295,7 +1295,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 06e83efc-71d1-45fe-85ea-e7ee9a7664b1, !- Name + 04e70fd4-4e5a-4f9e-99f0-91053f07191e, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173347, !- Zone Name @@ -1319,12 +1319,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - e8bf2a49-1558-41bc-96cb-123915d688bf, !- Name + 4e32ac48-ce37-4ab6-b73b-84bb5568732a, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173347, !- Zone Name Surface, !- Outside Boundary Condition - e8bf2a49-1558-41bc-96cb-123915d688bf, !- Outside Boundary Condition Object + 4e32ac48-ce37-4ab6-b73b-84bb5568732a, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -1343,7 +1343,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d6f1dc5c-00ea-4f85-aaa6-4d2c54bfa8a8, !- Name + 74c42012-9742-41a2-b35f-cc626fa4017d, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name @@ -1373,7 +1373,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - a804ac39-e991-4fa7-8ebd-6e9de27c6449, !- Name + 52ebfd0a-5c2e-431e-b4d4-ffefe9d94edc, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name @@ -1403,7 +1403,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - a0cc674e-7ff5-4e87-8d8b-d2879920f518, !- Name + 69f96927-5bf0-4a6d-828e-bfc11fe57194, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name @@ -1427,7 +1427,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6894ae2c-4de8-4004-b743-24810745043c, !- Name + bd731930-1f08-4394-84a6-108312b0499e, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name @@ -1451,7 +1451,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 8a44dcd0-5eaf-4ea2-83d6-e10cc7697fc1, !- Name + 1eca129c-b7e5-44fa-b5e6-c3d5ff00d1f7, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name @@ -1475,7 +1475,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 3476659a-7777-4217-879b-ec7411a9f8f4, !- Name + 237e30f1-ccc2-4275-ae30-f820ae689bdb, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name @@ -1499,7 +1499,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a987c29f-99c1-411a-9cc3-0afbb35d9ab2, !- Name + 6bd00b18-05ed-4d63-9e3b-27db4f7d91fb, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name @@ -1523,12 +1523,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - deb2faca-865f-4594-9474-dbc514c3e015, !- Name + 38c5298b-d4af-4c7e-bbf0-01ec4f15e3fa, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name Surface, !- Outside Boundary Condition - deb2faca-865f-4594-9474-dbc514c3e015, !- Outside Boundary Condition Object + 38c5298b-d4af-4c7e-bbf0-01ec4f15e3fa, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -1547,7 +1547,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 95977b63-da57-40d5-a214-4d2fabca5347, !- Name + ce148459-71bf-43f3-ae25-19fe02b0fd00, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1619,7 +1619,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 20 Zcoordinate BUILDINGSURFACE:DETAILED, - d6a7ed84-8e6c-4cb5-835c-1ada1608f8de, !- Name + f535e8fa-0079-4d18-84fd-c9c325421b0f, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1691,7 +1691,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 20 Zcoordinate BUILDINGSURFACE:DETAILED, - d29ed729-a377-4d42-8e37-86d29faa692b, !- Name + 94ed4bc5-ac57-4fad-8621-a249c5c04a9f, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1715,7 +1715,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1d1dbdbf-a442-426b-aba9-a6644ec6ccaf, !- Name + b1d68f62-6daa-49f7-88c2-b93e7cf18406, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1739,7 +1739,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 9027ab96-d388-4204-9515-8638e09e0d23, !- Name + e2d1fa98-7e9e-4610-a6ab-8dbe69551ff5, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1763,7 +1763,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d80e753d-3a26-4eda-90b8-b445fdd923b1, !- Name + 988d81d6-2b4e-45b8-9071-65cf25a15c59, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1787,7 +1787,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d2676432-8b98-4881-b152-c2993d54e04b, !- Name + da12b56f-c238-405c-8837-5f503fea4f6f, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1811,7 +1811,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - cabc4bc7-a75c-4989-aeda-0753936a5dee, !- Name + 0857330d-b5cd-4746-a5e9-251fad1ef835, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1835,7 +1835,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 7c52c57c-7025-415d-a9b8-f5aaf8f58535, !- Name + 753b8448-f2a4-4695-9b8e-a18b5952391f, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1859,7 +1859,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 9de3270a-551d-407e-a8b2-0639ae103505, !- Name + d5d765f2-1092-48fa-a7b7-b154ee277681, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1883,7 +1883,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 197a0d24-9f0a-416b-ab79-18597f66c1ac, !- Name + 70bbbb3c-93c6-4afc-a5a8-beea6e9502bb, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1907,7 +1907,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - fa41c2ed-457a-4e6b-9607-bda10b64a2ee, !- Name + 41045d45-cd0c-4e6a-b2e0-e81dc2bccd38, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1931,7 +1931,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6138df36-e729-49f2-b62f-4870fc39c64f, !- Name + 9485d7b2-3887-412f-a921-fa3ab2023fdd, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1955,7 +1955,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - b1db9ae1-c1a3-41ab-9591-e8bd85e6e624, !- Name + dc0198e1-ef8a-4ae4-b856-023f4e25c845, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1979,7 +1979,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 7b0da88c-0b47-4d1a-b84e-aeb70e93020c, !- Name + 305f15fb-acec-4e3c-a6a8-b02c34cc8918, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2003,7 +2003,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - dd970e33-a623-4ce7-aafb-8ed198b8ca1c, !- Name + 71c66759-4e9f-48c2-976c-b60d6d1f99a5, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2027,7 +2027,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 02cdc36c-704d-47b9-afec-41f43222d0f4, !- Name + 2bf4d215-25db-4cda-b12b-672631606f4c, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2051,7 +2051,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 2142ebb0-161e-43ee-b6de-a5dad97612cc, !- Name + 92866768-61ad-482d-8464-11a50625de49, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2075,7 +2075,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - bf2a5a5a-2c66-46bb-9f00-08702ff2cea2, !- Name + 0f2f3ac9-46fa-4b2f-b880-bdf7e42a0686, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2099,7 +2099,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1da28fd9-438e-44b3-8ab1-d14cd1dcd738, !- Name + 80f9b9aa-47ee-41e1-aa48-f7a1a65c2e05, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2123,7 +2123,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - b227dda2-bc10-42a6-bfeb-b934b789f695, !- Name + 8a46261e-00f3-4288-8fcc-0223ae4b2a7c, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2147,7 +2147,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d86fc62f-269c-45de-84ed-d5a196e2095e, !- Name + dd481caa-73de-47fd-9f74-9b22ce720b44, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2171,7 +2171,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 8c214f58-37b7-4e41-afeb-b048bca834ae, !- Name + 3880cea6-b84d-46d9-860d-f6e0613132c8, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name @@ -2201,7 +2201,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - 37756d72-403d-46f2-9cde-4e412064828f, !- Name + 59867b21-8dea-45d3-882b-467cabae3a3d, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name @@ -2231,7 +2231,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - cdb601e5-0866-416b-89eb-d048e5859786, !- Name + 79f4e5ca-4739-4a69-9955-726c8e859b53, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name @@ -2255,7 +2255,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - c0c8c17c-fc22-4b92-a946-702e972aa329, !- Name + aafb61e8-dfa8-4b3a-be5f-150953bc84e5, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name @@ -2279,12 +2279,12 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1b24ca94-8734-4d2b-b6fd-e88558aed682, !- Name + 1d17a2b6-8f51-445b-9fc7-dc14a2bd768a, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name Surface, !- Outside Boundary Condition - 1b24ca94-8734-4d2b-b6fd-e88558aed682, !- Outside Boundary Condition Object + 1d17a2b6-8f51-445b-9fc7-dc14a2bd768a, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -2303,7 +2303,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d280607f-5351-4a50-81cd-d03df7a28c0d, !- Name + f21d70fc-7c69-49c4-a53e-2d940858a186, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name @@ -2327,7 +2327,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - befa0f66-abf7-4e7a-a02c-0b31babea113, !- Name + ac2b4e2f-d856-4604-9b60-33146cc9c4ed, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name @@ -2351,7 +2351,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - bef1b1ab-759c-483f-939c-bfca5b2118ef, !- Name + 7d0e5f1d-cd74-4723-b33d-d86d6e019b1d, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name @@ -2375,7 +2375,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - e562fe09-b0c0-4242-8049-66a78d056bb6, !- Name + fd0a6dc8-dc3c-4eb9-a239-c41322b19974, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 176296, !- Zone Name @@ -2399,7 +2399,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 13da738a-2538-4fbe-a6ac-9e17a5a66381, !- Name + 63bd75e1-8467-47ef-9a4c-ed2fffa673f2, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 176296, !- Zone Name @@ -2423,7 +2423,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - bef3d9a2-b25f-44e4-b611-e021b6179865, !- Name + 78985b62-1778-40bf-b4f1-3de39fd7ef10, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176296, !- Zone Name @@ -2447,7 +2447,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - ec306a3c-7b56-44d5-a4de-2e6d6c180df8, !- Name + 207e14b7-dc3a-414c-b35e-6c546bfbb70b, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176296, !- Zone Name @@ -2471,7 +2471,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 955bdc8b-fadc-4dc9-9146-015e44f6d0f9, !- Name + a97f4ca2-37a6-4d25-80b4-85a86eb2282c, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176296, !- Zone Name @@ -2495,7 +2495,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 74146306-5cc3-4df9-b2dd-4e2fe410da48, !- Name + b518af5b-943a-4354-8536-323fe5eddd66, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176296, !- Zone Name @@ -2519,7 +2519,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 61be9590-ee2c-4510-a65e-9d9707059d72, !- Name + 972ed882-d0c4-4dee-aa68-ec83c3b05847, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name @@ -2549,7 +2549,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - 29aa4e15-ec14-45b9-be01-3968b1f66ba3, !- Name + 0d04e8e8-eeb5-4799-afbd-d04ffeace9d6, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name @@ -2579,7 +2579,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - bf81a09d-7eb2-443c-9dbe-7ccf41e9e733, !- Name + e1634d44-c4a7-4008-8d97-d9e8fe6b4420, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name @@ -2603,7 +2603,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 910ec237-d19c-44d2-a0af-53394d66badb, !- Name + af582559-958b-453e-af2c-ba7d24fe67f3, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name @@ -2627,7 +2627,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - dc8b7a69-b843-43f8-810c-af6503e94abf, !- Name + 603180bb-ee2e-44df-8c24-564538c6645d, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name @@ -2651,7 +2651,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - dd09fb31-d077-415a-8a35-d4b8e4105f74, !- Name + b9f1215c-96e0-4fed-b11f-96dd0c091107, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name @@ -2675,12 +2675,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - ee425a30-d8ee-49ae-a2b1-23e47576e76c, !- Name + 3c62b4c3-89af-402c-9c82-75d0daf853b5, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name Surface, !- Outside Boundary Condition - ee425a30-d8ee-49ae-a2b1-23e47576e76c, !- Outside Boundary Condition Object + 3c62b4c3-89af-402c-9c82-75d0daf853b5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -2699,7 +2699,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 3eb30793-160d-41d4-ad8a-36e1cff208c6, !- Name + afef7551-521f-4136-8ee4-a8bb569626fb, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name @@ -2723,7 +2723,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 2389dae8-0f83-4e21-8250-4e7dc4fe3025, !- Name + 7e806f25-f937-4252-9d48-cf9a67048d43, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 178164, !- Zone Name @@ -2747,7 +2747,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d3620589-f605-42a2-8a8a-5a76a2147b39, !- Name + 4a48dd1c-bf95-4351-acca-318f847cbb15, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 178164, !- Zone Name @@ -2771,7 +2771,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 74ca1532-4928-42e1-ae6c-111556837b7e, !- Name + f8c808e6-1058-4e27-bfd8-82088ae3596a, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 178164, !- Zone Name @@ -2795,12 +2795,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 2ba28a3d-41a2-4142-8333-ff3f43829c37, !- Name + 34a34eee-7fa0-4ea3-86a5-454dd1ccbcea, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 178164, !- Zone Name Surface, !- Outside Boundary Condition - 2ba28a3d-41a2-4142-8333-ff3f43829c37, !- Outside Boundary Condition Object + 34a34eee-7fa0-4ea3-86a5-454dd1ccbcea, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -2819,7 +2819,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - b9be6c6f-0afa-49ad-b01f-b622a8d5ab55, !- Name + c93c41eb-4593-463d-9913-dd0afe16ece0, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 178164, !- Zone Name @@ -2843,12 +2843,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a4bbe0e0-ac85-41f6-bae0-458acd59e93c, !- Name + bb4039f6-7fad-4efa-a6a6-196288bd39b2, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 178164, !- Zone Name Surface, !- Outside Boundary Condition - a4bbe0e0-ac85-41f6-bae0-458acd59e93c, !- Outside Boundary Condition Object + bb4039f6-7fad-4efa-a6a6-196288bd39b2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -2867,7 +2867,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - bdee1547-d4c7-40c6-9996-7530ef5a1a75, !- Name + 0a1babd4-7600-4e7b-92e4-f079c5590fbd, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 181359, !- Zone Name @@ -2891,7 +2891,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a4840188-8df8-4eaa-b5f2-ea27ad8da333, !- Name + 1e711381-c0e2-414c-ba3b-bc973c771588, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 181359, !- Zone Name @@ -2915,7 +2915,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - ddcf0603-5da2-4bc2-8cd9-9c786ef507f8, !- Name + cd1e2a22-2eb1-439e-a009-442290519521, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181359, !- Zone Name @@ -2939,12 +2939,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - efac6c0b-d77a-473f-bc48-bdd80ec20b23, !- Name + 66e4aac0-93d3-42f7-b771-fc7dabe24f05, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181359, !- Zone Name Surface, !- Outside Boundary Condition - efac6c0b-d77a-473f-bc48-bdd80ec20b23, !- Outside Boundary Condition Object + 66e4aac0-93d3-42f7-b771-fc7dabe24f05, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -2963,7 +2963,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - e5a6337e-9cdc-41fb-bce3-bf0e99836fb9, !- Name + 885ed1bd-2100-4737-9188-c7067f7af8b7, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181359, !- Zone Name @@ -2987,12 +2987,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - df3e69b8-fc69-416b-9d2c-1d745df31efd, !- Name + cf93e454-a5d6-4068-a469-8bad34f58312, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181359, !- Zone Name Surface, !- Outside Boundary Condition - df3e69b8-fc69-416b-9d2c-1d745df31efd, !- Outside Boundary Condition Object + cf93e454-a5d6-4068-a469-8bad34f58312, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -3011,7 +3011,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - db7435cb-e409-4e62-8b46-061b84825686, !- Name + b3610b1f-c7ec-48cb-8864-ed2314340442, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 181706, !- Zone Name @@ -3038,7 +3038,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 5 Zcoordinate BUILDINGSURFACE:DETAILED, - 1642787d-cdb7-40b1-96de-a28b6b1a6568, !- Name + 7b45e5a9-a529-4471-b0f6-4c2b2d6a679a, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 181706, !- Zone Name @@ -3065,7 +3065,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 5 Zcoordinate BUILDINGSURFACE:DETAILED, - 869a399d-0da3-4cde-ad63-60bfdac22071, !- Name + 7abb3f53-807e-4b86-86e3-8b940af12731, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181706, !- Zone Name @@ -3089,12 +3089,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d9827025-1b3e-4617-9371-9b0e29a8780b, !- Name + 4f5a8482-3ce8-4e34-b831-9664f23ec464, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181706, !- Zone Name Surface, !- Outside Boundary Condition - d9827025-1b3e-4617-9371-9b0e29a8780b, !- Outside Boundary Condition Object + 4f5a8482-3ce8-4e34-b831-9664f23ec464, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -3113,7 +3113,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6ed55f0d-f5cd-49c2-8f09-54d704a502fa, !- Name + 5d0bae4c-b3eb-48a9-968f-d72760e72ed9, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181706, !- Zone Name @@ -3137,7 +3137,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - dbabeafe-8c2d-40ef-a157-12f9ba741b94, !- Name + f1395637-7dda-44af-834d-48dfdf24db83, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181706, !- Zone Name @@ -3161,7 +3161,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 690a4f44-19b1-4de4-9442-7b0128c1d064, !- Name + 8912da34-87a5-4126-a1f1-1552f5aae7e7, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181706, !- Zone Name @@ -3185,7 +3185,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 667683e9-4698-4804-b300-2fe5e1e6e939, !- Name + bb441a43-43bf-45c4-8b3d-a695a13bafd4, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 183144, !- Zone Name @@ -3209,7 +3209,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - db7db81a-75b9-413d-b49c-b589478d35e6, !- Name + 4b22a526-5af0-4b74-abb1-6d3aed3da38a, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 183144, !- Zone Name @@ -3233,7 +3233,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6a9b97e1-4df2-40cf-989e-da7dccb0c37f, !- Name + 0fdcc26f-d760-468c-9c9e-ea174e9497a9, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183144, !- Zone Name @@ -3257,12 +3257,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a4693cfb-6e07-41dd-a6df-8d7d0f6ba3df, !- Name + f9564e58-dfbf-4f6a-b3be-61a1c339983f, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183144, !- Zone Name Surface, !- Outside Boundary Condition - a4693cfb-6e07-41dd-a6df-8d7d0f6ba3df, !- Outside Boundary Condition Object + f9564e58-dfbf-4f6a-b3be-61a1c339983f, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -3281,7 +3281,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6e8c6aac-226b-4c91-952c-b33ef4dc8ce0, !- Name + ba01efbe-4a81-414d-bd05-2f21b9b15f11, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183144, !- Zone Name @@ -3305,12 +3305,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - b5a2b9c9-8d44-4989-be67-67a10674d72d, !- Name + 78ab1b6a-55a4-486a-adb2-e0017e4aade9, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183144, !- Zone Name Surface, !- Outside Boundary Condition - b5a2b9c9-8d44-4989-be67-67a10674d72d, !- Outside Boundary Condition Object + 78ab1b6a-55a4-486a-adb2-e0017e4aade9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -3329,7 +3329,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a6172439-540e-4d31-a8bc-32dd402924e1, !- Name + 16263e9d-16e5-465f-84ab-f3f4dd5620f5, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 183243, !- Zone Name @@ -3353,7 +3353,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 4a849183-d5e9-40d6-8a77-38b11b46433e, !- Name + 8ab59231-87b7-440a-a508-cd8ab72ffb47, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 183243, !- Zone Name @@ -3377,7 +3377,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 531634db-2c61-44a3-80d9-94a5852e16ab, !- Name + f4100d38-5272-4a9c-a8eb-e3383d7d80bc, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183243, !- Zone Name @@ -3401,12 +3401,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - c851ca53-49e9-4a43-9f95-215079b2d5d7, !- Name + 972e98c9-3ef9-4fef-873b-2517f8b5ed05, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183243, !- Zone Name Surface, !- Outside Boundary Condition - c851ca53-49e9-4a43-9f95-215079b2d5d7, !- Outside Boundary Condition Object + 972e98c9-3ef9-4fef-873b-2517f8b5ed05, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -3425,7 +3425,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 5b3d56a5-f20b-4d2b-8f09-4a79f3ba9a13, !- Name + dc48dbce-ea32-40cb-9a71-1a7b6519cd98, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183243, !- Zone Name @@ -3449,12 +3449,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1f386a70-23f0-46a2-aeb6-322bed09b91f, !- Name + 87e061cc-492f-4f1f-b4ea-c9f07b539136, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183243, !- Zone Name Surface, !- Outside Boundary Condition - 1f386a70-23f0-46a2-aeb6-322bed09b91f, !- Outside Boundary Condition Object + 87e061cc-492f-4f1f-b4ea-c9f07b539136, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -3473,10 +3473,10 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - e9a776d7-c08a-4903-bdde-33a1b75c006f window, !- Name + 88d081f6-1235-44a7-a462-7d1ce4b365bf window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - e9a776d7-c08a-4903-bdde-33a1b75c006f, !- Building Surface Name + 88d081f6-1235-44a7-a462-7d1ce4b365bf, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3496,10 +3496,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 06e83efc-71d1-45fe-85ea-e7ee9a7664b1 window, !- Name + 04e70fd4-4e5a-4f9e-99f0-91053f07191e window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 06e83efc-71d1-45fe-85ea-e7ee9a7664b1, !- Building Surface Name + 04e70fd4-4e5a-4f9e-99f0-91053f07191e, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3519,10 +3519,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a0cc674e-7ff5-4e87-8d8b-d2879920f518 window, !- Name + 69f96927-5bf0-4a6d-828e-bfc11fe57194 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a0cc674e-7ff5-4e87-8d8b-d2879920f518, !- Building Surface Name + 69f96927-5bf0-4a6d-828e-bfc11fe57194, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3542,10 +3542,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 6894ae2c-4de8-4004-b743-24810745043c window, !- Name + bd731930-1f08-4394-84a6-108312b0499e window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 6894ae2c-4de8-4004-b743-24810745043c, !- Building Surface Name + bd731930-1f08-4394-84a6-108312b0499e, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3565,10 +3565,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 8a44dcd0-5eaf-4ea2-83d6-e10cc7697fc1 window, !- Name + 1eca129c-b7e5-44fa-b5e6-c3d5ff00d1f7 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 8a44dcd0-5eaf-4ea2-83d6-e10cc7697fc1, !- Building Surface Name + 1eca129c-b7e5-44fa-b5e6-c3d5ff00d1f7, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3588,10 +3588,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 3476659a-7777-4217-879b-ec7411a9f8f4 window, !- Name + 237e30f1-ccc2-4275-ae30-f820ae689bdb window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 3476659a-7777-4217-879b-ec7411a9f8f4, !- Building Surface Name + 237e30f1-ccc2-4275-ae30-f820ae689bdb, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3611,10 +3611,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a987c29f-99c1-411a-9cc3-0afbb35d9ab2 window, !- Name + 6bd00b18-05ed-4d63-9e3b-27db4f7d91fb window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a987c29f-99c1-411a-9cc3-0afbb35d9ab2, !- Building Surface Name + 6bd00b18-05ed-4d63-9e3b-27db4f7d91fb, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3634,10 +3634,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d29ed729-a377-4d42-8e37-86d29faa692b window, !- Name + 94ed4bc5-ac57-4fad-8621-a249c5c04a9f window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d29ed729-a377-4d42-8e37-86d29faa692b, !- Building Surface Name + 94ed4bc5-ac57-4fad-8621-a249c5c04a9f, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3657,10 +3657,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 1d1dbdbf-a442-426b-aba9-a6644ec6ccaf window, !- Name + b1d68f62-6daa-49f7-88c2-b93e7cf18406 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 1d1dbdbf-a442-426b-aba9-a6644ec6ccaf, !- Building Surface Name + b1d68f62-6daa-49f7-88c2-b93e7cf18406, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3680,10 +3680,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 9027ab96-d388-4204-9515-8638e09e0d23 window, !- Name + e2d1fa98-7e9e-4610-a6ab-8dbe69551ff5 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 9027ab96-d388-4204-9515-8638e09e0d23, !- Building Surface Name + e2d1fa98-7e9e-4610-a6ab-8dbe69551ff5, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3703,10 +3703,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d80e753d-3a26-4eda-90b8-b445fdd923b1 window, !- Name + 988d81d6-2b4e-45b8-9071-65cf25a15c59 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d80e753d-3a26-4eda-90b8-b445fdd923b1, !- Building Surface Name + 988d81d6-2b4e-45b8-9071-65cf25a15c59, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3726,10 +3726,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d2676432-8b98-4881-b152-c2993d54e04b window, !- Name + da12b56f-c238-405c-8837-5f503fea4f6f window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d2676432-8b98-4881-b152-c2993d54e04b, !- Building Surface Name + da12b56f-c238-405c-8837-5f503fea4f6f, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3749,10 +3749,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - cabc4bc7-a75c-4989-aeda-0753936a5dee window, !- Name + 0857330d-b5cd-4746-a5e9-251fad1ef835 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - cabc4bc7-a75c-4989-aeda-0753936a5dee, !- Building Surface Name + 0857330d-b5cd-4746-a5e9-251fad1ef835, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3772,10 +3772,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 7c52c57c-7025-415d-a9b8-f5aaf8f58535 window, !- Name + 753b8448-f2a4-4695-9b8e-a18b5952391f window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 7c52c57c-7025-415d-a9b8-f5aaf8f58535, !- Building Surface Name + 753b8448-f2a4-4695-9b8e-a18b5952391f, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3795,10 +3795,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 9de3270a-551d-407e-a8b2-0639ae103505 window, !- Name + d5d765f2-1092-48fa-a7b7-b154ee277681 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 9de3270a-551d-407e-a8b2-0639ae103505, !- Building Surface Name + d5d765f2-1092-48fa-a7b7-b154ee277681, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3818,10 +3818,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 197a0d24-9f0a-416b-ab79-18597f66c1ac window, !- Name + 70bbbb3c-93c6-4afc-a5a8-beea6e9502bb window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 197a0d24-9f0a-416b-ab79-18597f66c1ac, !- Building Surface Name + 70bbbb3c-93c6-4afc-a5a8-beea6e9502bb, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3841,10 +3841,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - fa41c2ed-457a-4e6b-9607-bda10b64a2ee window, !- Name + 41045d45-cd0c-4e6a-b2e0-e81dc2bccd38 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - fa41c2ed-457a-4e6b-9607-bda10b64a2ee, !- Building Surface Name + 41045d45-cd0c-4e6a-b2e0-e81dc2bccd38, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3864,10 +3864,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 6138df36-e729-49f2-b62f-4870fc39c64f window, !- Name + 9485d7b2-3887-412f-a921-fa3ab2023fdd window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 6138df36-e729-49f2-b62f-4870fc39c64f, !- Building Surface Name + 9485d7b2-3887-412f-a921-fa3ab2023fdd, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3887,10 +3887,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - b1db9ae1-c1a3-41ab-9591-e8bd85e6e624 window, !- Name + dc0198e1-ef8a-4ae4-b856-023f4e25c845 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - b1db9ae1-c1a3-41ab-9591-e8bd85e6e624, !- Building Surface Name + dc0198e1-ef8a-4ae4-b856-023f4e25c845, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3910,10 +3910,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 7b0da88c-0b47-4d1a-b84e-aeb70e93020c window, !- Name + 305f15fb-acec-4e3c-a6a8-b02c34cc8918 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 7b0da88c-0b47-4d1a-b84e-aeb70e93020c, !- Building Surface Name + 305f15fb-acec-4e3c-a6a8-b02c34cc8918, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3933,10 +3933,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - dd970e33-a623-4ce7-aafb-8ed198b8ca1c window, !- Name + 71c66759-4e9f-48c2-976c-b60d6d1f99a5 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - dd970e33-a623-4ce7-aafb-8ed198b8ca1c, !- Building Surface Name + 71c66759-4e9f-48c2-976c-b60d6d1f99a5, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3956,10 +3956,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 02cdc36c-704d-47b9-afec-41f43222d0f4 window, !- Name + 2bf4d215-25db-4cda-b12b-672631606f4c window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 02cdc36c-704d-47b9-afec-41f43222d0f4, !- Building Surface Name + 2bf4d215-25db-4cda-b12b-672631606f4c, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3979,10 +3979,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 2142ebb0-161e-43ee-b6de-a5dad97612cc window, !- Name + 92866768-61ad-482d-8464-11a50625de49 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 2142ebb0-161e-43ee-b6de-a5dad97612cc, !- Building Surface Name + 92866768-61ad-482d-8464-11a50625de49, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4002,10 +4002,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - bf2a5a5a-2c66-46bb-9f00-08702ff2cea2 window, !- Name + 0f2f3ac9-46fa-4b2f-b880-bdf7e42a0686 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - bf2a5a5a-2c66-46bb-9f00-08702ff2cea2, !- Building Surface Name + 0f2f3ac9-46fa-4b2f-b880-bdf7e42a0686, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4025,10 +4025,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 1da28fd9-438e-44b3-8ab1-d14cd1dcd738 window, !- Name + 80f9b9aa-47ee-41e1-aa48-f7a1a65c2e05 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 1da28fd9-438e-44b3-8ab1-d14cd1dcd738, !- Building Surface Name + 80f9b9aa-47ee-41e1-aa48-f7a1a65c2e05, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4048,10 +4048,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - b227dda2-bc10-42a6-bfeb-b934b789f695 window, !- Name + 8a46261e-00f3-4288-8fcc-0223ae4b2a7c window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - b227dda2-bc10-42a6-bfeb-b934b789f695, !- Building Surface Name + 8a46261e-00f3-4288-8fcc-0223ae4b2a7c, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4071,10 +4071,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d86fc62f-269c-45de-84ed-d5a196e2095e window, !- Name + dd481caa-73de-47fd-9f74-9b22ce720b44 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d86fc62f-269c-45de-84ed-d5a196e2095e, !- Building Surface Name + dd481caa-73de-47fd-9f74-9b22ce720b44, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4094,10 +4094,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - cdb601e5-0866-416b-89eb-d048e5859786 window, !- Name + 79f4e5ca-4739-4a69-9955-726c8e859b53 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - cdb601e5-0866-416b-89eb-d048e5859786, !- Building Surface Name + 79f4e5ca-4739-4a69-9955-726c8e859b53, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4117,10 +4117,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - c0c8c17c-fc22-4b92-a946-702e972aa329 window, !- Name + aafb61e8-dfa8-4b3a-be5f-150953bc84e5 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - c0c8c17c-fc22-4b92-a946-702e972aa329, !- Building Surface Name + aafb61e8-dfa8-4b3a-be5f-150953bc84e5, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4140,10 +4140,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d280607f-5351-4a50-81cd-d03df7a28c0d window, !- Name + f21d70fc-7c69-49c4-a53e-2d940858a186 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d280607f-5351-4a50-81cd-d03df7a28c0d, !- Building Surface Name + f21d70fc-7c69-49c4-a53e-2d940858a186, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4163,10 +4163,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - befa0f66-abf7-4e7a-a02c-0b31babea113 window, !- Name + ac2b4e2f-d856-4604-9b60-33146cc9c4ed window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - befa0f66-abf7-4e7a-a02c-0b31babea113, !- Building Surface Name + ac2b4e2f-d856-4604-9b60-33146cc9c4ed, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4186,10 +4186,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - bef1b1ab-759c-483f-939c-bfca5b2118ef window, !- Name + 7d0e5f1d-cd74-4723-b33d-d86d6e019b1d window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - bef1b1ab-759c-483f-939c-bfca5b2118ef, !- Building Surface Name + 7d0e5f1d-cd74-4723-b33d-d86d6e019b1d, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4209,10 +4209,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - bef3d9a2-b25f-44e4-b611-e021b6179865 window, !- Name + 78985b62-1778-40bf-b4f1-3de39fd7ef10 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - bef3d9a2-b25f-44e4-b611-e021b6179865, !- Building Surface Name + 78985b62-1778-40bf-b4f1-3de39fd7ef10, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4232,10 +4232,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - ec306a3c-7b56-44d5-a4de-2e6d6c180df8 window, !- Name + 207e14b7-dc3a-414c-b35e-6c546bfbb70b window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - ec306a3c-7b56-44d5-a4de-2e6d6c180df8, !- Building Surface Name + 207e14b7-dc3a-414c-b35e-6c546bfbb70b, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4255,10 +4255,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 955bdc8b-fadc-4dc9-9146-015e44f6d0f9 window, !- Name + a97f4ca2-37a6-4d25-80b4-85a86eb2282c window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 955bdc8b-fadc-4dc9-9146-015e44f6d0f9, !- Building Surface Name + a97f4ca2-37a6-4d25-80b4-85a86eb2282c, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4278,10 +4278,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 74146306-5cc3-4df9-b2dd-4e2fe410da48 window, !- Name + b518af5b-943a-4354-8536-323fe5eddd66 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 74146306-5cc3-4df9-b2dd-4e2fe410da48, !- Building Surface Name + b518af5b-943a-4354-8536-323fe5eddd66, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4301,10 +4301,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - bf81a09d-7eb2-443c-9dbe-7ccf41e9e733 window, !- Name + e1634d44-c4a7-4008-8d97-d9e8fe6b4420 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - bf81a09d-7eb2-443c-9dbe-7ccf41e9e733, !- Building Surface Name + e1634d44-c4a7-4008-8d97-d9e8fe6b4420, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4324,10 +4324,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 910ec237-d19c-44d2-a0af-53394d66badb window, !- Name + af582559-958b-453e-af2c-ba7d24fe67f3 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 910ec237-d19c-44d2-a0af-53394d66badb, !- Building Surface Name + af582559-958b-453e-af2c-ba7d24fe67f3, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4347,10 +4347,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - dc8b7a69-b843-43f8-810c-af6503e94abf window, !- Name + 603180bb-ee2e-44df-8c24-564538c6645d window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - dc8b7a69-b843-43f8-810c-af6503e94abf, !- Building Surface Name + 603180bb-ee2e-44df-8c24-564538c6645d, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4370,10 +4370,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - dd09fb31-d077-415a-8a35-d4b8e4105f74 window, !- Name + b9f1215c-96e0-4fed-b11f-96dd0c091107 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - dd09fb31-d077-415a-8a35-d4b8e4105f74, !- Building Surface Name + b9f1215c-96e0-4fed-b11f-96dd0c091107, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4393,10 +4393,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 3eb30793-160d-41d4-ad8a-36e1cff208c6 window, !- Name + afef7551-521f-4136-8ee4-a8bb569626fb window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 3eb30793-160d-41d4-ad8a-36e1cff208c6, !- Building Surface Name + afef7551-521f-4136-8ee4-a8bb569626fb, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4416,10 +4416,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 74ca1532-4928-42e1-ae6c-111556837b7e window, !- Name + f8c808e6-1058-4e27-bfd8-82088ae3596a window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 74ca1532-4928-42e1-ae6c-111556837b7e, !- Building Surface Name + f8c808e6-1058-4e27-bfd8-82088ae3596a, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4439,10 +4439,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - b9be6c6f-0afa-49ad-b01f-b622a8d5ab55 window, !- Name + c93c41eb-4593-463d-9913-dd0afe16ece0 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - b9be6c6f-0afa-49ad-b01f-b622a8d5ab55, !- Building Surface Name + c93c41eb-4593-463d-9913-dd0afe16ece0, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4462,10 +4462,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - ddcf0603-5da2-4bc2-8cd9-9c786ef507f8 window, !- Name + cd1e2a22-2eb1-439e-a009-442290519521 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - ddcf0603-5da2-4bc2-8cd9-9c786ef507f8, !- Building Surface Name + cd1e2a22-2eb1-439e-a009-442290519521, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4485,10 +4485,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - e5a6337e-9cdc-41fb-bce3-bf0e99836fb9 window, !- Name + 885ed1bd-2100-4737-9188-c7067f7af8b7 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - e5a6337e-9cdc-41fb-bce3-bf0e99836fb9, !- Building Surface Name + 885ed1bd-2100-4737-9188-c7067f7af8b7, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4508,10 +4508,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 869a399d-0da3-4cde-ad63-60bfdac22071 window, !- Name + 7abb3f53-807e-4b86-86e3-8b940af12731 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 869a399d-0da3-4cde-ad63-60bfdac22071, !- Building Surface Name + 7abb3f53-807e-4b86-86e3-8b940af12731, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4531,10 +4531,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 6ed55f0d-f5cd-49c2-8f09-54d704a502fa window, !- Name + 5d0bae4c-b3eb-48a9-968f-d72760e72ed9 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 6ed55f0d-f5cd-49c2-8f09-54d704a502fa, !- Building Surface Name + 5d0bae4c-b3eb-48a9-968f-d72760e72ed9, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4554,10 +4554,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - dbabeafe-8c2d-40ef-a157-12f9ba741b94 window, !- Name + f1395637-7dda-44af-834d-48dfdf24db83 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - dbabeafe-8c2d-40ef-a157-12f9ba741b94, !- Building Surface Name + f1395637-7dda-44af-834d-48dfdf24db83, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4577,10 +4577,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 690a4f44-19b1-4de4-9442-7b0128c1d064 window, !- Name + 8912da34-87a5-4126-a1f1-1552f5aae7e7 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 690a4f44-19b1-4de4-9442-7b0128c1d064, !- Building Surface Name + 8912da34-87a5-4126-a1f1-1552f5aae7e7, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4600,10 +4600,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 6a9b97e1-4df2-40cf-989e-da7dccb0c37f window, !- Name + 0fdcc26f-d760-468c-9c9e-ea174e9497a9 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 6a9b97e1-4df2-40cf-989e-da7dccb0c37f, !- Building Surface Name + 0fdcc26f-d760-468c-9c9e-ea174e9497a9, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4623,10 +4623,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 6e8c6aac-226b-4c91-952c-b33ef4dc8ce0 window, !- Name + ba01efbe-4a81-414d-bd05-2f21b9b15f11 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 6e8c6aac-226b-4c91-952c-b33ef4dc8ce0, !- Building Surface Name + ba01efbe-4a81-414d-bd05-2f21b9b15f11, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4646,10 +4646,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 531634db-2c61-44a3-80d9-94a5852e16ab window, !- Name + f4100d38-5272-4a9c-a8eb-e3383d7d80bc window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 531634db-2c61-44a3-80d9-94a5852e16ab, !- Building Surface Name + f4100d38-5272-4a9c-a8eb-e3383d7d80bc, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4669,10 +4669,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 5b3d56a5-f20b-4d2b-8f09-4a79f3ba9a13 window, !- Name + dc48dbce-ea32-40cb-9a71-1a7b6519cd98 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 5b3d56a5-f20b-4d2b-8f09-4a79f3ba9a13, !- Building Surface Name + dc48dbce-ea32-40cb-9a71-1a7b6519cd98, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name diff --git a/out_files/Montreal_out.bnd b/out_files/Montreal_out.bnd index 9d5ad256..30c741ed 100644 --- a/out_files/Montreal_out.bnd +++ b/out_files/Montreal_out.bnd @@ -1,4 +1,4 @@ -Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22 +Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.01.02 18:16 ! 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 diff --git a/out_files/Montreal_out.eio b/out_files/Montreal_out.eio index 01c06d3b..f85fb450 100644 --- a/out_files/Montreal_out.eio +++ b/out_files/Montreal_out.eio @@ -1,4 +1,4 @@ -Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22 +Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.01.02 18:16 ! , Version ID Version, 9.5 ! , #TimeSteps, Minutes per TimeStep {minutes} diff --git a/out_files/Montreal_out.end b/out_files/Montreal_out.end index 7f3d8169..d204948d 100644 --- a/out_files/Montreal_out.end +++ b/out_files/Montreal_out.end @@ -1 +1 @@ -EnergyPlus Completed Successfully-- 35 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 27.96sec +EnergyPlus Completed Successfully-- 35 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 15.47sec diff --git a/out_files/Montreal_out.err b/out_files/Montreal_out.err index d60380fe..0328127b 100644 --- a/out_files/Montreal_out.err +++ b/out_files/Montreal_out.err @@ -1,6 +1,6 @@ -Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22, +Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.01.02 18:16, ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no "Ground Temperatures" were input. - ** ~~~ ** Found first in surface=49A6A0D1-21FA-4174-A2E8-6E59F41BE8B9 + ** ~~~ ** Found first in surface=F865DFC4-F54F-4140-92DC-0D85027B6556 ** ~~~ ** 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.28 20:22, ************* 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 27.96sec + ************* EnergyPlus Completed Successfully-- 35 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 15.47sec diff --git a/out_files/Montreal_out.eso b/out_files/Montreal_out.eso index c67cc96c..d405ffe4 100644 --- a/out_files/Montreal_out.eso +++ b/out_files/Montreal_out.eso @@ -1,4 +1,4 @@ -Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22 +Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.01.02 18:16 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 diff --git a/out_files/Montreal_out.expidf b/out_files/Montreal_out.expidf index 3124341f..632be472 100644 --- a/out_files/Montreal_out.expidf +++ b/out_files/Montreal_out.expidf @@ -1199,7 +1199,7 @@ ZONE, Yes; !- Part of Total Floor Area BUILDINGSURFACE:DETAILED, - 49a6a0d1-21fa-4174-a2e8-6e59f41be8b9, !- Name + f865dfc4-f54f-4140-92dc-0d85027b6556, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 173347, !- Zone Name @@ -1223,7 +1223,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6714f8ce-fbe1-41fa-8146-152344e45e89, !- Name + 66443928-1b2b-4d46-a3a3-5fb64b451447, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 173347, !- Zone Name @@ -1247,7 +1247,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - e9a776d7-c08a-4903-bdde-33a1b75c006f, !- Name + 88d081f6-1235-44a7-a462-7d1ce4b365bf, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173347, !- Zone Name @@ -1271,12 +1271,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - f4521949-b172-4b21-bf0b-6432aa6135a1, !- Name + d524e2bc-728b-4064-a728-b9233029f720, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173347, !- Zone Name Surface, !- Outside Boundary Condition - f4521949-b172-4b21-bf0b-6432aa6135a1, !- Outside Boundary Condition Object + d524e2bc-728b-4064-a728-b9233029f720, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -1295,7 +1295,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 06e83efc-71d1-45fe-85ea-e7ee9a7664b1, !- Name + 04e70fd4-4e5a-4f9e-99f0-91053f07191e, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173347, !- Zone Name @@ -1319,12 +1319,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - e8bf2a49-1558-41bc-96cb-123915d688bf, !- Name + 4e32ac48-ce37-4ab6-b73b-84bb5568732a, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173347, !- Zone Name Surface, !- Outside Boundary Condition - e8bf2a49-1558-41bc-96cb-123915d688bf, !- Outside Boundary Condition Object + 4e32ac48-ce37-4ab6-b73b-84bb5568732a, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -1343,7 +1343,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d6f1dc5c-00ea-4f85-aaa6-4d2c54bfa8a8, !- Name + 74c42012-9742-41a2-b35f-cc626fa4017d, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name @@ -1373,7 +1373,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - a804ac39-e991-4fa7-8ebd-6e9de27c6449, !- Name + 52ebfd0a-5c2e-431e-b4d4-ffefe9d94edc, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name @@ -1403,7 +1403,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - a0cc674e-7ff5-4e87-8d8b-d2879920f518, !- Name + 69f96927-5bf0-4a6d-828e-bfc11fe57194, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name @@ -1427,7 +1427,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6894ae2c-4de8-4004-b743-24810745043c, !- Name + bd731930-1f08-4394-84a6-108312b0499e, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name @@ -1451,7 +1451,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 8a44dcd0-5eaf-4ea2-83d6-e10cc7697fc1, !- Name + 1eca129c-b7e5-44fa-b5e6-c3d5ff00d1f7, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name @@ -1475,7 +1475,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 3476659a-7777-4217-879b-ec7411a9f8f4, !- Name + 237e30f1-ccc2-4275-ae30-f820ae689bdb, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name @@ -1499,7 +1499,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a987c29f-99c1-411a-9cc3-0afbb35d9ab2, !- Name + 6bd00b18-05ed-4d63-9e3b-27db4f7d91fb, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name @@ -1523,12 +1523,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - deb2faca-865f-4594-9474-dbc514c3e015, !- Name + 38c5298b-d4af-4c7e-bbf0-01ec4f15e3fa, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 173348, !- Zone Name Surface, !- Outside Boundary Condition - deb2faca-865f-4594-9474-dbc514c3e015, !- Outside Boundary Condition Object + 38c5298b-d4af-4c7e-bbf0-01ec4f15e3fa, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -1547,7 +1547,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 95977b63-da57-40d5-a214-4d2fabca5347, !- Name + ce148459-71bf-43f3-ae25-19fe02b0fd00, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1619,7 +1619,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 20 Zcoordinate BUILDINGSURFACE:DETAILED, - d6a7ed84-8e6c-4cb5-835c-1ada1608f8de, !- Name + f535e8fa-0079-4d18-84fd-c9c325421b0f, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1691,7 +1691,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 20 Zcoordinate BUILDINGSURFACE:DETAILED, - d29ed729-a377-4d42-8e37-86d29faa692b, !- Name + 94ed4bc5-ac57-4fad-8621-a249c5c04a9f, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1715,7 +1715,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1d1dbdbf-a442-426b-aba9-a6644ec6ccaf, !- Name + b1d68f62-6daa-49f7-88c2-b93e7cf18406, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1739,7 +1739,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 9027ab96-d388-4204-9515-8638e09e0d23, !- Name + e2d1fa98-7e9e-4610-a6ab-8dbe69551ff5, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1763,7 +1763,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d80e753d-3a26-4eda-90b8-b445fdd923b1, !- Name + 988d81d6-2b4e-45b8-9071-65cf25a15c59, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1787,7 +1787,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d2676432-8b98-4881-b152-c2993d54e04b, !- Name + da12b56f-c238-405c-8837-5f503fea4f6f, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1811,7 +1811,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - cabc4bc7-a75c-4989-aeda-0753936a5dee, !- Name + 0857330d-b5cd-4746-a5e9-251fad1ef835, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1835,7 +1835,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 7c52c57c-7025-415d-a9b8-f5aaf8f58535, !- Name + 753b8448-f2a4-4695-9b8e-a18b5952391f, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1859,7 +1859,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 9de3270a-551d-407e-a8b2-0639ae103505, !- Name + d5d765f2-1092-48fa-a7b7-b154ee277681, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1883,7 +1883,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 197a0d24-9f0a-416b-ab79-18597f66c1ac, !- Name + 70bbbb3c-93c6-4afc-a5a8-beea6e9502bb, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1907,7 +1907,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - fa41c2ed-457a-4e6b-9607-bda10b64a2ee, !- Name + 41045d45-cd0c-4e6a-b2e0-e81dc2bccd38, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1931,7 +1931,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6138df36-e729-49f2-b62f-4870fc39c64f, !- Name + 9485d7b2-3887-412f-a921-fa3ab2023fdd, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1955,7 +1955,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - b1db9ae1-c1a3-41ab-9591-e8bd85e6e624, !- Name + dc0198e1-ef8a-4ae4-b856-023f4e25c845, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -1979,7 +1979,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 7b0da88c-0b47-4d1a-b84e-aeb70e93020c, !- Name + 305f15fb-acec-4e3c-a6a8-b02c34cc8918, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2003,7 +2003,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - dd970e33-a623-4ce7-aafb-8ed198b8ca1c, !- Name + 71c66759-4e9f-48c2-976c-b60d6d1f99a5, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2027,7 +2027,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 02cdc36c-704d-47b9-afec-41f43222d0f4, !- Name + 2bf4d215-25db-4cda-b12b-672631606f4c, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2051,7 +2051,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 2142ebb0-161e-43ee-b6de-a5dad97612cc, !- Name + 92866768-61ad-482d-8464-11a50625de49, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2075,7 +2075,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - bf2a5a5a-2c66-46bb-9f00-08702ff2cea2, !- Name + 0f2f3ac9-46fa-4b2f-b880-bdf7e42a0686, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2099,7 +2099,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1da28fd9-438e-44b3-8ab1-d14cd1dcd738, !- Name + 80f9b9aa-47ee-41e1-aa48-f7a1a65c2e05, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2123,7 +2123,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - b227dda2-bc10-42a6-bfeb-b934b789f695, !- Name + 8a46261e-00f3-4288-8fcc-0223ae4b2a7c, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2147,7 +2147,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d86fc62f-269c-45de-84ed-d5a196e2095e, !- Name + dd481caa-73de-47fd-9f74-9b22ce720b44, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 175012, !- Zone Name @@ -2171,7 +2171,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 8c214f58-37b7-4e41-afeb-b048bca834ae, !- Name + 3880cea6-b84d-46d9-860d-f6e0613132c8, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name @@ -2201,7 +2201,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - 37756d72-403d-46f2-9cde-4e412064828f, !- Name + 59867b21-8dea-45d3-882b-467cabae3a3d, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name @@ -2231,7 +2231,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - cdb601e5-0866-416b-89eb-d048e5859786, !- Name + 79f4e5ca-4739-4a69-9955-726c8e859b53, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name @@ -2255,7 +2255,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - c0c8c17c-fc22-4b92-a946-702e972aa329, !- Name + aafb61e8-dfa8-4b3a-be5f-150953bc84e5, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name @@ -2279,12 +2279,12 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1b24ca94-8734-4d2b-b6fd-e88558aed682, !- Name + 1d17a2b6-8f51-445b-9fc7-dc14a2bd768a, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name Surface, !- Outside Boundary Condition - 1b24ca94-8734-4d2b-b6fd-e88558aed682, !- Outside Boundary Condition Object + 1d17a2b6-8f51-445b-9fc7-dc14a2bd768a, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -2303,7 +2303,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d280607f-5351-4a50-81cd-d03df7a28c0d, !- Name + f21d70fc-7c69-49c4-a53e-2d940858a186, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name @@ -2327,7 +2327,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - befa0f66-abf7-4e7a-a02c-0b31babea113, !- Name + ac2b4e2f-d856-4604-9b60-33146cc9c4ed, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name @@ -2351,7 +2351,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - bef1b1ab-759c-483f-939c-bfca5b2118ef, !- Name + 7d0e5f1d-cd74-4723-b33d-d86d6e019b1d, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176261, !- Zone Name @@ -2375,7 +2375,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - e562fe09-b0c0-4242-8049-66a78d056bb6, !- Name + fd0a6dc8-dc3c-4eb9-a239-c41322b19974, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 176296, !- Zone Name @@ -2399,7 +2399,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 13da738a-2538-4fbe-a6ac-9e17a5a66381, !- Name + 63bd75e1-8467-47ef-9a4c-ed2fffa673f2, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 176296, !- Zone Name @@ -2423,7 +2423,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - bef3d9a2-b25f-44e4-b611-e021b6179865, !- Name + 78985b62-1778-40bf-b4f1-3de39fd7ef10, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176296, !- Zone Name @@ -2447,7 +2447,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - ec306a3c-7b56-44d5-a4de-2e6d6c180df8, !- Name + 207e14b7-dc3a-414c-b35e-6c546bfbb70b, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176296, !- Zone Name @@ -2471,7 +2471,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 955bdc8b-fadc-4dc9-9146-015e44f6d0f9, !- Name + a97f4ca2-37a6-4d25-80b4-85a86eb2282c, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176296, !- Zone Name @@ -2495,7 +2495,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 74146306-5cc3-4df9-b2dd-4e2fe410da48, !- Name + b518af5b-943a-4354-8536-323fe5eddd66, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 176296, !- Zone Name @@ -2519,7 +2519,7 @@ BUILDINGSURFACE:DETAILED, 10; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 61be9590-ee2c-4510-a65e-9d9707059d72, !- Name + 972ed882-d0c4-4dee-aa68-ec83c3b05847, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name @@ -2549,7 +2549,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - 29aa4e15-ec14-45b9-be01-3968b1f66ba3, !- Name + 0d04e8e8-eeb5-4799-afbd-d04ffeace9d6, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name @@ -2579,7 +2579,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - bf81a09d-7eb2-443c-9dbe-7ccf41e9e733, !- Name + e1634d44-c4a7-4008-8d97-d9e8fe6b4420, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name @@ -2603,7 +2603,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 910ec237-d19c-44d2-a0af-53394d66badb, !- Name + af582559-958b-453e-af2c-ba7d24fe67f3, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name @@ -2627,7 +2627,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - dc8b7a69-b843-43f8-810c-af6503e94abf, !- Name + 603180bb-ee2e-44df-8c24-564538c6645d, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name @@ -2651,7 +2651,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - dd09fb31-d077-415a-8a35-d4b8e4105f74, !- Name + b9f1215c-96e0-4fed-b11f-96dd0c091107, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name @@ -2675,12 +2675,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - ee425a30-d8ee-49ae-a2b1-23e47576e76c, !- Name + 3c62b4c3-89af-402c-9c82-75d0daf853b5, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name Surface, !- Outside Boundary Condition - ee425a30-d8ee-49ae-a2b1-23e47576e76c, !- Outside Boundary Condition Object + 3c62b4c3-89af-402c-9c82-75d0daf853b5, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -2699,7 +2699,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 3eb30793-160d-41d4-ad8a-36e1cff208c6, !- Name + afef7551-521f-4136-8ee4-a8bb569626fb, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 177698, !- Zone Name @@ -2723,7 +2723,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 2389dae8-0f83-4e21-8250-4e7dc4fe3025, !- Name + 7e806f25-f937-4252-9d48-cf9a67048d43, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 178164, !- Zone Name @@ -2747,7 +2747,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d3620589-f605-42a2-8a8a-5a76a2147b39, !- Name + 4a48dd1c-bf95-4351-acca-318f847cbb15, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 178164, !- Zone Name @@ -2771,7 +2771,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 74ca1532-4928-42e1-ae6c-111556837b7e, !- Name + f8c808e6-1058-4e27-bfd8-82088ae3596a, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 178164, !- Zone Name @@ -2795,12 +2795,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 2ba28a3d-41a2-4142-8333-ff3f43829c37, !- Name + 34a34eee-7fa0-4ea3-86a5-454dd1ccbcea, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 178164, !- Zone Name Surface, !- Outside Boundary Condition - 2ba28a3d-41a2-4142-8333-ff3f43829c37, !- Outside Boundary Condition Object + 34a34eee-7fa0-4ea3-86a5-454dd1ccbcea, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -2819,7 +2819,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - b9be6c6f-0afa-49ad-b01f-b622a8d5ab55, !- Name + c93c41eb-4593-463d-9913-dd0afe16ece0, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 178164, !- Zone Name @@ -2843,12 +2843,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a4bbe0e0-ac85-41f6-bae0-458acd59e93c, !- Name + bb4039f6-7fad-4efa-a6a6-196288bd39b2, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 178164, !- Zone Name Surface, !- Outside Boundary Condition - a4bbe0e0-ac85-41f6-bae0-458acd59e93c, !- Outside Boundary Condition Object + bb4039f6-7fad-4efa-a6a6-196288bd39b2, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -2867,7 +2867,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - bdee1547-d4c7-40c6-9996-7530ef5a1a75, !- Name + 0a1babd4-7600-4e7b-92e4-f079c5590fbd, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 181359, !- Zone Name @@ -2891,7 +2891,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a4840188-8df8-4eaa-b5f2-ea27ad8da333, !- Name + 1e711381-c0e2-414c-ba3b-bc973c771588, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 181359, !- Zone Name @@ -2915,7 +2915,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - ddcf0603-5da2-4bc2-8cd9-9c786ef507f8, !- Name + cd1e2a22-2eb1-439e-a009-442290519521, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181359, !- Zone Name @@ -2939,12 +2939,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - efac6c0b-d77a-473f-bc48-bdd80ec20b23, !- Name + 66e4aac0-93d3-42f7-b771-fc7dabe24f05, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181359, !- Zone Name Surface, !- Outside Boundary Condition - efac6c0b-d77a-473f-bc48-bdd80ec20b23, !- Outside Boundary Condition Object + 66e4aac0-93d3-42f7-b771-fc7dabe24f05, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -2963,7 +2963,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - e5a6337e-9cdc-41fb-bce3-bf0e99836fb9, !- Name + 885ed1bd-2100-4737-9188-c7067f7af8b7, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181359, !- Zone Name @@ -2987,12 +2987,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - df3e69b8-fc69-416b-9d2c-1d745df31efd, !- Name + cf93e454-a5d6-4068-a469-8bad34f58312, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181359, !- Zone Name Surface, !- Outside Boundary Condition - df3e69b8-fc69-416b-9d2c-1d745df31efd, !- Outside Boundary Condition Object + cf93e454-a5d6-4068-a469-8bad34f58312, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -3011,7 +3011,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - db7435cb-e409-4e62-8b46-061b84825686, !- Name + b3610b1f-c7ec-48cb-8864-ed2314340442, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 181706, !- Zone Name @@ -3038,7 +3038,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 5 Zcoordinate BUILDINGSURFACE:DETAILED, - 1642787d-cdb7-40b1-96de-a28b6b1a6568, !- Name + 7b45e5a9-a529-4471-b0f6-4c2b2d6a679a, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 181706, !- Zone Name @@ -3065,7 +3065,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 5 Zcoordinate BUILDINGSURFACE:DETAILED, - 869a399d-0da3-4cde-ad63-60bfdac22071, !- Name + 7abb3f53-807e-4b86-86e3-8b940af12731, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181706, !- Zone Name @@ -3089,12 +3089,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d9827025-1b3e-4617-9371-9b0e29a8780b, !- Name + 4f5a8482-3ce8-4e34-b831-9664f23ec464, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181706, !- Zone Name Surface, !- Outside Boundary Condition - d9827025-1b3e-4617-9371-9b0e29a8780b, !- Outside Boundary Condition Object + 4f5a8482-3ce8-4e34-b831-9664f23ec464, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -3113,7 +3113,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6ed55f0d-f5cd-49c2-8f09-54d704a502fa, !- Name + 5d0bae4c-b3eb-48a9-968f-d72760e72ed9, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181706, !- Zone Name @@ -3137,7 +3137,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - dbabeafe-8c2d-40ef-a157-12f9ba741b94, !- Name + f1395637-7dda-44af-834d-48dfdf24db83, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181706, !- Zone Name @@ -3161,7 +3161,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 690a4f44-19b1-4de4-9442-7b0128c1d064, !- Name + 8912da34-87a5-4126-a1f1-1552f5aae7e7, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 181706, !- Zone Name @@ -3185,7 +3185,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 667683e9-4698-4804-b300-2fe5e1e6e939, !- Name + bb441a43-43bf-45c4-8b3d-a695a13bafd4, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 183144, !- Zone Name @@ -3209,7 +3209,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - db7db81a-75b9-413d-b49c-b589478d35e6, !- Name + 4b22a526-5af0-4b74-abb1-6d3aed3da38a, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 183144, !- Zone Name @@ -3233,7 +3233,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6a9b97e1-4df2-40cf-989e-da7dccb0c37f, !- Name + 0fdcc26f-d760-468c-9c9e-ea174e9497a9, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183144, !- Zone Name @@ -3257,12 +3257,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a4693cfb-6e07-41dd-a6df-8d7d0f6ba3df, !- Name + f9564e58-dfbf-4f6a-b3be-61a1c339983f, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183144, !- Zone Name Surface, !- Outside Boundary Condition - a4693cfb-6e07-41dd-a6df-8d7d0f6ba3df, !- Outside Boundary Condition Object + f9564e58-dfbf-4f6a-b3be-61a1c339983f, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -3281,7 +3281,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6e8c6aac-226b-4c91-952c-b33ef4dc8ce0, !- Name + ba01efbe-4a81-414d-bd05-2f21b9b15f11, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183144, !- Zone Name @@ -3305,12 +3305,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - b5a2b9c9-8d44-4989-be67-67a10674d72d, !- Name + 78ab1b6a-55a4-486a-adb2-e0017e4aade9, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183144, !- Zone Name Surface, !- Outside Boundary Condition - b5a2b9c9-8d44-4989-be67-67a10674d72d, !- Outside Boundary Condition Object + 78ab1b6a-55a4-486a-adb2-e0017e4aade9, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -3329,7 +3329,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a6172439-540e-4d31-a8bc-32dd402924e1, !- Name + 16263e9d-16e5-465f-84ab-f3f4dd5620f5, !- Name floor, !- Surface Type 1981_1990_6, !- Construction Name 183243, !- Zone Name @@ -3353,7 +3353,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 4a849183-d5e9-40d6-8a77-38b11b46433e, !- Name + 8ab59231-87b7-440a-a508-cd8ab72ffb47, !- Name roof, !- Surface Type 1981_1990_6, !- Construction Name 183243, !- Zone Name @@ -3377,7 +3377,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 531634db-2c61-44a3-80d9-94a5852e16ab, !- Name + f4100d38-5272-4a9c-a8eb-e3383d7d80bc, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183243, !- Zone Name @@ -3401,12 +3401,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - c851ca53-49e9-4a43-9f95-215079b2d5d7, !- Name + 972e98c9-3ef9-4fef-873b-2517f8b5ed05, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183243, !- Zone Name Surface, !- Outside Boundary Condition - c851ca53-49e9-4a43-9f95-215079b2d5d7, !- Outside Boundary Condition Object + 972e98c9-3ef9-4fef-873b-2517f8b5ed05, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -3425,7 +3425,7 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 5b3d56a5-f20b-4d2b-8f09-4a79f3ba9a13, !- Name + dc48dbce-ea32-40cb-9a71-1a7b6519cd98, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183243, !- Zone Name @@ -3449,12 +3449,12 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1f386a70-23f0-46a2-aeb6-322bed09b91f, !- Name + 87e061cc-492f-4f1f-b4ea-c9f07b539136, !- Name wall, !- Surface Type 1981_1990_6, !- Construction Name 183243, !- Zone Name Surface, !- Outside Boundary Condition - 1f386a70-23f0-46a2-aeb6-322bed09b91f, !- Outside Boundary Condition Object + 87e061cc-492f-4f1f-b4ea-c9f07b539136, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure autocalculate, !- View Factor to Ground @@ -3473,10 +3473,10 @@ BUILDINGSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - e9a776d7-c08a-4903-bdde-33a1b75c006f window, !- Name + 88d081f6-1235-44a7-a462-7d1ce4b365bf window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - e9a776d7-c08a-4903-bdde-33a1b75c006f, !- Building Surface Name + 88d081f6-1235-44a7-a462-7d1ce4b365bf, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3496,10 +3496,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 06e83efc-71d1-45fe-85ea-e7ee9a7664b1 window, !- Name + 04e70fd4-4e5a-4f9e-99f0-91053f07191e window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 06e83efc-71d1-45fe-85ea-e7ee9a7664b1, !- Building Surface Name + 04e70fd4-4e5a-4f9e-99f0-91053f07191e, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3519,10 +3519,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a0cc674e-7ff5-4e87-8d8b-d2879920f518 window, !- Name + 69f96927-5bf0-4a6d-828e-bfc11fe57194 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a0cc674e-7ff5-4e87-8d8b-d2879920f518, !- Building Surface Name + 69f96927-5bf0-4a6d-828e-bfc11fe57194, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3542,10 +3542,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 6894ae2c-4de8-4004-b743-24810745043c window, !- Name + bd731930-1f08-4394-84a6-108312b0499e window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 6894ae2c-4de8-4004-b743-24810745043c, !- Building Surface Name + bd731930-1f08-4394-84a6-108312b0499e, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3565,10 +3565,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 8a44dcd0-5eaf-4ea2-83d6-e10cc7697fc1 window, !- Name + 1eca129c-b7e5-44fa-b5e6-c3d5ff00d1f7 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 8a44dcd0-5eaf-4ea2-83d6-e10cc7697fc1, !- Building Surface Name + 1eca129c-b7e5-44fa-b5e6-c3d5ff00d1f7, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3588,10 +3588,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 3476659a-7777-4217-879b-ec7411a9f8f4 window, !- Name + 237e30f1-ccc2-4275-ae30-f820ae689bdb window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 3476659a-7777-4217-879b-ec7411a9f8f4, !- Building Surface Name + 237e30f1-ccc2-4275-ae30-f820ae689bdb, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3611,10 +3611,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a987c29f-99c1-411a-9cc3-0afbb35d9ab2 window, !- Name + 6bd00b18-05ed-4d63-9e3b-27db4f7d91fb window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a987c29f-99c1-411a-9cc3-0afbb35d9ab2, !- Building Surface Name + 6bd00b18-05ed-4d63-9e3b-27db4f7d91fb, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3634,10 +3634,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d29ed729-a377-4d42-8e37-86d29faa692b window, !- Name + 94ed4bc5-ac57-4fad-8621-a249c5c04a9f window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d29ed729-a377-4d42-8e37-86d29faa692b, !- Building Surface Name + 94ed4bc5-ac57-4fad-8621-a249c5c04a9f, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3657,10 +3657,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 1d1dbdbf-a442-426b-aba9-a6644ec6ccaf window, !- Name + b1d68f62-6daa-49f7-88c2-b93e7cf18406 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 1d1dbdbf-a442-426b-aba9-a6644ec6ccaf, !- Building Surface Name + b1d68f62-6daa-49f7-88c2-b93e7cf18406, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3680,10 +3680,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 9027ab96-d388-4204-9515-8638e09e0d23 window, !- Name + e2d1fa98-7e9e-4610-a6ab-8dbe69551ff5 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 9027ab96-d388-4204-9515-8638e09e0d23, !- Building Surface Name + e2d1fa98-7e9e-4610-a6ab-8dbe69551ff5, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3703,10 +3703,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d80e753d-3a26-4eda-90b8-b445fdd923b1 window, !- Name + 988d81d6-2b4e-45b8-9071-65cf25a15c59 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d80e753d-3a26-4eda-90b8-b445fdd923b1, !- Building Surface Name + 988d81d6-2b4e-45b8-9071-65cf25a15c59, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3726,10 +3726,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d2676432-8b98-4881-b152-c2993d54e04b window, !- Name + da12b56f-c238-405c-8837-5f503fea4f6f window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d2676432-8b98-4881-b152-c2993d54e04b, !- Building Surface Name + da12b56f-c238-405c-8837-5f503fea4f6f, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3749,10 +3749,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - cabc4bc7-a75c-4989-aeda-0753936a5dee window, !- Name + 0857330d-b5cd-4746-a5e9-251fad1ef835 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - cabc4bc7-a75c-4989-aeda-0753936a5dee, !- Building Surface Name + 0857330d-b5cd-4746-a5e9-251fad1ef835, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3772,10 +3772,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 7c52c57c-7025-415d-a9b8-f5aaf8f58535 window, !- Name + 753b8448-f2a4-4695-9b8e-a18b5952391f window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 7c52c57c-7025-415d-a9b8-f5aaf8f58535, !- Building Surface Name + 753b8448-f2a4-4695-9b8e-a18b5952391f, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3795,10 +3795,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 9de3270a-551d-407e-a8b2-0639ae103505 window, !- Name + d5d765f2-1092-48fa-a7b7-b154ee277681 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 9de3270a-551d-407e-a8b2-0639ae103505, !- Building Surface Name + d5d765f2-1092-48fa-a7b7-b154ee277681, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3818,10 +3818,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 197a0d24-9f0a-416b-ab79-18597f66c1ac window, !- Name + 70bbbb3c-93c6-4afc-a5a8-beea6e9502bb window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 197a0d24-9f0a-416b-ab79-18597f66c1ac, !- Building Surface Name + 70bbbb3c-93c6-4afc-a5a8-beea6e9502bb, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3841,10 +3841,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - fa41c2ed-457a-4e6b-9607-bda10b64a2ee window, !- Name + 41045d45-cd0c-4e6a-b2e0-e81dc2bccd38 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - fa41c2ed-457a-4e6b-9607-bda10b64a2ee, !- Building Surface Name + 41045d45-cd0c-4e6a-b2e0-e81dc2bccd38, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3864,10 +3864,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 6138df36-e729-49f2-b62f-4870fc39c64f window, !- Name + 9485d7b2-3887-412f-a921-fa3ab2023fdd window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 6138df36-e729-49f2-b62f-4870fc39c64f, !- Building Surface Name + 9485d7b2-3887-412f-a921-fa3ab2023fdd, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3887,10 +3887,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - b1db9ae1-c1a3-41ab-9591-e8bd85e6e624 window, !- Name + dc0198e1-ef8a-4ae4-b856-023f4e25c845 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - b1db9ae1-c1a3-41ab-9591-e8bd85e6e624, !- Building Surface Name + dc0198e1-ef8a-4ae4-b856-023f4e25c845, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3910,10 +3910,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 7b0da88c-0b47-4d1a-b84e-aeb70e93020c window, !- Name + 305f15fb-acec-4e3c-a6a8-b02c34cc8918 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 7b0da88c-0b47-4d1a-b84e-aeb70e93020c, !- Building Surface Name + 305f15fb-acec-4e3c-a6a8-b02c34cc8918, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3933,10 +3933,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - dd970e33-a623-4ce7-aafb-8ed198b8ca1c window, !- Name + 71c66759-4e9f-48c2-976c-b60d6d1f99a5 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - dd970e33-a623-4ce7-aafb-8ed198b8ca1c, !- Building Surface Name + 71c66759-4e9f-48c2-976c-b60d6d1f99a5, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3956,10 +3956,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 02cdc36c-704d-47b9-afec-41f43222d0f4 window, !- Name + 2bf4d215-25db-4cda-b12b-672631606f4c window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 02cdc36c-704d-47b9-afec-41f43222d0f4, !- Building Surface Name + 2bf4d215-25db-4cda-b12b-672631606f4c, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3979,10 +3979,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 2142ebb0-161e-43ee-b6de-a5dad97612cc window, !- Name + 92866768-61ad-482d-8464-11a50625de49 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 2142ebb0-161e-43ee-b6de-a5dad97612cc, !- Building Surface Name + 92866768-61ad-482d-8464-11a50625de49, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4002,10 +4002,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - bf2a5a5a-2c66-46bb-9f00-08702ff2cea2 window, !- Name + 0f2f3ac9-46fa-4b2f-b880-bdf7e42a0686 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - bf2a5a5a-2c66-46bb-9f00-08702ff2cea2, !- Building Surface Name + 0f2f3ac9-46fa-4b2f-b880-bdf7e42a0686, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4025,10 +4025,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 1da28fd9-438e-44b3-8ab1-d14cd1dcd738 window, !- Name + 80f9b9aa-47ee-41e1-aa48-f7a1a65c2e05 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 1da28fd9-438e-44b3-8ab1-d14cd1dcd738, !- Building Surface Name + 80f9b9aa-47ee-41e1-aa48-f7a1a65c2e05, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4048,10 +4048,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - b227dda2-bc10-42a6-bfeb-b934b789f695 window, !- Name + 8a46261e-00f3-4288-8fcc-0223ae4b2a7c window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - b227dda2-bc10-42a6-bfeb-b934b789f695, !- Building Surface Name + 8a46261e-00f3-4288-8fcc-0223ae4b2a7c, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4071,10 +4071,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d86fc62f-269c-45de-84ed-d5a196e2095e window, !- Name + dd481caa-73de-47fd-9f74-9b22ce720b44 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d86fc62f-269c-45de-84ed-d5a196e2095e, !- Building Surface Name + dd481caa-73de-47fd-9f74-9b22ce720b44, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4094,10 +4094,10 @@ FENESTRATIONSURFACE:DETAILED, 8.8515; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - cdb601e5-0866-416b-89eb-d048e5859786 window, !- Name + 79f4e5ca-4739-4a69-9955-726c8e859b53 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - cdb601e5-0866-416b-89eb-d048e5859786, !- Building Surface Name + 79f4e5ca-4739-4a69-9955-726c8e859b53, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4117,10 +4117,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - c0c8c17c-fc22-4b92-a946-702e972aa329 window, !- Name + aafb61e8-dfa8-4b3a-be5f-150953bc84e5 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - c0c8c17c-fc22-4b92-a946-702e972aa329, !- Building Surface Name + aafb61e8-dfa8-4b3a-be5f-150953bc84e5, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4140,10 +4140,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d280607f-5351-4a50-81cd-d03df7a28c0d window, !- Name + f21d70fc-7c69-49c4-a53e-2d940858a186 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d280607f-5351-4a50-81cd-d03df7a28c0d, !- Building Surface Name + f21d70fc-7c69-49c4-a53e-2d940858a186, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4163,10 +4163,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - befa0f66-abf7-4e7a-a02c-0b31babea113 window, !- Name + ac2b4e2f-d856-4604-9b60-33146cc9c4ed window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - befa0f66-abf7-4e7a-a02c-0b31babea113, !- Building Surface Name + ac2b4e2f-d856-4604-9b60-33146cc9c4ed, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4186,10 +4186,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - bef1b1ab-759c-483f-939c-bfca5b2118ef window, !- Name + 7d0e5f1d-cd74-4723-b33d-d86d6e019b1d window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - bef1b1ab-759c-483f-939c-bfca5b2118ef, !- Building Surface Name + 7d0e5f1d-cd74-4723-b33d-d86d6e019b1d, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4209,10 +4209,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - bef3d9a2-b25f-44e4-b611-e021b6179865 window, !- Name + 78985b62-1778-40bf-b4f1-3de39fd7ef10 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - bef3d9a2-b25f-44e4-b611-e021b6179865, !- Building Surface Name + 78985b62-1778-40bf-b4f1-3de39fd7ef10, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4232,10 +4232,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - ec306a3c-7b56-44d5-a4de-2e6d6c180df8 window, !- Name + 207e14b7-dc3a-414c-b35e-6c546bfbb70b window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - ec306a3c-7b56-44d5-a4de-2e6d6c180df8, !- Building Surface Name + 207e14b7-dc3a-414c-b35e-6c546bfbb70b, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4255,10 +4255,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 955bdc8b-fadc-4dc9-9146-015e44f6d0f9 window, !- Name + a97f4ca2-37a6-4d25-80b4-85a86eb2282c window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 955bdc8b-fadc-4dc9-9146-015e44f6d0f9, !- Building Surface Name + a97f4ca2-37a6-4d25-80b4-85a86eb2282c, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4278,10 +4278,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 74146306-5cc3-4df9-b2dd-4e2fe410da48 window, !- Name + b518af5b-943a-4354-8536-323fe5eddd66 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 74146306-5cc3-4df9-b2dd-4e2fe410da48, !- Building Surface Name + b518af5b-943a-4354-8536-323fe5eddd66, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4301,10 +4301,10 @@ FENESTRATIONSURFACE:DETAILED, 5.901; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - bf81a09d-7eb2-443c-9dbe-7ccf41e9e733 window, !- Name + e1634d44-c4a7-4008-8d97-d9e8fe6b4420 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - bf81a09d-7eb2-443c-9dbe-7ccf41e9e733, !- Building Surface Name + e1634d44-c4a7-4008-8d97-d9e8fe6b4420, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4324,10 +4324,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 910ec237-d19c-44d2-a0af-53394d66badb window, !- Name + af582559-958b-453e-af2c-ba7d24fe67f3 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 910ec237-d19c-44d2-a0af-53394d66badb, !- Building Surface Name + af582559-958b-453e-af2c-ba7d24fe67f3, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4347,10 +4347,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - dc8b7a69-b843-43f8-810c-af6503e94abf window, !- Name + 603180bb-ee2e-44df-8c24-564538c6645d window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - dc8b7a69-b843-43f8-810c-af6503e94abf, !- Building Surface Name + 603180bb-ee2e-44df-8c24-564538c6645d, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4370,10 +4370,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - dd09fb31-d077-415a-8a35-d4b8e4105f74 window, !- Name + b9f1215c-96e0-4fed-b11f-96dd0c091107 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - dd09fb31-d077-415a-8a35-d4b8e4105f74, !- Building Surface Name + b9f1215c-96e0-4fed-b11f-96dd0c091107, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4393,10 +4393,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 3eb30793-160d-41d4-ad8a-36e1cff208c6 window, !- Name + afef7551-521f-4136-8ee4-a8bb569626fb window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 3eb30793-160d-41d4-ad8a-36e1cff208c6, !- Building Surface Name + afef7551-521f-4136-8ee4-a8bb569626fb, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4416,10 +4416,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 74ca1532-4928-42e1-ae6c-111556837b7e window, !- Name + f8c808e6-1058-4e27-bfd8-82088ae3596a window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 74ca1532-4928-42e1-ae6c-111556837b7e, !- Building Surface Name + f8c808e6-1058-4e27-bfd8-82088ae3596a, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4439,10 +4439,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - b9be6c6f-0afa-49ad-b01f-b622a8d5ab55 window, !- Name + c93c41eb-4593-463d-9913-dd0afe16ece0 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - b9be6c6f-0afa-49ad-b01f-b622a8d5ab55, !- Building Surface Name + c93c41eb-4593-463d-9913-dd0afe16ece0, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4462,10 +4462,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - ddcf0603-5da2-4bc2-8cd9-9c786ef507f8 window, !- Name + cd1e2a22-2eb1-439e-a009-442290519521 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - ddcf0603-5da2-4bc2-8cd9-9c786ef507f8, !- Building Surface Name + cd1e2a22-2eb1-439e-a009-442290519521, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4485,10 +4485,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - e5a6337e-9cdc-41fb-bce3-bf0e99836fb9 window, !- Name + 885ed1bd-2100-4737-9188-c7067f7af8b7 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - e5a6337e-9cdc-41fb-bce3-bf0e99836fb9, !- Building Surface Name + 885ed1bd-2100-4737-9188-c7067f7af8b7, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4508,10 +4508,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 869a399d-0da3-4cde-ad63-60bfdac22071 window, !- Name + 7abb3f53-807e-4b86-86e3-8b940af12731 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 869a399d-0da3-4cde-ad63-60bfdac22071, !- Building Surface Name + 7abb3f53-807e-4b86-86e3-8b940af12731, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4531,10 +4531,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 6ed55f0d-f5cd-49c2-8f09-54d704a502fa window, !- Name + 5d0bae4c-b3eb-48a9-968f-d72760e72ed9 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 6ed55f0d-f5cd-49c2-8f09-54d704a502fa, !- Building Surface Name + 5d0bae4c-b3eb-48a9-968f-d72760e72ed9, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4554,10 +4554,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - dbabeafe-8c2d-40ef-a157-12f9ba741b94 window, !- Name + f1395637-7dda-44af-834d-48dfdf24db83 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - dbabeafe-8c2d-40ef-a157-12f9ba741b94, !- Building Surface Name + f1395637-7dda-44af-834d-48dfdf24db83, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4577,10 +4577,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 690a4f44-19b1-4de4-9442-7b0128c1d064 window, !- Name + 8912da34-87a5-4126-a1f1-1552f5aae7e7 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 690a4f44-19b1-4de4-9442-7b0128c1d064, !- Building Surface Name + 8912da34-87a5-4126-a1f1-1552f5aae7e7, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4600,10 +4600,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 6a9b97e1-4df2-40cf-989e-da7dccb0c37f window, !- Name + 0fdcc26f-d760-468c-9c9e-ea174e9497a9 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 6a9b97e1-4df2-40cf-989e-da7dccb0c37f, !- Building Surface Name + 0fdcc26f-d760-468c-9c9e-ea174e9497a9, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4623,10 +4623,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 6e8c6aac-226b-4c91-952c-b33ef4dc8ce0 window, !- Name + ba01efbe-4a81-414d-bd05-2f21b9b15f11 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 6e8c6aac-226b-4c91-952c-b33ef4dc8ce0, !- Building Surface Name + ba01efbe-4a81-414d-bd05-2f21b9b15f11, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4646,10 +4646,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 531634db-2c61-44a3-80d9-94a5852e16ab window, !- Name + f4100d38-5272-4a9c-a8eb-e3383d7d80bc window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 531634db-2c61-44a3-80d9-94a5852e16ab, !- Building Surface Name + f4100d38-5272-4a9c-a8eb-e3383d7d80bc, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4669,10 +4669,10 @@ FENESTRATIONSURFACE:DETAILED, 5.3109; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 5b3d56a5-f20b-4d2b-8f09-4a79f3ba9a13 window, !- Name + dc48dbce-ea32-40cb-9a71-1a7b6519cd98 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 5b3d56a5-f20b-4d2b-8f09-4a79f3ba9a13, !- Building Surface Name + dc48dbce-ea32-40cb-9a71-1a7b6519cd98, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name diff --git a/out_files/Montreal_out.mtr b/out_files/Montreal_out.mtr index e13162de..87da16b6 100644 --- a/out_files/Montreal_out.mtr +++ b/out_files/Montreal_out.mtr @@ -1,4 +1,4 @@ -Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22 +Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.01.02 18:16 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 diff --git a/out_files/Montreal_out.rvaudit b/out_files/Montreal_out.rvaudit index ca2853d3..169d7eae 100644 --- a/out_files/Montreal_out.rvaudit +++ b/out_files/Montreal_out.rvaudit @@ -1,16 +1,16 @@ ReadVarsESO - processing:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_e958fe.rvi + processing:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_ac714f.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 3.11sec + ReadVars Run Time=00hr 00min 1.55sec ReadVarsESO program completed successfully. ReadVarsESO - processing:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_e958fe.mvi + processing:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_ac714f.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.41sec + ReadVars Run Time=00hr 00min 0.20sec ReadVarsESO program completed successfully. diff --git a/out_files/Montreal_out.shd b/out_files/Montreal_out.shd index 838995b8..cd8527bd 100644 --- a/out_files/Montreal_out.shd +++ b/out_files/Montreal_out.shd @@ -3,1165 +3,1165 @@ Shadowing Combinations ..In the following, only the first 10 reference surfaces will be shown. ..But all surfaces are used in the calculations. ================================== -Surface=E9A776D7-C08A-4903-BDDE-33A1B75C006F is used as Receiving Surface in calculations and is convex. +Surface=88D081F6-1235-44A7-A462-7D1CE4B365BF is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=4 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=C0C8C17C-FC22-4B92-A946-702E972AA329 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=8912DA34-87A5-4126-A1F1-1552F5AAE7E7 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=E9A776D7-C08A-4903-BDDE-33A1B75C006F WINDOW +....Surface=88D081F6-1235-44A7-A462-7D1CE4B365BF WINDOW ================================== -Surface=E9A776D7-C08A-4903-BDDE-33A1B75C006F WINDOW is not used as Receiving Surface in calculations. +Surface=88D081F6-1235-44A7-A462-7D1CE4B365BF WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=F4521949-B172-4B21-BF0B-6432AA6135A1 is not used as Receiving Surface in calculations. +Surface=D524E2BC-728B-4064-A728-B9233029F720 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 is used as Receiving Surface in calculations and is convex. +Surface=04E70FD4-4E5A-4F9E-99F0-91053F07191E is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=10 -..Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 -..Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 +..Surface=753B8448-F2A4-4695-9B8E-A18B5952391F +..Surface=70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=F21D70FC-7C69-49C4-A53E-2D940858A186 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=C93C41EB-4593-463D-9913-DD0AFE16ECE0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 WINDOW +....Surface=04E70FD4-4E5A-4F9E-99F0-91053F07191E WINDOW ================================== -Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 WINDOW is not used as Receiving Surface in calculations. +Surface=04E70FD4-4E5A-4F9E-99F0-91053F07191E WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=E8BF2A49-1558-41BC-96CB-123915D688BF is not used as Receiving Surface in calculations. +Surface=4E32AC48-CE37-4AB6-B73B-84BB5568732A is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=49A6A0D1-21FA-4174-A2E8-6E59F41BE8B9 is not used as Receiving Surface in calculations. +Surface=F865DFC4-F54F-4140-92DC-0D85027B6556 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=6714F8CE-FBE1-41FA-8146-152344E45E89 is used as Receiving Surface in calculations and is convex. +Surface=66443928-1B2B-4D46-A3A3-5FB64B451447 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=11 -..Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 -..Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=C0C8C17C-FC22-4B92-A946-702E972AA329 -..Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D +..Surface=753B8448-F2A4-4695-9B8E-A18B5952391F +..Surface=70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 +..Surface=F21D70FC-7C69-49C4-A53E-2D940858A186 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=A0CC674E-7FF5-4E87-8D8B-D2879920F518 is used as Receiving Surface in calculations and is convex. +Surface=69F96927-5BF0-4A6D-828E-BFC11FE57194 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=3 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=8912DA34-87A5-4126-A1F1-1552F5AAE7E7 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=A0CC674E-7FF5-4E87-8D8B-D2879920F518 WINDOW +....Surface=69F96927-5BF0-4A6D-828E-BFC11FE57194 WINDOW ================================== -Surface=A0CC674E-7FF5-4E87-8D8B-D2879920F518 WINDOW is not used as Receiving Surface in calculations. +Surface=69F96927-5BF0-4A6D-828E-BFC11FE57194 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=6894AE2C-4DE8-4004-B743-24810745043C is used as Receiving Surface in calculations and is convex. +Surface=BD731930-1F08-4394-84A6-108312B0499E is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=2 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=8912DA34-87A5-4126-A1F1-1552F5AAE7E7 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=6894AE2C-4DE8-4004-B743-24810745043C WINDOW +....Surface=BD731930-1F08-4394-84A6-108312B0499E WINDOW ================================== -Surface=6894AE2C-4DE8-4004-B743-24810745043C WINDOW is not used as Receiving Surface in calculations. +Surface=BD731930-1F08-4394-84A6-108312B0499E WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 is used as Receiving Surface in calculations and is convex. +Surface=1ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=6 -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 -..Surface=DBABEAFE-8C2D-40EF-A157-12F9BA741B94 -..Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=E1634D44-C4A7-4008-8D97-D9E8FE6B4420 +..Surface=F1395637-7DDA-44AF-834D-48DFDF24DB83 +..Surface=8912DA34-87A5-4126-A1F1-1552F5AAE7E7 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 WINDOW +....Surface=1ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7 WINDOW ================================== -Surface=8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 WINDOW is not used as Receiving Surface in calculations. +Surface=1ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=3476659A-7777-4217-879B-EC7411A9F8F4 is used as Receiving Surface in calculations and is convex. +Surface=237E30F1-CCC2-4275-AE30-F820AE689BDB is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=10 -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=DD09FB31-D077-415A-8A35-D4B8E4105F74 -..Surface=E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 -..Surface=6ED55F0D-F5CD-49C2-8F09-54D704A502FA -..Surface=DBABEAFE-8C2D-40EF-A157-12F9BA741B94 -..Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 -..Surface=6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 -..Surface=5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=B9F1215C-96E0-4FED-B11F-96DD0C091107 +..Surface=885ED1BD-2100-4737-9188-C7067F7AF8B7 +..Surface=5D0BAE4C-B3EB-48A9-968F-D72760E72ED9 +..Surface=F1395637-7DDA-44AF-834D-48DFDF24DB83 +..Surface=8912DA34-87A5-4126-A1F1-1552F5AAE7E7 +..Surface=BA01EFBE-4A81-414D-BD05-2F21B9B15F11 +..Surface=DC48DBCE-EA32-40CB-9A71-1A7B6519CD98 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=3476659A-7777-4217-879B-EC7411A9F8F4 WINDOW +....Surface=237E30F1-CCC2-4275-AE30-F820AE689BDB WINDOW ================================== -Surface=3476659A-7777-4217-879B-EC7411A9F8F4 WINDOW is not used as Receiving Surface in calculations. +Surface=237E30F1-CCC2-4275-AE30-F820AE689BDB WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 is used as Receiving Surface in calculations and is convex. +Surface=6BD00B18-05ED-4D63-9E3B-27DB4F7D91FB is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=7 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 WINDOW +....Surface=6BD00B18-05ED-4D63-9E3B-27DB4F7D91FB WINDOW ================================== -Surface=A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 WINDOW is not used as Receiving Surface in calculations. +Surface=6BD00B18-05ED-4D63-9E3B-27DB4F7D91FB WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=DEB2FACA-865F-4594-9474-DBC514C3E015 is not used as Receiving Surface in calculations. +Surface=38C5298B-D4AF-4C7E-BBF0-01EC4F15E3FA is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=D6F1DC5C-00EA-4F85-AAA6-4D2C54BFA8A8 is not used as Receiving Surface in calculations. +Surface=74C42012-9742-41A2-B35F-CC626FA4017D is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=A804AC39-E991-4FA7-8EBD-6E9DE27C6449 is used as Receiving Surface in calculations and is convex. +Surface=52EBFD0A-5C2E-431E-B4D4-FFEFE9D94EDC is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=10 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=C0C8C17C-FC22-4B92-A946-702E972AA329 -..Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 +..Surface=F21D70FC-7C69-49C4-A53E-2D940858A186 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=D29ED729-A377-4D42-8E37-86D29FAA692B is used as Receiving Surface in calculations and is convex. +Surface=94ED4BC5-AC57-4FAD-8621-A249C5C04A9F is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=2 -..Surface=1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF -..Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 +..Surface=B1D68F62-6DAA-49F7-88C2-B93E7CF18406 +..Surface=988D81D6-2B4E-45B8-9071-65CF25A15C59 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=D29ED729-A377-4D42-8E37-86D29FAA692B WINDOW +....Surface=94ED4BC5-AC57-4FAD-8621-A249C5C04A9F WINDOW ================================== -Surface=D29ED729-A377-4D42-8E37-86D29FAA692B WINDOW is not used as Receiving Surface in calculations. +Surface=94ED4BC5-AC57-4FAD-8621-A249C5C04A9F WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF is used as Receiving Surface in calculations and is convex. +Surface=B1D68F62-6DAA-49F7-88C2-B93E7CF18406 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=4 -..Surface=D29ED729-A377-4D42-8E37-86D29FAA692B -..Surface=DD09FB31-D077-415A-8A35-D4B8E4105F74 -..Surface=E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 -..Surface=5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13 +..Surface=94ED4BC5-AC57-4FAD-8621-A249C5C04A9F +..Surface=B9F1215C-96E0-4FED-B11F-96DD0C091107 +..Surface=885ED1BD-2100-4737-9188-C7067F7AF8B7 +..Surface=DC48DBCE-EA32-40CB-9A71-1A7B6519CD98 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF WINDOW +....Surface=B1D68F62-6DAA-49F7-88C2-B93E7CF18406 WINDOW ================================== -Surface=1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF WINDOW is not used as Receiving Surface in calculations. +Surface=B1D68F62-6DAA-49F7-88C2-B93E7CF18406 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=9027AB96-D388-4204-9515-8638E09E0D23 is used as Receiving Surface in calculations and is convex. +Surface=E2D1FA98-7E9E-4610-A6AB-8DBE69551FF5 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=2 -..Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 -..Surface=9DE3270A-551D-407E-A8B2-0639AE103505 +..Surface=988D81D6-2B4E-45B8-9071-65CF25A15C59 +..Surface=D5D765F2-1092-48FA-A7B7-B154EE277681 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=9027AB96-D388-4204-9515-8638E09E0D23 WINDOW +....Surface=E2D1FA98-7E9E-4610-A6AB-8DBE69551FF5 WINDOW ================================== -Surface=9027AB96-D388-4204-9515-8638E09E0D23 WINDOW is not used as Receiving Surface in calculations. +Surface=E2D1FA98-7E9E-4610-A6AB-8DBE69551FF5 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 is used as Receiving Surface in calculations and is convex. +Surface=988D81D6-2B4E-45B8-9071-65CF25A15C59 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=6 -..Surface=D29ED729-A377-4D42-8E37-86D29FAA692B -..Surface=9027AB96-D388-4204-9515-8638E09E0D23 -..Surface=DD09FB31-D077-415A-8A35-D4B8E4105F74 -..Surface=E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 -..Surface=6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 -..Surface=5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13 +..Surface=94ED4BC5-AC57-4FAD-8621-A249C5C04A9F +..Surface=E2D1FA98-7E9E-4610-A6AB-8DBE69551FF5 +..Surface=B9F1215C-96E0-4FED-B11F-96DD0C091107 +..Surface=885ED1BD-2100-4737-9188-C7067F7AF8B7 +..Surface=BA01EFBE-4A81-414D-BD05-2F21B9B15F11 +..Surface=DC48DBCE-EA32-40CB-9A71-1A7B6519CD98 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 WINDOW +....Surface=988D81D6-2B4E-45B8-9071-65CF25A15C59 WINDOW ================================== -Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 WINDOW is not used as Receiving Surface in calculations. +Surface=988D81D6-2B4E-45B8-9071-65CF25A15C59 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=D2676432-8B98-4881-B152-C2993D54E04B is used as Receiving Surface in calculations and is convex. +Surface=DA12B56F-C238-405C-8837-5F503FEA4F6F is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=1 -..Surface=CABC4BC7-A75C-4989-AEDA-0753936A5DEE +..Surface=0857330D-B5CD-4746-A5E9-251FAD1EF835 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=D2676432-8B98-4881-B152-C2993D54E04B WINDOW +....Surface=DA12B56F-C238-405C-8837-5F503FEA4F6F WINDOW ================================== -Surface=D2676432-8B98-4881-B152-C2993D54E04B WINDOW is not used as Receiving Surface in calculations. +Surface=DA12B56F-C238-405C-8837-5F503FEA4F6F WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=CABC4BC7-A75C-4989-AEDA-0753936A5DEE is used as Receiving Surface in calculations and is convex. +Surface=0857330D-B5CD-4746-A5E9-251FAD1EF835 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=1 -..Surface=D2676432-8B98-4881-B152-C2993D54E04B +..Surface=DA12B56F-C238-405C-8837-5F503FEA4F6F Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=CABC4BC7-A75C-4989-AEDA-0753936A5DEE WINDOW +....Surface=0857330D-B5CD-4746-A5E9-251FAD1EF835 WINDOW ================================== -Surface=CABC4BC7-A75C-4989-AEDA-0753936A5DEE WINDOW is not used as Receiving Surface in calculations. +Surface=0857330D-B5CD-4746-A5E9-251FAD1EF835 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 is used as Receiving Surface in calculations and is convex. +Surface=753B8448-F2A4-4695-9B8E-A18B5952391F is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=8 -..Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 -..Surface=9DE3270A-551D-407E-A8B2-0639AE103505 -..Surface=FA41C2ED-457A-4E6B-9607-BDA10B64A2EE -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 -..Surface=B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 +..Surface=04E70FD4-4E5A-4F9E-99F0-91053F07191E +..Surface=D5D765F2-1092-48FA-A7B7-B154EE277681 +..Surface=41045D45-CD0C-4E6A-B2E0-E81DC2BCCD38 +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=F21D70FC-7C69-49C4-A53E-2D940858A186 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=A97F4CA2-37A6-4D25-80B4-85A86EB2282C +..Surface=C93C41EB-4593-463D-9913-DD0AFE16ECE0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 WINDOW +....Surface=753B8448-F2A4-4695-9B8E-A18B5952391F WINDOW ================================== -Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 WINDOW is not used as Receiving Surface in calculations. +Surface=753B8448-F2A4-4695-9B8E-A18B5952391F WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=9DE3270A-551D-407E-A8B2-0639AE103505 is used as Receiving Surface in calculations and is convex. +Surface=D5D765F2-1092-48FA-A7B7-B154EE277681 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=2 -..Surface=9027AB96-D388-4204-9515-8638E09E0D23 -..Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 +..Surface=E2D1FA98-7E9E-4610-A6AB-8DBE69551FF5 +..Surface=753B8448-F2A4-4695-9B8E-A18B5952391F Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=9DE3270A-551D-407E-A8B2-0639AE103505 WINDOW +....Surface=D5D765F2-1092-48FA-A7B7-B154EE277681 WINDOW ================================== -Surface=9DE3270A-551D-407E-A8B2-0639AE103505 WINDOW is not used as Receiving Surface in calculations. +Surface=D5D765F2-1092-48FA-A7B7-B154EE277681 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC is used as Receiving Surface in calculations and is convex. +Surface=70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=7 -..Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 -..Surface=FA41C2ED-457A-4E6B-9607-BDA10B64A2EE -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 -..Surface=B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 +..Surface=04E70FD4-4E5A-4F9E-99F0-91053F07191E +..Surface=41045D45-CD0C-4E6A-B2E0-E81DC2BCCD38 +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=F21D70FC-7C69-49C4-A53E-2D940858A186 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=A97F4CA2-37A6-4D25-80B4-85A86EB2282C +..Surface=C93C41EB-4593-463D-9913-DD0AFE16ECE0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC WINDOW +....Surface=70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB WINDOW ================================== -Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC WINDOW is not used as Receiving Surface in calculations. +Surface=70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=FA41C2ED-457A-4E6B-9607-BDA10B64A2EE is used as Receiving Surface in calculations and is convex. +Surface=41045D45-CD0C-4E6A-B2E0-E81DC2BCCD38 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=2 -..Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 -..Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC +..Surface=753B8448-F2A4-4695-9B8E-A18B5952391F +..Surface=70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=FA41C2ED-457A-4E6B-9607-BDA10B64A2EE WINDOW +....Surface=41045D45-CD0C-4E6A-B2E0-E81DC2BCCD38 WINDOW ================================== -Surface=FA41C2ED-457A-4E6B-9607-BDA10B64A2EE WINDOW is not used as Receiving Surface in calculations. +Surface=41045D45-CD0C-4E6A-B2E0-E81DC2BCCD38 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=6138DF36-E729-49F2-B62F-4870FC39C64F is used as Receiving Surface in calculations and is convex. +Surface=9485D7B2-3887-412F-A921-FA3AB2023FDD is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=3 -..Surface=B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 +..Surface=DC0198E1-EF8A-4AE4-B856-023F4E25C845 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=A97F4CA2-37A6-4D25-80B4-85A86EB2282C Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=6138DF36-E729-49F2-B62F-4870FC39C64F WINDOW +....Surface=9485D7B2-3887-412F-A921-FA3AB2023FDD WINDOW ================================== -Surface=6138DF36-E729-49F2-B62F-4870FC39C64F WINDOW is not used as Receiving Surface in calculations. +Surface=9485D7B2-3887-412F-A921-FA3AB2023FDD WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 is used as Receiving Surface in calculations and is convex. +Surface=DC0198E1-EF8A-4AE4-B856-023F4E25C845 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=3 -..Surface=6138DF36-E729-49F2-B62F-4870FC39C64F -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 +..Surface=9485D7B2-3887-412F-A921-FA3AB2023FDD +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=A97F4CA2-37A6-4D25-80B4-85A86EB2282C Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 WINDOW +....Surface=DC0198E1-EF8A-4AE4-B856-023F4E25C845 WINDOW ================================== -Surface=B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 WINDOW is not used as Receiving Surface in calculations. +Surface=DC0198E1-EF8A-4AE4-B856-023F4E25C845 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C is used as Receiving Surface in calculations and is convex. +Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=16 -..Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 -..Surface=A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 -..Surface=DD970E33-A623-4CE7-AAFB-8ED198B8CA1C -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D -..Surface=BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 -..Surface=DD09FB31-D077-415A-8A35-D4B8E4105F74 -..Surface=B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 +..Surface=04E70FD4-4E5A-4F9E-99F0-91053F07191E +..Surface=6BD00B18-05ED-4D63-9E3B-27DB4F7D91FB +..Surface=71C66759-4E9F-48C2-976C-B60D6D1F99A5 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=F21D70FC-7C69-49C4-A53E-2D940858A186 +..Surface=AC2B4E2F-D856-4604-9B60-33146CC9C4ED +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=A97F4CA2-37A6-4D25-80B4-85A86EB2282C +..Surface=B9F1215C-96E0-4FED-B11F-96DD0C091107 +..Surface=C93C41EB-4593-463D-9913-DD0AFE16ECE0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C WINDOW +....Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 WINDOW ================================== -Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C WINDOW is not used as Receiving Surface in calculations. +Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=DD970E33-A623-4CE7-AAFB-8ED198B8CA1C is used as Receiving Surface in calculations and is convex. +Surface=71C66759-4E9F-48C2-976C-B60D6D1F99A5 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=3 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=A97F4CA2-37A6-4D25-80B4-85A86EB2282C Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=DD970E33-A623-4CE7-AAFB-8ED198B8CA1C WINDOW +....Surface=71C66759-4E9F-48C2-976C-B60D6D1F99A5 WINDOW ================================== -Surface=DD970E33-A623-4CE7-AAFB-8ED198B8CA1C WINDOW is not used as Receiving Surface in calculations. +Surface=71C66759-4E9F-48C2-976C-B60D6D1F99A5 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 is used as Receiving Surface in calculations and is convex. +Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=15 -..Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 -..Surface=A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D -..Surface=BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 -..Surface=DD09FB31-D077-415A-8A35-D4B8E4105F74 -..Surface=B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 -..Surface=E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 +..Surface=04E70FD4-4E5A-4F9E-99F0-91053F07191E +..Surface=6BD00B18-05ED-4D63-9E3B-27DB4F7D91FB +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=F21D70FC-7C69-49C4-A53E-2D940858A186 +..Surface=AC2B4E2F-D856-4604-9B60-33146CC9C4ED +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=A97F4CA2-37A6-4D25-80B4-85A86EB2282C +..Surface=B9F1215C-96E0-4FED-B11F-96DD0C091107 +..Surface=C93C41EB-4593-463D-9913-DD0AFE16ECE0 +..Surface=885ED1BD-2100-4737-9188-C7067F7AF8B7 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 WINDOW +....Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C WINDOW ================================== -Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 WINDOW is not used as Receiving Surface in calculations. +Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC is used as Receiving Surface in calculations and is convex. +Surface=92866768-61AD-482D-8464-11A50625DE49 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=11 -..Surface=A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=DD09FB31-D077-415A-8A35-D4B8E4105F74 -..Surface=E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 -..Surface=6ED55F0D-F5CD-49C2-8F09-54D704A502FA -..Surface=DBABEAFE-8C2D-40EF-A157-12F9BA741B94 -..Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 -..Surface=6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 +..Surface=6BD00B18-05ED-4D63-9E3B-27DB4F7D91FB +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=B9F1215C-96E0-4FED-B11F-96DD0C091107 +..Surface=885ED1BD-2100-4737-9188-C7067F7AF8B7 +..Surface=5D0BAE4C-B3EB-48A9-968F-D72760E72ED9 +..Surface=F1395637-7DDA-44AF-834D-48DFDF24DB83 +..Surface=8912DA34-87A5-4126-A1F1-1552F5AAE7E7 +..Surface=BA01EFBE-4A81-414D-BD05-2F21B9B15F11 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC WINDOW +....Surface=92866768-61AD-482D-8464-11A50625DE49 WINDOW ================================== -Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC WINDOW is not used as Receiving Surface in calculations. +Surface=92866768-61AD-482D-8464-11A50625DE49 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 is used as Receiving Surface in calculations and is convex. +Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=18 -..Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 -..Surface=8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 -..Surface=3476659A-7777-4217-879B-EC7411A9F8F4 -..Surface=A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 +..Surface=04E70FD4-4E5A-4F9E-99F0-91053F07191E +..Surface=1ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7 +..Surface=237E30F1-CCC2-4275-AE30-F820AE689BDB +..Surface=6BD00B18-05ED-4D63-9E3B-27DB4F7D91FB +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=F21D70FC-7C69-49C4-A53E-2D940858A186 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=A97F4CA2-37A6-4D25-80B4-85A86EB2282C Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 WINDOW +....Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 WINDOW ================================== -Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 WINDOW is not used as Receiving Surface in calculations. +Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 is used as Receiving Surface in calculations and is convex. +Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=14 -..Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 -..Surface=8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 -..Surface=3476659A-7777-4217-879B-EC7411A9F8F4 -..Surface=A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 +..Surface=04E70FD4-4E5A-4F9E-99F0-91053F07191E +..Surface=1ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7 +..Surface=237E30F1-CCC2-4275-AE30-F820AE689BDB +..Surface=6BD00B18-05ED-4D63-9E3B-27DB4F7D91FB +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=F21D70FC-7C69-49C4-A53E-2D940858A186 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 WINDOW +....Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 WINDOW ================================== -Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 WINDOW is not used as Receiving Surface in calculations. +Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 is used as Receiving Surface in calculations and is convex. +Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=17 -..Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 -..Surface=8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 -..Surface=3476659A-7777-4217-879B-EC7411A9F8F4 -..Surface=A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 -..Surface=910EC237-D19C-44D2-A0AF-53394D66BADB +..Surface=04E70FD4-4E5A-4F9E-99F0-91053F07191E +..Surface=1ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7 +..Surface=237E30F1-CCC2-4275-AE30-F820AE689BDB +..Surface=6BD00B18-05ED-4D63-9E3B-27DB4F7D91FB +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=F21D70FC-7C69-49C4-A53E-2D940858A186 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=A97F4CA2-37A6-4D25-80B4-85A86EB2282C +..Surface=AF582559-958B-453E-AF2C-BA7D24FE67F3 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 WINDOW +....Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C WINDOW ================================== -Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 WINDOW is not used as Receiving Surface in calculations. +Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=D86FC62F-269C-45DE-84ED-D5A196E2095E is used as Receiving Surface in calculations and is convex. +Surface=DD481CAA-73DE-47FD-9F74-9B22CE720B44 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=1 -..Surface=910EC237-D19C-44D2-A0AF-53394D66BADB +..Surface=AF582559-958B-453E-AF2C-BA7D24FE67F3 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=D86FC62F-269C-45DE-84ED-D5A196E2095E WINDOW +....Surface=DD481CAA-73DE-47FD-9F74-9B22CE720B44 WINDOW ================================== -Surface=D86FC62F-269C-45DE-84ED-D5A196E2095E WINDOW is not used as Receiving Surface in calculations. +Surface=DD481CAA-73DE-47FD-9F74-9B22CE720B44 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=95977B63-DA57-40D5-A214-4D2FABCA5347 is not used as Receiving Surface in calculations. +Surface=CE148459-71BF-43F3-AE25-19FE02B0FD00 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=D6A7ED84-8E6C-4CB5-835C-1ADA1608F8DE is used as Receiving Surface in calculations and is non-convex. +Surface=F535E8FA-0079-4D18-84FD-C9C325421B0F is used as Receiving Surface in calculations and is non-convex. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=CDB601E5-0866-416B-89EB-D048E5859786 is used as Receiving Surface in calculations and is convex. +Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=14 -..Surface=E9A776D7-C08A-4903-BDDE-33A1B75C006F -..Surface=A0CC674E-7FF5-4E87-8D8B-D2879920F518 -..Surface=6894AE2C-4DE8-4004-B743-24810745043C -..Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 -..Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=C0C8C17C-FC22-4B92-A946-702E972AA329 +..Surface=88D081F6-1235-44A7-A462-7D1CE4B365BF +..Surface=69F96927-5BF0-4A6D-828E-BFC11FE57194 +..Surface=BD731930-1F08-4394-84A6-108312B0499E +..Surface=753B8448-F2A4-4695-9B8E-A18B5952391F +..Surface=70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=CDB601E5-0866-416B-89EB-D048E5859786 WINDOW +....Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 WINDOW ================================== -Surface=CDB601E5-0866-416B-89EB-D048E5859786 WINDOW is not used as Receiving Surface in calculations. +Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=C0C8C17C-FC22-4B92-A946-702E972AA329 is used as Receiving Surface in calculations and is convex. +Surface=AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=5 -..Surface=E9A776D7-C08A-4903-BDDE-33A1B75C006F -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=74CA1532-4928-42E1-AE6C-111556837B7E -..Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 +..Surface=88D081F6-1235-44A7-A462-7D1CE4B365BF +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=F8C808E6-1058-4E27-BFD8-82088AE3596A +..Surface=8912DA34-87A5-4126-A1F1-1552F5AAE7E7 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=C0C8C17C-FC22-4B92-A946-702E972AA329 WINDOW +....Surface=AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 WINDOW ================================== -Surface=C0C8C17C-FC22-4B92-A946-702E972AA329 WINDOW is not used as Receiving Surface in calculations. +Surface=AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=1B24CA94-8734-4D2B-B6FD-E88558AED682 is not used as Receiving Surface in calculations. +Surface=1D17A2B6-8F51-445B-9FC7-DC14A2BD768A is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D is used as Receiving Surface in calculations and is convex. +Surface=F21D70FC-7C69-49C4-A53E-2D940858A186 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=9 -..Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 -..Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 -..Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 +..Surface=04E70FD4-4E5A-4F9E-99F0-91053F07191E +..Surface=753B8448-F2A4-4695-9B8E-A18B5952391F +..Surface=70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D WINDOW +....Surface=F21D70FC-7C69-49C4-A53E-2D940858A186 WINDOW ================================== -Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D WINDOW is not used as Receiving Surface in calculations. +Surface=F21D70FC-7C69-49C4-A53E-2D940858A186 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113 is used as Receiving Surface in calculations and is convex. +Surface=AC2B4E2F-D856-4604-9B60-33146CC9C4ED is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=4 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=BEF3D9A2-B25F-44E4-B611-E021B6179865 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=78985B62-1778-40BF-B4F1-3DE39FD7EF10 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113 WINDOW +....Surface=AC2B4E2F-D856-4604-9B60-33146CC9C4ED WINDOW ================================== -Surface=BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113 WINDOW is not used as Receiving Surface in calculations. +Surface=AC2B4E2F-D856-4604-9B60-33146CC9C4ED WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=BEF1B1AB-759C-483F-939C-BFCA5B2118EF is used as Receiving Surface in calculations and is convex. +Surface=7D0E5F1D-CD74-4723-B33D-D86D6E019B1D is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=BEF1B1AB-759C-483F-939C-BFCA5B2118EF WINDOW +....Surface=7D0E5F1D-CD74-4723-B33D-D86D6E019B1D WINDOW ================================== -Surface=BEF1B1AB-759C-483F-939C-BFCA5B2118EF WINDOW is not used as Receiving Surface in calculations. +Surface=7D0E5F1D-CD74-4723-B33D-D86D6E019B1D WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=8C214F58-37B7-4E41-AFEB-B048BCA834AE is not used as Receiving Surface in calculations. +Surface=3880CEA6-B84D-46D9-860D-F6E0613132C8 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=37756D72-403D-46F2-9CDE-4E412064828F is used as Receiving Surface in calculations and is non-convex. +Surface=59867B21-8DEA-45D3-882B-467CABAE3A3D is used as Receiving Surface in calculations and is non-convex. Number of general casting surfaces=7 -..Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 -..Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 +..Surface=753B8448-F2A4-4695-9B8E-A18B5952391F +..Surface=70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=BEF3D9A2-B25F-44E4-B611-E021B6179865 is used as Receiving Surface in calculations and is convex. +Surface=78985B62-1778-40BF-B4F1-3DE39FD7EF10 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=2 -..Surface=BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113 -..Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 +..Surface=AC2B4E2F-D856-4604-9B60-33146CC9C4ED +..Surface=8912DA34-87A5-4126-A1F1-1552F5AAE7E7 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=BEF3D9A2-B25F-44E4-B611-E021B6179865 WINDOW +....Surface=78985B62-1778-40BF-B4F1-3DE39FD7EF10 WINDOW ================================== -Surface=BEF3D9A2-B25F-44E4-B611-E021B6179865 WINDOW is not used as Receiving Surface in calculations. +Surface=78985B62-1778-40BF-B4F1-3DE39FD7EF10 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 is used as Receiving Surface in calculations and is convex. +Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=27 -..Surface=E9A776D7-C08A-4903-BDDE-33A1B75C006F -..Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 -..Surface=A0CC674E-7FF5-4E87-8D8B-D2879920F518 -..Surface=A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 -..Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 -..Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC -..Surface=6138DF36-E729-49F2-B62F-4870FC39C64F -..Surface=B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=DD970E33-A623-4CE7-AAFB-8ED198B8CA1C +..Surface=88D081F6-1235-44A7-A462-7D1CE4B365BF +..Surface=04E70FD4-4E5A-4F9E-99F0-91053F07191E +..Surface=69F96927-5BF0-4A6D-828E-BFC11FE57194 +..Surface=6BD00B18-05ED-4D63-9E3B-27DB4F7D91FB +..Surface=753B8448-F2A4-4695-9B8E-A18B5952391F +..Surface=70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB +..Surface=9485D7B2-3887-412F-A921-FA3AB2023FDD +..Surface=DC0198E1-EF8A-4AE4-B856-023F4E25C845 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=71C66759-4E9F-48C2-976C-B60D6D1F99A5 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 WINDOW +....Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B WINDOW ================================== -Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 WINDOW is not used as Receiving Surface in calculations. +Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 is used as Receiving Surface in calculations and is convex. +Surface=A97F4CA2-37A6-4D25-80B4-85A86EB2282C is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=10 -..Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 -..Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC -..Surface=6138DF36-E729-49F2-B62F-4870FC39C64F -..Surface=B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=DD970E33-A623-4CE7-AAFB-8ED198B8CA1C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 +..Surface=753B8448-F2A4-4695-9B8E-A18B5952391F +..Surface=70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB +..Surface=9485D7B2-3887-412F-A921-FA3AB2023FDD +..Surface=DC0198E1-EF8A-4AE4-B856-023F4E25C845 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=71C66759-4E9F-48C2-976C-B60D6D1F99A5 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 WINDOW +....Surface=A97F4CA2-37A6-4D25-80B4-85A86EB2282C WINDOW ================================== -Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 WINDOW is not used as Receiving Surface in calculations. +Surface=A97F4CA2-37A6-4D25-80B4-85A86EB2282C WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=74146306-5CC3-4DF9-B2DD-4E2FE410DA48 is used as Receiving Surface in calculations and is convex. +Surface=B518AF5B-943A-4354-8536-323FE5EDDD66 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=74146306-5CC3-4DF9-B2DD-4E2FE410DA48 WINDOW +....Surface=B518AF5B-943A-4354-8536-323FE5EDDD66 WINDOW ================================== -Surface=74146306-5CC3-4DF9-B2DD-4E2FE410DA48 WINDOW is not used as Receiving Surface in calculations. +Surface=B518AF5B-943A-4354-8536-323FE5EDDD66 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=E562FE09-B0C0-4242-8049-66A78D056BB6 is not used as Receiving Surface in calculations. +Surface=FD0A6DC8-DC3C-4EB9-A239-C41322B19974 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=13DA738A-2538-4FBE-A6AC-9E17A5A66381 is used as Receiving Surface in calculations and is convex. +Surface=63BD75E1-8467-47EF-9A4C-ED2FFFA673F2 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=10 -..Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 -..Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC -..Surface=6138DF36-E729-49F2-B62F-4870FC39C64F -..Surface=B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=DD970E33-A623-4CE7-AAFB-8ED198B8CA1C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 +..Surface=753B8448-F2A4-4695-9B8E-A18B5952391F +..Surface=70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB +..Surface=9485D7B2-3887-412F-A921-FA3AB2023FDD +..Surface=DC0198E1-EF8A-4AE4-B856-023F4E25C845 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=71C66759-4E9F-48C2-976C-B60D6D1F99A5 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 is used as Receiving Surface in calculations and is convex. +Surface=E1634D44-C4A7-4008-8D97-D9E8FE6B4420 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=8 -..Surface=8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=3EB30793-160D-41D4-AD8A-36E1CFF208C6 -..Surface=DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8 -..Surface=869A399D-0DA3-4CDE-AD63-60BFDAC22071 -..Surface=6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F -..Surface=531634DB-2C61-44A3-80D9-94A5852E16AB +..Surface=1ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7 +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=AFEF7551-521F-4136-8EE4-A8BB569626FB +..Surface=CD1E2A22-2EB1-439E-A009-442290519521 +..Surface=7ABB3F53-807E-4B86-86E3-8B940AF12731 +..Surface=0FDCC26F-D760-468C-9C9E-EA174E9497A9 +..Surface=F4100D38-5272-4A9C-A8EB-E3383D7D80BC Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 WINDOW +....Surface=E1634D44-C4A7-4008-8D97-D9E8FE6B4420 WINDOW ================================== -Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 WINDOW is not used as Receiving Surface in calculations. +Surface=E1634D44-C4A7-4008-8D97-D9E8FE6B4420 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=910EC237-D19C-44D2-A0AF-53394D66BADB is used as Receiving Surface in calculations and is convex. +Surface=AF582559-958B-453E-AF2C-BA7D24FE67F3 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=3 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=D86FC62F-269C-45DE-84ED-D5A196E2095E -..Surface=DC8B7A69-B843-43F8-810C-AF6503E94ABF +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=DD481CAA-73DE-47FD-9F74-9B22CE720B44 +..Surface=603180BB-EE2E-44DF-8C24-564538C6645D Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=910EC237-D19C-44D2-A0AF-53394D66BADB WINDOW +....Surface=AF582559-958B-453E-AF2C-BA7D24FE67F3 WINDOW ================================== -Surface=910EC237-D19C-44D2-A0AF-53394D66BADB WINDOW is not used as Receiving Surface in calculations. +Surface=AF582559-958B-453E-AF2C-BA7D24FE67F3 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=DC8B7A69-B843-43F8-810C-AF6503E94ABF is used as Receiving Surface in calculations and is convex. +Surface=603180BB-EE2E-44DF-8C24-564538C6645D is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=2 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=910EC237-D19C-44D2-A0AF-53394D66BADB +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=AF582559-958B-453E-AF2C-BA7D24FE67F3 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=DC8B7A69-B843-43F8-810C-AF6503E94ABF WINDOW +....Surface=603180BB-EE2E-44DF-8C24-564538C6645D WINDOW ================================== -Surface=DC8B7A69-B843-43F8-810C-AF6503E94ABF WINDOW is not used as Receiving Surface in calculations. +Surface=603180BB-EE2E-44DF-8C24-564538C6645D WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=DD09FB31-D077-415A-8A35-D4B8E4105F74 is used as Receiving Surface in calculations and is convex. +Surface=B9F1215C-96E0-4FED-B11F-96DD0C091107 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=9 -..Surface=3476659A-7777-4217-879B-EC7411A9F8F4 -..Surface=1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF -..Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 +..Surface=237E30F1-CCC2-4275-AE30-F820AE689BDB +..Surface=B1D68F62-6DAA-49F7-88C2-B93E7CF18406 +..Surface=988D81D6-2B4E-45B8-9071-65CF25A15C59 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=DD09FB31-D077-415A-8A35-D4B8E4105F74 WINDOW +....Surface=B9F1215C-96E0-4FED-B11F-96DD0C091107 WINDOW ================================== -Surface=DD09FB31-D077-415A-8A35-D4B8E4105F74 WINDOW is not used as Receiving Surface in calculations. +Surface=B9F1215C-96E0-4FED-B11F-96DD0C091107 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=EE425A30-D8EE-49AE-A2B1-23E47576E76C is not used as Receiving Surface in calculations. +Surface=3C62B4C3-89AF-402C-9C82-75D0DAF853B5 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=3EB30793-160D-41D4-AD8A-36E1CFF208C6 is used as Receiving Surface in calculations and is convex. +Surface=AFEF7551-521F-4136-8EE4-A8BB569626FB is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=3 -..Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 -..Surface=DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8 -..Surface=869A399D-0DA3-4CDE-AD63-60BFDAC22071 +..Surface=E1634D44-C4A7-4008-8D97-D9E8FE6B4420 +..Surface=CD1E2A22-2EB1-439E-A009-442290519521 +..Surface=7ABB3F53-807E-4B86-86E3-8B940AF12731 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=3EB30793-160D-41D4-AD8A-36E1CFF208C6 WINDOW +....Surface=AFEF7551-521F-4136-8EE4-A8BB569626FB WINDOW ================================== -Surface=3EB30793-160D-41D4-AD8A-36E1CFF208C6 WINDOW is not used as Receiving Surface in calculations. +Surface=AFEF7551-521F-4136-8EE4-A8BB569626FB WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=61BE9590-EE2C-4510-A65E-9D9707059D72 is not used as Receiving Surface in calculations. +Surface=972ED882-D0C4-4DEE-AA68-EC83C3B05847 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=29AA4E15-EC14-45B9-BE01-3968B1F66BA3 is used as Receiving Surface in calculations and is non-convex. +Surface=0D04E8E8-EEB5-4799-AFBD-D04FFEACE9D6 is used as Receiving Surface in calculations and is non-convex. Number of general casting surfaces=10 -..Surface=1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF -..Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=D86FC62F-269C-45DE-84ED-D5A196E2095E -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 +..Surface=B1D68F62-6DAA-49F7-88C2-B93E7CF18406 +..Surface=988D81D6-2B4E-45B8-9071-65CF25A15C59 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=DD481CAA-73DE-47FD-9F74-9B22CE720B44 +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=74CA1532-4928-42E1-AE6C-111556837B7E is used as Receiving Surface in calculations and is convex. +Surface=F8C808E6-1058-4E27-BFD8-82088AE3596A is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=4 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=C0C8C17C-FC22-4B92-A946-702E972AA329 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=8912DA34-87A5-4126-A1F1-1552F5AAE7E7 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=74CA1532-4928-42E1-AE6C-111556837B7E WINDOW +....Surface=F8C808E6-1058-4E27-BFD8-82088AE3596A WINDOW ================================== -Surface=74CA1532-4928-42E1-AE6C-111556837B7E WINDOW is not used as Receiving Surface in calculations. +Surface=F8C808E6-1058-4E27-BFD8-82088AE3596A WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=2BA28A3D-41A2-4142-8333-FF3F43829C37 is not used as Receiving Surface in calculations. +Surface=34A34EEE-7FA0-4EA3-86A5-454DD1CCBCEA is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 is used as Receiving Surface in calculations and is convex. +Surface=C93C41EB-4593-463D-9913-DD0AFE16ECE0 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=9 -..Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 -..Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 -..Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 +..Surface=04E70FD4-4E5A-4F9E-99F0-91053F07191E +..Surface=753B8448-F2A4-4695-9B8E-A18B5952391F +..Surface=70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 WINDOW +....Surface=C93C41EB-4593-463D-9913-DD0AFE16ECE0 WINDOW ================================== -Surface=B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 WINDOW is not used as Receiving Surface in calculations. +Surface=C93C41EB-4593-463D-9913-DD0AFE16ECE0 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=A4BBE0E0-AC85-41F6-BAE0-458ACD59E93C is not used as Receiving Surface in calculations. +Surface=BB4039F6-7FAD-4EFA-A6A6-196288BD39B2 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=2389DAE8-0F83-4E21-8250-4E7DC4FE3025 is not used as Receiving Surface in calculations. +Surface=7E806F25-F937-4252-9D48-CF9A67048D43 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=D3620589-F605-42A2-8A8A-5A76A2147B39 is used as Receiving Surface in calculations and is convex. +Surface=4A48DD1C-BF95-4351-ACCA-318F847CBB15 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=10 -..Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 -..Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=C0C8C17C-FC22-4B92-A946-702E972AA329 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 +..Surface=753B8448-F2A4-4695-9B8E-A18B5952391F +..Surface=70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8 is used as Receiving Surface in calculations and is convex. +Surface=CD1E2A22-2EB1-439E-A009-442290519521 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=3 -..Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 -..Surface=3EB30793-160D-41D4-AD8A-36E1CFF208C6 -..Surface=531634DB-2C61-44A3-80D9-94A5852E16AB +..Surface=E1634D44-C4A7-4008-8D97-D9E8FE6B4420 +..Surface=AFEF7551-521F-4136-8EE4-A8BB569626FB +..Surface=F4100D38-5272-4A9C-A8EB-E3383D7D80BC Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8 WINDOW +....Surface=CD1E2A22-2EB1-439E-A009-442290519521 WINDOW ================================== -Surface=DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8 WINDOW is not used as Receiving Surface in calculations. +Surface=CD1E2A22-2EB1-439E-A009-442290519521 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=EFAC6C0B-D77A-473F-BC48-BDD80EC20B23 is not used as Receiving Surface in calculations. +Surface=66E4AAC0-93D3-42F7-B771-FC7DABE24F05 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 is used as Receiving Surface in calculations and is convex. +Surface=885ED1BD-2100-4737-9188-C7067F7AF8B7 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=10 -..Surface=3476659A-7777-4217-879B-EC7411A9F8F4 -..Surface=1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF -..Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=6ED55F0D-F5CD-49C2-8F09-54D704A502FA +..Surface=237E30F1-CCC2-4275-AE30-F820AE689BDB +..Surface=B1D68F62-6DAA-49F7-88C2-B93E7CF18406 +..Surface=988D81D6-2B4E-45B8-9071-65CF25A15C59 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=5D0BAE4C-B3EB-48A9-968F-D72760E72ED9 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 WINDOW +....Surface=885ED1BD-2100-4737-9188-C7067F7AF8B7 WINDOW ================================== -Surface=E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 WINDOW is not used as Receiving Surface in calculations. +Surface=885ED1BD-2100-4737-9188-C7067F7AF8B7 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=DF3E69B8-FC69-416B-9D2C-1D745DF31EFD is not used as Receiving Surface in calculations. +Surface=CF93E454-A5D6-4068-A469-8BAD34F58312 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=BDEE1547-D4C7-40C6-9996-7530EF5A1A75 is not used as Receiving Surface in calculations. +Surface=0A1BABD4-7600-4E7B-92E4-F079C5590FBD is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=A4840188-8DF8-4EAA-B5F2-EA27AD8DA333 is used as Receiving Surface in calculations and is convex. +Surface=1E711381-C0E2-414C-BA3B-BC973C771588 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=10 -..Surface=1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF -..Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=BEF3D9A2-B25F-44E4-B611-E021B6179865 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 +..Surface=B1D68F62-6DAA-49F7-88C2-B93E7CF18406 +..Surface=988D81D6-2B4E-45B8-9071-65CF25A15C59 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=78985B62-1778-40BF-B4F1-3DE39FD7EF10 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=869A399D-0DA3-4CDE-AD63-60BFDAC22071 is used as Receiving Surface in calculations and is convex. +Surface=7ABB3F53-807E-4B86-86E3-8B940AF12731 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=4 -..Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 -..Surface=3EB30793-160D-41D4-AD8A-36E1CFF208C6 -..Surface=6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F -..Surface=531634DB-2C61-44A3-80D9-94A5852E16AB +..Surface=E1634D44-C4A7-4008-8D97-D9E8FE6B4420 +..Surface=AFEF7551-521F-4136-8EE4-A8BB569626FB +..Surface=0FDCC26F-D760-468C-9C9E-EA174E9497A9 +..Surface=F4100D38-5272-4A9C-A8EB-E3383D7D80BC Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=869A399D-0DA3-4CDE-AD63-60BFDAC22071 WINDOW +....Surface=7ABB3F53-807E-4B86-86E3-8B940AF12731 WINDOW ================================== -Surface=869A399D-0DA3-4CDE-AD63-60BFDAC22071 WINDOW is not used as Receiving Surface in calculations. +Surface=7ABB3F53-807E-4B86-86E3-8B940AF12731 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=D9827025-1B3E-4617-9371-9B0E29A8780B is not used as Receiving Surface in calculations. +Surface=4F5A8482-3CE8-4E34-B831-9664F23EC464 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=6ED55F0D-F5CD-49C2-8F09-54D704A502FA is used as Receiving Surface in calculations and is convex. +Surface=5D0BAE4C-B3EB-48A9-968F-D72760E72ED9 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=10 -..Surface=3476659A-7777-4217-879B-EC7411A9F8F4 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 -..Surface=6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 +..Surface=237E30F1-CCC2-4275-AE30-F820AE689BDB +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=885ED1BD-2100-4737-9188-C7067F7AF8B7 +..Surface=BA01EFBE-4A81-414D-BD05-2F21B9B15F11 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=6ED55F0D-F5CD-49C2-8F09-54D704A502FA WINDOW +....Surface=5D0BAE4C-B3EB-48A9-968F-D72760E72ED9 WINDOW ================================== -Surface=6ED55F0D-F5CD-49C2-8F09-54D704A502FA WINDOW is not used as Receiving Surface in calculations. +Surface=5D0BAE4C-B3EB-48A9-968F-D72760E72ED9 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=DBABEAFE-8C2D-40EF-A157-12F9BA741B94 is used as Receiving Surface in calculations and is convex. +Surface=F1395637-7DDA-44AF-834D-48DFDF24DB83 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=8 -..Surface=8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 -..Surface=3476659A-7777-4217-879B-EC7411A9F8F4 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 +..Surface=1ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7 +..Surface=237E30F1-CCC2-4275-AE30-F820AE689BDB +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=DBABEAFE-8C2D-40EF-A157-12F9BA741B94 WINDOW +....Surface=F1395637-7DDA-44AF-834D-48DFDF24DB83 WINDOW ================================== -Surface=DBABEAFE-8C2D-40EF-A157-12F9BA741B94 WINDOW is not used as Receiving Surface in calculations. +Surface=F1395637-7DDA-44AF-834D-48DFDF24DB83 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 is used as Receiving Surface in calculations and is convex. +Surface=8912DA34-87A5-4126-A1F1-1552F5AAE7E7 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=14 -..Surface=E9A776D7-C08A-4903-BDDE-33A1B75C006F -..Surface=A0CC674E-7FF5-4E87-8D8B-D2879920F518 -..Surface=6894AE2C-4DE8-4004-B743-24810745043C -..Surface=8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 -..Surface=3476659A-7777-4217-879B-EC7411A9F8F4 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 +..Surface=88D081F6-1235-44A7-A462-7D1CE4B365BF +..Surface=69F96927-5BF0-4A6D-828E-BFC11FE57194 +..Surface=BD731930-1F08-4394-84A6-108312B0499E +..Surface=1ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7 +..Surface=237E30F1-CCC2-4275-AE30-F820AE689BDB +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 WINDOW +....Surface=8912DA34-87A5-4126-A1F1-1552F5AAE7E7 WINDOW ================================== -Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 WINDOW is not used as Receiving Surface in calculations. +Surface=8912DA34-87A5-4126-A1F1-1552F5AAE7E7 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=DB7435CB-E409-4E62-8B46-061B84825686 is not used as Receiving Surface in calculations. +Surface=B3610B1F-C7EC-48CB-8864-ED2314340442 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=1642787D-CDB7-40B1-96DE-A28B6B1A6568 is used as Receiving Surface in calculations and is convex. +Surface=7B45E5A9-A529-4471-B0F6-4C2B2D6A679A is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=10 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=C0C8C17C-FC22-4B92-A946-702E972AA329 -..Surface=BEF3D9A2-B25F-44E4-B611-E021B6179865 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 +..Surface=78985B62-1778-40BF-B4F1-3DE39FD7EF10 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F is used as Receiving Surface in calculations and is convex. +Surface=0FDCC26F-D760-468C-9C9E-EA174E9497A9 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=2 -..Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 -..Surface=869A399D-0DA3-4CDE-AD63-60BFDAC22071 +..Surface=E1634D44-C4A7-4008-8D97-D9E8FE6B4420 +..Surface=7ABB3F53-807E-4B86-86E3-8B940AF12731 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F WINDOW +....Surface=0FDCC26F-D760-468C-9C9E-EA174E9497A9 WINDOW ================================== -Surface=6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F WINDOW is not used as Receiving Surface in calculations. +Surface=0FDCC26F-D760-468C-9C9E-EA174E9497A9 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=A4693CFB-6E07-41DD-A6DF-8D7D0F6BA3DF is not used as Receiving Surface in calculations. +Surface=F9564E58-DFBF-4F6A-B3BE-61A1C339983F is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 is used as Receiving Surface in calculations and is convex. +Surface=BA01EFBE-4A81-414D-BD05-2F21B9B15F11 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=10 -..Surface=3476659A-7777-4217-879B-EC7411A9F8F4 -..Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 -..Surface=6ED55F0D-F5CD-49C2-8F09-54D704A502FA +..Surface=237E30F1-CCC2-4275-AE30-F820AE689BDB +..Surface=988D81D6-2B4E-45B8-9071-65CF25A15C59 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B +..Surface=5D0BAE4C-B3EB-48A9-968F-D72760E72ED9 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 WINDOW +....Surface=BA01EFBE-4A81-414D-BD05-2F21B9B15F11 WINDOW ================================== -Surface=6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 WINDOW is not used as Receiving Surface in calculations. +Surface=BA01EFBE-4A81-414D-BD05-2F21B9B15F11 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=B5A2B9C9-8D44-4989-BE67-67A10674D72D is not used as Receiving Surface in calculations. +Surface=78AB1B6A-55A4-486A-ADB2-E0017E4AADE9 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=667683E9-4698-4804-B300-2FE5E1E6E939 is not used as Receiving Surface in calculations. +Surface=BB441A43-43BF-45C4-8B3D-A695A13BAFD4 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=DB7DB81A-75B9-413D-B49C-B589478D35E6 is used as Receiving Surface in calculations and is convex. +Surface=4B22A526-5AF0-4B74-ABB1-6D3AED3DA38A is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=11 -..Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=C0C8C17C-FC22-4B92-A946-702E972AA329 -..Surface=BEF3D9A2-B25F-44E4-B611-E021B6179865 +..Surface=988D81D6-2B4E-45B8-9071-65CF25A15C59 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 +..Surface=78985B62-1778-40BF-B4F1-3DE39FD7EF10 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=531634DB-2C61-44A3-80D9-94A5852E16AB is used as Receiving Surface in calculations and is convex. +Surface=F4100D38-5272-4A9C-A8EB-E3383D7D80BC is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=3 -..Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 -..Surface=DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8 -..Surface=869A399D-0DA3-4CDE-AD63-60BFDAC22071 +..Surface=E1634D44-C4A7-4008-8D97-D9E8FE6B4420 +..Surface=CD1E2A22-2EB1-439E-A009-442290519521 +..Surface=7ABB3F53-807E-4B86-86E3-8B940AF12731 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=531634DB-2C61-44A3-80D9-94A5852E16AB WINDOW +....Surface=F4100D38-5272-4A9C-A8EB-E3383D7D80BC WINDOW ================================== -Surface=531634DB-2C61-44A3-80D9-94A5852E16AB WINDOW is not used as Receiving Surface in calculations. +Surface=F4100D38-5272-4A9C-A8EB-E3383D7D80BC WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=C851CA53-49E9-4A43-9F95-215079B2D5D7 is not used as Receiving Surface in calculations. +Surface=972E98C9-3EF9-4FEF-873B-2517F8B5ED05 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13 is used as Receiving Surface in calculations and is convex. +Surface=DC48DBCE-EA32-40CB-9A71-1A7B6519CD98 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=9 -..Surface=3476659A-7777-4217-879B-EC7411A9F8F4 -..Surface=1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF -..Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 +..Surface=237E30F1-CCC2-4275-AE30-F820AE689BDB +..Surface=B1D68F62-6DAA-49F7-88C2-B93E7CF18406 +..Surface=988D81D6-2B4E-45B8-9071-65CF25A15C59 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13 WINDOW +....Surface=DC48DBCE-EA32-40CB-9A71-1A7B6519CD98 WINDOW ================================== -Surface=5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13 WINDOW is not used as Receiving Surface in calculations. +Surface=DC48DBCE-EA32-40CB-9A71-1A7B6519CD98 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=1F386A70-23F0-46A2-AEB6-322BED09B91F is not used as Receiving Surface in calculations. +Surface=87E061CC-492F-4F1F-B4EA-C9F07B539136 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=A6172439-540E-4D31-A8BC-32DD402924E1 is not used as Receiving Surface in calculations. +Surface=16263E9D-16E5-465F-84AB-F3F4DD5620F5 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=4A849183-D5E9-40D6-8A77-38B11B46433E is used as Receiving Surface in calculations and is convex. +Surface=8AB59231-87B7-440A-A508-CD8AB72FFB47 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=9 -..Surface=1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF -..Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 -..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C -..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 -..Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC -..Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 -..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 -..Surface=CDB601E5-0866-416B-89EB-D048E5859786 -..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 +..Surface=B1D68F62-6DAA-49F7-88C2-B93E7CF18406 +..Surface=988D81D6-2B4E-45B8-9071-65CF25A15C59 +..Surface=305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 +..Surface=2BF4D215-25DB-4CDA-B12B-672631606F4C +..Surface=92866768-61AD-482D-8464-11A50625DE49 +..Surface=0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 +..Surface=8A46261E-00F3-4288-8FCC-0223AE4B2A7C +..Surface=79F4E5CA-4739-4A69-9955-726C8E859B53 +..Surface=207E14B7-DC3A-414C-B35E-6C546BFBB70B Number of back surfaces=0 Number of receiving sub surfaces=0 diff --git a/out_files/Montreal_tbl.csv b/out_files/Montreal_tbl.csv index 16e56173..3c614bd1 100644 --- a/out_files/Montreal_tbl.csv +++ b/out_files/Montreal_tbl.csv @@ -1,4 +1,4 @@ -Program Version:,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22 +Program Version:,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.01.02 18:16 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.28 20:22 +,Program Version and Build,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.01.02 18:16 ,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 -,E9A776D7-C08A-4903-BDDE-33A1B75C006F,1981_1990_6,0.40,0.644,0.713,57.41,47.08,90.32,90.00,E -,06E83EFC-71D1-45FE-85EA-E7EE9A7664B1,1981_1990_6,0.40,0.644,0.713,57.41,47.08,269.70,90.00,W -,49A6A0D1-21FA-4174-A2E8-6E59F41BE8B9,1981_1990_6,0.40,0.639,0.713,88.46,88.46,0.14,180.00, -,6714F8CE-FBE1-41FA-8146-152344E45E89,1981_1990_6,0.40,0.649,0.713,88.46,88.46,0.14,0.00, -,A0CC674E-7FF5-4E87-8D8B-D2879920F518,1981_1990_6,0.40,0.644,0.713,51.38,42.13,90.32,90.00,E -,6894AE2C-4DE8-4004-B743-24810745043C,1981_1990_6,0.40,0.644,0.713,9.77,8.01,89.91,90.00,E -,8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1,1981_1990_6,0.40,0.644,0.713,120.90,99.13,0.06,90.00,N -,3476659A-7777-4217-879B-EC7411A9F8F4,1981_1990_6,0.40,0.644,0.713,4.80,3.93,359.13,90.00,N -,A987C29F-99C1-411A-9CC3-0AFBB35D9AB2,1981_1990_6,0.40,0.644,0.713,60.89,49.93,269.70,90.00,W -,D6F1DC5C-00EA-4F85-AAA6-4D2C54BFA8A8,1981_1990_6,0.40,0.639,0.713,94.56,94.56,270.32,180.00, -,A804AC39-E991-4FA7-8EBD-6E9DE27C6449,1981_1990_6,0.40,0.649,0.713,94.56,94.56,89.91,0.00, -,D29ED729-A377-4D42-8E37-86D29FAA692B,1981_1990_6,0.40,0.644,0.713,269.34,220.85,270.37,90.00,W -,1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF,1981_1990_6,0.40,0.644,0.713,42.68,35.00,0.73,90.00,N -,9027AB96-D388-4204-9515-8638E09E0D23,1981_1990_6,0.40,0.644,0.713,50.71,41.58,269.95,90.00,W -,D80E753D-3A26-4EDA-90B8-B445FDD923B1,1981_1990_6,0.40,0.644,0.713,33.05,27.10,0.68,90.00,N -,D2676432-8B98-4881-B152-C2993D54E04B,1981_1990_6,0.40,0.644,0.713,330.80,271.25,270.63,90.00,W -,CABC4BC7-A75C-4989-AEDA-0753936A5DEE,1981_1990_6,0.40,0.644,0.713,8.84,7.25,271.07,90.00,W -,7C52C57C-7025-415D-A9B8-F5AAF8F58535,1981_1990_6,0.40,0.644,0.713,37.21,30.51,180.88,90.00,S -,9DE3270A-551D-407E-A8B2-0639AE103505,1981_1990_6,0.40,0.644,0.713,48.45,39.73,270.81,90.00,W -,197A0D24-9F0A-416B-AB79-18597F66C1AC,1981_1990_6,0.40,0.644,0.713,50.23,41.19,180.83,90.00,S -,FA41C2ED-457A-4E6B-9607-BDA10B64A2EE,1981_1990_6,0.40,0.644,0.713,264.28,216.70,270.81,90.00,W -,6138DF36-E729-49F2-B62F-4870FC39C64F,1981_1990_6,0.40,0.644,0.713,547.94,449.30,180.80,90.00,S -,B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624,1981_1990_6,0.40,0.644,0.713,8.10,6.64,181.90,90.00,S -,7B0DA88C-0B47-4D1A-B84E-AEB70E93020C,1981_1990_6,0.40,0.644,0.713,16.36,13.41,90.30,90.00,E -,DD970E33-A623-4CE7-AAFB-8ED198B8CA1C,1981_1990_6,0.40,0.644,0.713,71.03,58.24,180.36,90.00,S -,02CDC36C-704D-47B9-AFEC-41F43222D0F4,1981_1990_6,0.40,0.644,0.713,332.92,272.99,90.35,90.00,E -,2142EBB0-161E-43EE-B6DE-A5DAD97612CC,1981_1990_6,0.40,0.644,0.713,438.53,359.59,0.36,90.00,N -,BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2,1981_1990_6,0.40,0.644,0.713,282.91,231.98,90.36,90.00,E -,1DA28FD9-438E-44B3-8AB1-D14CD1DCD738,1981_1990_6,0.40,0.644,0.713,432.84,354.92,180.36,90.00,S -,B227DDA2-BC10-42A6-BFEB-B934B789F695,1981_1990_6,0.40,0.644,0.713,344.94,282.84,90.36,90.00,E -,D86FC62F-269C-45DE-84ED-D5A196E2095E,1981_1990_6,0.40,0.644,0.713,629.18,515.91,0.35,90.00,N -,95977B63-DA57-40D5-A214-4D2FABCA5347,1981_1990_6,0.40,0.639,0.713,2308.92,2308.92,0.36,180.00, -,D6A7ED84-8E6C-4CB5-835C-1ADA1608F8DE,1981_1990_6,0.40,0.649,0.713,2308.92,2308.92,0.36,0.00, -,CDB601E5-0866-416B-89EB-D048E5859786,1981_1990_6,0.40,0.644,0.713,5.62,4.61,358.71,90.00,N -,C0C8C17C-FC22-4B92-A946-702E972AA329,1981_1990_6,0.40,0.644,0.713,4.45,3.65,90.31,90.00,E -,D280607F-5351-4A50-81CD-D03DF7A28C0D,1981_1990_6,0.40,0.644,0.713,65.43,53.65,269.70,90.00,W -,BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113,1981_1990_6,0.40,0.644,0.713,143.18,117.41,179.68,90.00,S -,BEF1B1AB-759C-483F-939C-BFCA5B2118EF,1981_1990_6,0.40,0.644,0.713,59.97,49.18,89.74,90.00,E -,8C214F58-37B7-4E41-AFEB-B048BCA834AE,1981_1990_6,0.40,0.639,0.713,92.64,92.64,359.68,180.00, -,37756D72-403D-46F2-9CDE-4E412064828F,1981_1990_6,0.40,0.649,0.713,92.64,92.64,358.71,0.00, -,BEF3D9A2-B25F-44E4-B611-E021B6179865,1981_1990_6,0.40,0.644,0.713,67.25,55.14,90.03,90.00,E -,EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8,1981_1990_6,0.40,0.644,0.713,144.70,118.65,359.95,90.00,N -,955BDC8B-FADC-4DC9-9146-015E44F6D0F9,1981_1990_6,0.40,0.644,0.713,66.78,54.75,270.04,90.00,W -,74146306-5CC3-4DF9-B2DD-4E2FE410DA48,1981_1990_6,0.40,0.644,0.713,144.71,118.66,180.13,90.00,S -,E562FE09-B0C0-4242-8049-66A78D056BB6,1981_1990_6,0.40,0.639,0.713,96.97,96.97,0.13,180.00, -,13DA738A-2538-4FBE-A6AC-9E17A5A66381,1981_1990_6,0.40,0.649,0.713,96.97,96.97,359.95,0.00, -,BF81A09D-7EB2-443C-9DBE-7CCF41E9E733,1981_1990_6,0.40,0.644,0.713,4.42,3.62,90.22,90.00,E -,910EC237-D19C-44D2-A0AF-53394D66BADB,1981_1990_6,0.40,0.644,0.713,118.69,97.33,359.45,90.00,N -,DC8B7A69-B843-43F8-810C-AF6503E94ABF,1981_1990_6,0.40,0.644,0.713,5.25,4.31,0.34,90.00,N -,DD09FB31-D077-415A-8A35-D4B8E4105F74,1981_1990_6,0.40,0.644,0.713,62.29,51.08,270.10,90.00,W -,3EB30793-160D-41D4-AD8A-36E1CFF208C6,1981_1990_6,0.40,0.644,0.713,59.29,48.62,89.40,90.00,E -,61BE9590-EE2C-4510-A65E-9D9707059D72,1981_1990_6,0.40,0.639,0.713,96.59,96.59,269.40,180.00, -,29AA4E15-EC14-45B9-BE01-3968B1F66BA3,1981_1990_6,0.40,0.649,0.713,96.59,96.59,90.22,0.00, -,74CA1532-4928-42E1-AE6C-111556837B7E,1981_1990_6,0.40,0.644,0.713,57.41,47.08,90.32,90.00,E -,B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55,1981_1990_6,0.40,0.644,0.713,57.41,47.08,269.70,90.00,W -,2389DAE8-0F83-4E21-8250-4E7DC4FE3025,1981_1990_6,0.40,0.639,0.713,88.02,88.02,0.14,180.00, -,D3620589-F605-42A2-8A8A-5A76A2147B39,1981_1990_6,0.40,0.649,0.713,88.02,88.02,0.14,0.00, -,DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E -,E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W -,BDEE1547-D4C7-40C6-9996-7530EF5A1A75,1981_1990_6,0.40,0.639,0.713,89.11,89.11,0.14,180.00, -,A4840188-8DF8-4EAA-B5F2-EA27AD8DA333,1981_1990_6,0.40,0.649,0.713,89.11,89.11,0.14,0.00, -,869A399D-0DA3-4CDE-AD63-60BFDAC22071,1981_1990_6,0.40,0.644,0.713,62.03,50.86,89.40,90.00,E -,6ED55F0D-F5CD-49C2-8F09-54D704A502FA,1981_1990_6,0.40,0.644,0.713,62.29,51.08,270.10,90.00,W -,DBABEAFE-8C2D-40EF-A157-12F9BA741B94,1981_1990_6,0.40,0.644,0.713,123.20,101.02,180.04,90.00,S -,690A4F44-19B1-4DE4-9442-7B0128C1D064,1981_1990_6,0.40,0.644,0.713,4.34,3.55,179.52,90.00,S -,DB7435CB-E409-4E62-8B46-061B84825686,1981_1990_6,0.40,0.639,0.713,97.60,97.60,359.52,180.00, -,1642787D-CDB7-40B1-96DE-A28B6B1A6568,1981_1990_6,0.40,0.649,0.713,97.60,97.60,0.14,0.00, -,6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E -,6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W -,667683E9-4698-4804-B300-2FE5E1E6E939,1981_1990_6,0.40,0.639,0.713,89.61,89.61,0.14,180.00, -,DB7DB81A-75B9-413D-B49C-B589478D35E6,1981_1990_6,0.40,0.649,0.713,89.61,89.61,0.14,0.00, -,531634DB-2C61-44A3-80D9-94A5852E16AB,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E -,5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W -,A6172439-540E-4D31-A8BC-32DD402924E1,1981_1990_6,0.40,0.639,0.713,88.61,88.61,0.14,180.00, -,4A849183-D5E9-40D6-8A77-38B11B46433E,1981_1990_6,0.40,0.649,0.713,88.61,88.61,0.14,0.00, +,88D081F6-1235-44A7-A462-7D1CE4B365BF,1981_1990_6,0.40,0.644,0.713,57.41,47.08,90.32,90.00,E +,04E70FD4-4E5A-4F9E-99F0-91053F07191E,1981_1990_6,0.40,0.644,0.713,57.41,47.08,269.70,90.00,W +,F865DFC4-F54F-4140-92DC-0D85027B6556,1981_1990_6,0.40,0.639,0.713,88.46,88.46,0.14,180.00, +,66443928-1B2B-4D46-A3A3-5FB64B451447,1981_1990_6,0.40,0.649,0.713,88.46,88.46,0.14,0.00, +,69F96927-5BF0-4A6D-828E-BFC11FE57194,1981_1990_6,0.40,0.644,0.713,51.38,42.13,90.32,90.00,E +,BD731930-1F08-4394-84A6-108312B0499E,1981_1990_6,0.40,0.644,0.713,9.77,8.01,89.91,90.00,E +,1ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7,1981_1990_6,0.40,0.644,0.713,120.90,99.13,0.06,90.00,N +,237E30F1-CCC2-4275-AE30-F820AE689BDB,1981_1990_6,0.40,0.644,0.713,4.80,3.93,359.13,90.00,N +,6BD00B18-05ED-4D63-9E3B-27DB4F7D91FB,1981_1990_6,0.40,0.644,0.713,60.89,49.93,269.70,90.00,W +,74C42012-9742-41A2-B35F-CC626FA4017D,1981_1990_6,0.40,0.639,0.713,94.56,94.56,270.32,180.00, +,52EBFD0A-5C2E-431E-B4D4-FFEFE9D94EDC,1981_1990_6,0.40,0.649,0.713,94.56,94.56,89.91,0.00, +,94ED4BC5-AC57-4FAD-8621-A249C5C04A9F,1981_1990_6,0.40,0.644,0.713,269.34,220.85,270.37,90.00,W +,B1D68F62-6DAA-49F7-88C2-B93E7CF18406,1981_1990_6,0.40,0.644,0.713,42.68,35.00,0.73,90.00,N +,E2D1FA98-7E9E-4610-A6AB-8DBE69551FF5,1981_1990_6,0.40,0.644,0.713,50.71,41.58,269.95,90.00,W +,988D81D6-2B4E-45B8-9071-65CF25A15C59,1981_1990_6,0.40,0.644,0.713,33.05,27.10,0.68,90.00,N +,DA12B56F-C238-405C-8837-5F503FEA4F6F,1981_1990_6,0.40,0.644,0.713,330.80,271.25,270.63,90.00,W +,0857330D-B5CD-4746-A5E9-251FAD1EF835,1981_1990_6,0.40,0.644,0.713,8.84,7.25,271.07,90.00,W +,753B8448-F2A4-4695-9B8E-A18B5952391F,1981_1990_6,0.40,0.644,0.713,37.21,30.51,180.88,90.00,S +,D5D765F2-1092-48FA-A7B7-B154EE277681,1981_1990_6,0.40,0.644,0.713,48.45,39.73,270.81,90.00,W +,70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB,1981_1990_6,0.40,0.644,0.713,50.23,41.19,180.83,90.00,S +,41045D45-CD0C-4E6A-B2E0-E81DC2BCCD38,1981_1990_6,0.40,0.644,0.713,264.28,216.70,270.81,90.00,W +,9485D7B2-3887-412F-A921-FA3AB2023FDD,1981_1990_6,0.40,0.644,0.713,547.94,449.30,180.80,90.00,S +,DC0198E1-EF8A-4AE4-B856-023F4E25C845,1981_1990_6,0.40,0.644,0.713,8.10,6.64,181.90,90.00,S +,305F15FB-ACEC-4E3C-A6A8-B02C34CC8918,1981_1990_6,0.40,0.644,0.713,16.36,13.41,90.30,90.00,E +,71C66759-4E9F-48C2-976C-B60D6D1F99A5,1981_1990_6,0.40,0.644,0.713,71.03,58.24,180.36,90.00,S +,2BF4D215-25DB-4CDA-B12B-672631606F4C,1981_1990_6,0.40,0.644,0.713,332.92,272.99,90.35,90.00,E +,92866768-61AD-482D-8464-11A50625DE49,1981_1990_6,0.40,0.644,0.713,438.53,359.59,0.36,90.00,N +,0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686,1981_1990_6,0.40,0.644,0.713,282.91,231.98,90.36,90.00,E +,80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05,1981_1990_6,0.40,0.644,0.713,432.84,354.92,180.36,90.00,S +,8A46261E-00F3-4288-8FCC-0223AE4B2A7C,1981_1990_6,0.40,0.644,0.713,344.94,282.84,90.36,90.00,E +,DD481CAA-73DE-47FD-9F74-9B22CE720B44,1981_1990_6,0.40,0.644,0.713,629.18,515.91,0.35,90.00,N +,CE148459-71BF-43F3-AE25-19FE02B0FD00,1981_1990_6,0.40,0.639,0.713,2308.92,2308.92,0.36,180.00, +,F535E8FA-0079-4D18-84FD-C9C325421B0F,1981_1990_6,0.40,0.649,0.713,2308.92,2308.92,0.36,0.00, +,79F4E5CA-4739-4A69-9955-726C8E859B53,1981_1990_6,0.40,0.644,0.713,5.62,4.61,358.71,90.00,N +,AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5,1981_1990_6,0.40,0.644,0.713,4.45,3.65,90.31,90.00,E +,F21D70FC-7C69-49C4-A53E-2D940858A186,1981_1990_6,0.40,0.644,0.713,65.43,53.65,269.70,90.00,W +,AC2B4E2F-D856-4604-9B60-33146CC9C4ED,1981_1990_6,0.40,0.644,0.713,143.18,117.41,179.68,90.00,S +,7D0E5F1D-CD74-4723-B33D-D86D6E019B1D,1981_1990_6,0.40,0.644,0.713,59.97,49.18,89.74,90.00,E +,3880CEA6-B84D-46D9-860D-F6E0613132C8,1981_1990_6,0.40,0.639,0.713,92.64,92.64,359.68,180.00, +,59867B21-8DEA-45D3-882B-467CABAE3A3D,1981_1990_6,0.40,0.649,0.713,92.64,92.64,358.71,0.00, +,78985B62-1778-40BF-B4F1-3DE39FD7EF10,1981_1990_6,0.40,0.644,0.713,67.25,55.14,90.03,90.00,E +,207E14B7-DC3A-414C-B35E-6C546BFBB70B,1981_1990_6,0.40,0.644,0.713,144.70,118.65,359.95,90.00,N +,A97F4CA2-37A6-4D25-80B4-85A86EB2282C,1981_1990_6,0.40,0.644,0.713,66.78,54.75,270.04,90.00,W +,B518AF5B-943A-4354-8536-323FE5EDDD66,1981_1990_6,0.40,0.644,0.713,144.71,118.66,180.13,90.00,S +,FD0A6DC8-DC3C-4EB9-A239-C41322B19974,1981_1990_6,0.40,0.639,0.713,96.97,96.97,0.13,180.00, +,63BD75E1-8467-47EF-9A4C-ED2FFFA673F2,1981_1990_6,0.40,0.649,0.713,96.97,96.97,359.95,0.00, +,E1634D44-C4A7-4008-8D97-D9E8FE6B4420,1981_1990_6,0.40,0.644,0.713,4.42,3.62,90.22,90.00,E +,AF582559-958B-453E-AF2C-BA7D24FE67F3,1981_1990_6,0.40,0.644,0.713,118.69,97.33,359.45,90.00,N +,603180BB-EE2E-44DF-8C24-564538C6645D,1981_1990_6,0.40,0.644,0.713,5.25,4.31,0.34,90.00,N +,B9F1215C-96E0-4FED-B11F-96DD0C091107,1981_1990_6,0.40,0.644,0.713,62.29,51.08,270.10,90.00,W +,AFEF7551-521F-4136-8EE4-A8BB569626FB,1981_1990_6,0.40,0.644,0.713,59.29,48.62,89.40,90.00,E +,972ED882-D0C4-4DEE-AA68-EC83C3B05847,1981_1990_6,0.40,0.639,0.713,96.59,96.59,269.40,180.00, +,0D04E8E8-EEB5-4799-AFBD-D04FFEACE9D6,1981_1990_6,0.40,0.649,0.713,96.59,96.59,90.22,0.00, +,F8C808E6-1058-4E27-BFD8-82088AE3596A,1981_1990_6,0.40,0.644,0.713,57.41,47.08,90.32,90.00,E +,C93C41EB-4593-463D-9913-DD0AFE16ECE0,1981_1990_6,0.40,0.644,0.713,57.41,47.08,269.70,90.00,W +,7E806F25-F937-4252-9D48-CF9A67048D43,1981_1990_6,0.40,0.639,0.713,88.02,88.02,0.14,180.00, +,4A48DD1C-BF95-4351-ACCA-318F847CBB15,1981_1990_6,0.40,0.649,0.713,88.02,88.02,0.14,0.00, +,CD1E2A22-2EB1-439E-A009-442290519521,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E +,885ED1BD-2100-4737-9188-C7067F7AF8B7,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W +,0A1BABD4-7600-4E7B-92E4-F079C5590FBD,1981_1990_6,0.40,0.639,0.713,89.11,89.11,0.14,180.00, +,1E711381-C0E2-414C-BA3B-BC973C771588,1981_1990_6,0.40,0.649,0.713,89.11,89.11,0.14,0.00, +,7ABB3F53-807E-4B86-86E3-8B940AF12731,1981_1990_6,0.40,0.644,0.713,62.03,50.86,89.40,90.00,E +,5D0BAE4C-B3EB-48A9-968F-D72760E72ED9,1981_1990_6,0.40,0.644,0.713,62.29,51.08,270.10,90.00,W +,F1395637-7DDA-44AF-834D-48DFDF24DB83,1981_1990_6,0.40,0.644,0.713,123.20,101.02,180.04,90.00,S +,8912DA34-87A5-4126-A1F1-1552F5AAE7E7,1981_1990_6,0.40,0.644,0.713,4.34,3.55,179.52,90.00,S +,B3610B1F-C7EC-48CB-8864-ED2314340442,1981_1990_6,0.40,0.639,0.713,97.60,97.60,359.52,180.00, +,7B45E5A9-A529-4471-B0F6-4C2B2D6A679A,1981_1990_6,0.40,0.649,0.713,97.60,97.60,0.14,0.00, +,0FDCC26F-D760-468C-9C9E-EA174E9497A9,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E +,BA01EFBE-4A81-414D-BD05-2F21B9B15F11,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W +,BB441A43-43BF-45C4-8B3D-A695A13BAFD4,1981_1990_6,0.40,0.639,0.713,89.61,89.61,0.14,180.00, +,4B22A526-5AF0-4B74-ABB1-6D3AED3DA38A,1981_1990_6,0.40,0.649,0.713,89.61,89.61,0.14,0.00, +,F4100D38-5272-4A9C-A8EB-E3383D7D80BC,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E +,DC48DBCE-EA32-40CB-9A71-1A7B6519CD98,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W +,16263E9D-16E5-465F-84AB-F3F4DD5620F5,1981_1990_6,0.40,0.639,0.713,88.61,88.61,0.14,180.00, +,8AB59231-87B7-440A-A508-CD8AB72FFB47,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 -,F4521949-B172-4B21-BF0B-6432AA6135A1,1981_1990_6,0.40,0.609,0.713,125.11,125.11,0.14,90.00,N -,E8BF2A49-1558-41BC-96CB-123915D688BF,1981_1990_6,0.40,0.609,0.713,124.50,124.50,180.14,90.00,S -,DEB2FACA-865F-4594-9474-DBC514C3E015,1981_1990_6,0.40,0.609,0.713,125.11,125.11,180.14,90.00,S -,1B24CA94-8734-4D2B-B6FD-E88558AED682,1981_1990_6,0.40,0.609,0.713,137.65,137.65,0.14,90.00,N -,EE425A30-D8EE-49AE-A2B1-23E47576E76C,1981_1990_6,0.40,0.609,0.713,124.66,124.66,180.14,90.00,S -,2BA28A3D-41A2-4142-8333-FF3F43829C37,1981_1990_6,0.40,0.609,0.713,124.50,124.50,0.14,90.00,N -,A4BBE0E0-AC85-41F6-BAE0-458ACD59E93C,1981_1990_6,0.40,0.609,0.713,123.89,123.89,180.14,90.00,S -,EFAC6C0B-D77A-473F-BC48-BDD80EC20B23,1981_1990_6,0.40,0.609,0.713,125.36,125.36,0.14,90.00,N -,DF3E69B8-FC69-416B-9D2C-1D745DF31EFD,1981_1990_6,0.40,0.609,0.713,126.07,126.07,180.14,90.00,S -,D9827025-1B3E-4617-9371-9B0E29A8780B,1981_1990_6,0.40,0.609,0.713,126.77,126.77,0.14,90.00,N -,A4693CFB-6E07-41DD-A6DF-8D7D0F6BA3DF,1981_1990_6,0.40,0.609,0.713,126.07,126.07,0.14,90.00,N -,B5A2B9C9-8D44-4989-BE67-67A10674D72D,1981_1990_6,0.40,0.609,0.713,126.77,126.77,180.14,90.00,S -,C851CA53-49E9-4A43-9F95-215079B2D5D7,1981_1990_6,0.40,0.609,0.713,124.66,124.66,0.14,90.00,N -,1F386A70-23F0-46A2-AEB6-322BED09B91F,1981_1990_6,0.40,0.609,0.713,125.36,125.36,180.14,90.00,S +,D524E2BC-728B-4064-A728-B9233029F720,1981_1990_6,0.40,0.609,0.713,125.11,125.11,0.14,90.00,N +,4E32AC48-CE37-4AB6-B73B-84BB5568732A,1981_1990_6,0.40,0.609,0.713,124.50,124.50,180.14,90.00,S +,38C5298B-D4AF-4C7E-BBF0-01EC4F15E3FA,1981_1990_6,0.40,0.609,0.713,125.11,125.11,180.14,90.00,S +,1D17A2B6-8F51-445B-9FC7-DC14A2BD768A,1981_1990_6,0.40,0.609,0.713,137.65,137.65,0.14,90.00,N +,3C62B4C3-89AF-402C-9C82-75D0DAF853B5,1981_1990_6,0.40,0.609,0.713,124.66,124.66,180.14,90.00,S +,34A34EEE-7FA0-4EA3-86A5-454DD1CCBCEA,1981_1990_6,0.40,0.609,0.713,124.50,124.50,0.14,90.00,N +,BB4039F6-7FAD-4EFA-A6A6-196288BD39B2,1981_1990_6,0.40,0.609,0.713,123.89,123.89,180.14,90.00,S +,66E4AAC0-93D3-42F7-B771-FC7DABE24F05,1981_1990_6,0.40,0.609,0.713,125.36,125.36,0.14,90.00,N +,CF93E454-A5D6-4068-A469-8BAD34F58312,1981_1990_6,0.40,0.609,0.713,126.07,126.07,180.14,90.00,S +,4F5A8482-3CE8-4E34-B831-9664F23EC464,1981_1990_6,0.40,0.609,0.713,126.77,126.77,0.14,90.00,N +,F9564E58-DFBF-4F6A-B3BE-61A1C339983F,1981_1990_6,0.40,0.609,0.713,126.07,126.07,0.14,90.00,N +,78AB1B6A-55A4-486A-ADB2-E0017E4AADE9,1981_1990_6,0.40,0.609,0.713,126.77,126.77,180.14,90.00,S +,972E98C9-3EF9-4FEF-873B-2517F8B5ED05,1981_1990_6,0.40,0.609,0.713,124.66,124.66,0.14,90.00,N +,87E061CC-492F-4F1F-B4EA-C9F07B539136,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 -,E9A776D7-C08A-4903-BDDE-33A1B75C006F WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,E9A776D7-C08A-4903-BDDE-33A1B75C006F,90.32,90.00,E -,06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,06E83EFC-71D1-45FE-85EA-E7EE9A7664B1,269.70,90.00,W -,A0CC674E-7FF5-4E87-8D8B-D2879920F518 WINDOW,WINDOW_CONSTRUCTION_1,9.25,0.00,0.00,9.25,9.25,2.954,0.391,0.305,,,No,A0CC674E-7FF5-4E87-8D8B-D2879920F518,90.32,90.00,E -,6894AE2C-4DE8-4004-B743-24810745043C WINDOW,WINDOW_CONSTRUCTION_1,1.76,0.00,0.00,1.76,1.76,2.954,0.391,0.305,,,No,6894AE2C-4DE8-4004-B743-24810745043C,89.91,90.00,E -,8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 WINDOW,WINDOW_CONSTRUCTION_1,21.76,0.00,0.00,21.76,21.76,2.954,0.391,0.305,,,No,8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1,0.06,90.00,N -,3476659A-7777-4217-879B-EC7411A9F8F4 WINDOW,WINDOW_CONSTRUCTION_1,0.86,0.00,0.00,0.86,0.86,2.954,0.391,0.305,,,No,3476659A-7777-4217-879B-EC7411A9F8F4,359.13,90.00,N -,A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 WINDOW,WINDOW_CONSTRUCTION_1,10.96,0.00,0.00,10.96,10.96,2.954,0.391,0.305,,,No,A987C29F-99C1-411A-9CC3-0AFBB35D9AB2,269.70,90.00,W -,D29ED729-A377-4D42-8E37-86D29FAA692B WINDOW,WINDOW_CONSTRUCTION_1,48.49,0.00,0.00,48.49,48.49,2.954,0.391,0.305,,,No,D29ED729-A377-4D42-8E37-86D29FAA692B,270.37,90.00,W -,1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF WINDOW,WINDOW_CONSTRUCTION_1,7.68,0.00,0.00,7.68,7.68,2.954,0.391,0.305,,,No,1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF,0.73,90.00,N -,9027AB96-D388-4204-9515-8638E09E0D23 WINDOW,WINDOW_CONSTRUCTION_1,9.13,0.00,0.00,9.13,9.13,2.954,0.391,0.305,,,No,9027AB96-D388-4204-9515-8638E09E0D23,269.95,90.00,W -,D80E753D-3A26-4EDA-90B8-B445FDD923B1 WINDOW,WINDOW_CONSTRUCTION_1,5.95,0.00,0.00,5.95,5.95,2.954,0.391,0.305,,,No,D80E753D-3A26-4EDA-90B8-B445FDD923B1,0.68,90.00,N -,D2676432-8B98-4881-B152-C2993D54E04B WINDOW,WINDOW_CONSTRUCTION_1,59.55,0.00,0.00,59.55,59.55,2.954,0.391,0.305,,,No,D2676432-8B98-4881-B152-C2993D54E04B,270.63,90.00,W -,CABC4BC7-A75C-4989-AEDA-0753936A5DEE WINDOW,WINDOW_CONSTRUCTION_1,1.59,0.00,0.00,1.59,1.59,2.954,0.391,0.305,,,No,CABC4BC7-A75C-4989-AEDA-0753936A5DEE,271.07,90.00,W -,7C52C57C-7025-415D-A9B8-F5AAF8F58535 WINDOW,WINDOW_CONSTRUCTION_1,6.70,0.00,0.00,6.70,6.70,2.954,0.391,0.305,,,No,7C52C57C-7025-415D-A9B8-F5AAF8F58535,180.88,90.00,S -,9DE3270A-551D-407E-A8B2-0639AE103505 WINDOW,WINDOW_CONSTRUCTION_1,8.72,0.00,0.00,8.72,8.72,2.954,0.391,0.305,,,No,9DE3270A-551D-407E-A8B2-0639AE103505,270.81,90.00,W -,197A0D24-9F0A-416B-AB79-18597F66C1AC WINDOW,WINDOW_CONSTRUCTION_1,9.04,0.00,0.00,9.04,9.04,2.954,0.391,0.305,,,No,197A0D24-9F0A-416B-AB79-18597F66C1AC,180.83,90.00,S -,FA41C2ED-457A-4E6B-9607-BDA10B64A2EE WINDOW,WINDOW_CONSTRUCTION_1,47.57,0.00,0.00,47.57,47.57,2.954,0.391,0.305,,,No,FA41C2ED-457A-4E6B-9607-BDA10B64A2EE,270.81,90.00,W -,6138DF36-E729-49F2-B62F-4870FC39C64F WINDOW,WINDOW_CONSTRUCTION_1,98.64,0.00,0.00,98.64,98.64,2.954,0.391,0.305,,,No,6138DF36-E729-49F2-B62F-4870FC39C64F,180.80,90.00,S -,B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 WINDOW,WINDOW_CONSTRUCTION_1,1.46,0.00,0.00,1.46,1.46,2.954,0.391,0.305,,,No,B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624,181.90,90.00,S -,7B0DA88C-0B47-4D1A-B84E-AEB70E93020C WINDOW,WINDOW_CONSTRUCTION_1,2.94,0.00,0.00,2.94,2.94,2.954,0.391,0.305,,,No,7B0DA88C-0B47-4D1A-B84E-AEB70E93020C,90.30,90.00,E -,DD970E33-A623-4CE7-AAFB-8ED198B8CA1C WINDOW,WINDOW_CONSTRUCTION_1,12.79,0.00,0.00,12.79,12.79,2.954,0.391,0.305,,,No,DD970E33-A623-4CE7-AAFB-8ED198B8CA1C,180.36,90.00,S -,02CDC36C-704D-47B9-AFEC-41F43222D0F4 WINDOW,WINDOW_CONSTRUCTION_1,59.93,0.00,0.00,59.93,59.93,2.954,0.391,0.305,,,No,02CDC36C-704D-47B9-AFEC-41F43222D0F4,90.35,90.00,E -,2142EBB0-161E-43EE-B6DE-A5DAD97612CC WINDOW,WINDOW_CONSTRUCTION_1,78.94,0.00,0.00,78.94,78.94,2.954,0.391,0.305,,,No,2142EBB0-161E-43EE-B6DE-A5DAD97612CC,0.36,90.00,N -,BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 WINDOW,WINDOW_CONSTRUCTION_1,50.93,0.00,0.00,50.93,50.93,2.954,0.391,0.305,,,No,BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2,90.36,90.00,E -,1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 WINDOW,WINDOW_CONSTRUCTION_1,77.92,0.00,0.00,77.92,77.92,2.954,0.391,0.305,,,No,1DA28FD9-438E-44B3-8AB1-D14CD1DCD738,180.36,90.00,S -,B227DDA2-BC10-42A6-BFEB-B934B789F695 WINDOW,WINDOW_CONSTRUCTION_1,62.10,0.00,0.00,62.10,62.10,2.954,0.391,0.305,,,No,B227DDA2-BC10-42A6-BFEB-B934B789F695,90.36,90.00,E -,D86FC62F-269C-45DE-84ED-D5A196E2095E WINDOW,WINDOW_CONSTRUCTION_1,113.26,0.00,0.00,113.26,113.26,2.954,0.391,0.305,,,No,D86FC62F-269C-45DE-84ED-D5A196E2095E,0.35,90.00,N -,CDB601E5-0866-416B-89EB-D048E5859786 WINDOW,WINDOW_CONSTRUCTION_1,1.01,0.00,0.00,1.01,1.01,2.954,0.391,0.305,,,No,CDB601E5-0866-416B-89EB-D048E5859786,358.71,90.00,N -,C0C8C17C-FC22-4B92-A946-702E972AA329 WINDOW,WINDOW_CONSTRUCTION_1,0.80,0.00,0.00,0.80,0.80,2.954,0.391,0.305,,,No,C0C8C17C-FC22-4B92-A946-702E972AA329,90.31,90.00,E -,D280607F-5351-4A50-81CD-D03DF7A28C0D WINDOW,WINDOW_CONSTRUCTION_1,11.78,0.00,0.00,11.78,11.78,2.954,0.391,0.305,,,No,D280607F-5351-4A50-81CD-D03DF7A28C0D,269.70,90.00,W -,BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113 WINDOW,WINDOW_CONSTRUCTION_1,25.78,0.00,0.00,25.78,25.78,2.954,0.391,0.305,,,No,BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113,179.68,90.00,S -,BEF1B1AB-759C-483F-939C-BFCA5B2118EF WINDOW,WINDOW_CONSTRUCTION_1,10.80,0.00,0.00,10.80,10.80,2.954,0.391,0.305,,,No,BEF1B1AB-759C-483F-939C-BFCA5B2118EF,89.74,90.00,E -,BEF3D9A2-B25F-44E4-B611-E021B6179865 WINDOW,WINDOW_CONSTRUCTION_1,12.11,0.00,0.00,12.11,12.11,2.954,0.391,0.305,,,No,BEF3D9A2-B25F-44E4-B611-E021B6179865,90.03,90.00,E -,EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 WINDOW,WINDOW_CONSTRUCTION_1,26.05,0.00,0.00,26.05,26.05,2.954,0.391,0.305,,,No,EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8,359.95,90.00,N -,955BDC8B-FADC-4DC9-9146-015E44F6D0F9 WINDOW,WINDOW_CONSTRUCTION_1,12.02,0.00,0.00,12.02,12.02,2.954,0.391,0.305,,,No,955BDC8B-FADC-4DC9-9146-015E44F6D0F9,270.04,90.00,W -,74146306-5CC3-4DF9-B2DD-4E2FE410DA48 WINDOW,WINDOW_CONSTRUCTION_1,26.05,0.00,0.00,26.05,26.05,2.954,0.391,0.305,,,No,74146306-5CC3-4DF9-B2DD-4E2FE410DA48,180.13,90.00,S -,BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 WINDOW,WINDOW_CONSTRUCTION_1,0.80,0.00,0.00,0.80,0.80,2.954,0.391,0.305,,,No,BF81A09D-7EB2-443C-9DBE-7CCF41E9E733,90.22,90.00,E -,910EC237-D19C-44D2-A0AF-53394D66BADB WINDOW,WINDOW_CONSTRUCTION_1,21.37,0.00,0.00,21.37,21.37,2.954,0.391,0.305,,,No,910EC237-D19C-44D2-A0AF-53394D66BADB,359.45,90.00,N -,DC8B7A69-B843-43F8-810C-AF6503E94ABF WINDOW,WINDOW_CONSTRUCTION_1,0.95,0.00,0.00,0.95,0.95,2.954,0.391,0.305,,,No,DC8B7A69-B843-43F8-810C-AF6503E94ABF,0.34,90.00,N -,DD09FB31-D077-415A-8A35-D4B8E4105F74 WINDOW,WINDOW_CONSTRUCTION_1,11.21,0.00,0.00,11.21,11.21,2.954,0.391,0.305,,,No,DD09FB31-D077-415A-8A35-D4B8E4105F74,270.10,90.00,W -,3EB30793-160D-41D4-AD8A-36E1CFF208C6 WINDOW,WINDOW_CONSTRUCTION_1,10.67,0.00,0.00,10.67,10.67,2.954,0.391,0.305,,,No,3EB30793-160D-41D4-AD8A-36E1CFF208C6,89.40,90.00,E -,74CA1532-4928-42E1-AE6C-111556837B7E WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,74CA1532-4928-42E1-AE6C-111556837B7E,90.32,90.00,E -,B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55,269.70,90.00,W -,DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8,89.40,90.00,E -,E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9,270.10,90.00,W -,869A399D-0DA3-4CDE-AD63-60BFDAC22071 WINDOW,WINDOW_CONSTRUCTION_1,11.17,0.00,0.00,11.17,11.17,2.954,0.391,0.305,,,No,869A399D-0DA3-4CDE-AD63-60BFDAC22071,89.40,90.00,E -,6ED55F0D-F5CD-49C2-8F09-54D704A502FA WINDOW,WINDOW_CONSTRUCTION_1,11.21,0.00,0.00,11.21,11.21,2.954,0.391,0.305,,,No,6ED55F0D-F5CD-49C2-8F09-54D704A502FA,270.10,90.00,W -,DBABEAFE-8C2D-40EF-A157-12F9BA741B94 WINDOW,WINDOW_CONSTRUCTION_1,22.18,0.00,0.00,22.18,22.18,2.954,0.391,0.305,,,No,DBABEAFE-8C2D-40EF-A157-12F9BA741B94,180.04,90.00,S -,690A4F44-19B1-4DE4-9442-7B0128C1D064 WINDOW,WINDOW_CONSTRUCTION_1,0.78,0.00,0.00,0.78,0.78,2.954,0.391,0.305,,,No,690A4F44-19B1-4DE4-9442-7B0128C1D064,179.52,90.00,S -,6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F,89.40,90.00,E -,6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0,270.10,90.00,W -,531634DB-2C61-44A3-80D9-94A5852E16AB WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,531634DB-2C61-44A3-80D9-94A5852E16AB,89.40,90.00,E -,5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13,270.10,90.00,W +,88D081F6-1235-44A7-A462-7D1CE4B365BF WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,88D081F6-1235-44A7-A462-7D1CE4B365BF,90.32,90.00,E +,04E70FD4-4E5A-4F9E-99F0-91053F07191E WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,04E70FD4-4E5A-4F9E-99F0-91053F07191E,269.70,90.00,W +,69F96927-5BF0-4A6D-828E-BFC11FE57194 WINDOW,WINDOW_CONSTRUCTION_1,9.25,0.00,0.00,9.25,9.25,2.954,0.391,0.305,,,No,69F96927-5BF0-4A6D-828E-BFC11FE57194,90.32,90.00,E +,BD731930-1F08-4394-84A6-108312B0499E WINDOW,WINDOW_CONSTRUCTION_1,1.76,0.00,0.00,1.76,1.76,2.954,0.391,0.305,,,No,BD731930-1F08-4394-84A6-108312B0499E,89.91,90.00,E +,1ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7 WINDOW,WINDOW_CONSTRUCTION_1,21.76,0.00,0.00,21.76,21.76,2.954,0.391,0.305,,,No,1ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7,0.06,90.00,N +,237E30F1-CCC2-4275-AE30-F820AE689BDB WINDOW,WINDOW_CONSTRUCTION_1,0.86,0.00,0.00,0.86,0.86,2.954,0.391,0.305,,,No,237E30F1-CCC2-4275-AE30-F820AE689BDB,359.13,90.00,N +,6BD00B18-05ED-4D63-9E3B-27DB4F7D91FB WINDOW,WINDOW_CONSTRUCTION_1,10.96,0.00,0.00,10.96,10.96,2.954,0.391,0.305,,,No,6BD00B18-05ED-4D63-9E3B-27DB4F7D91FB,269.70,90.00,W +,94ED4BC5-AC57-4FAD-8621-A249C5C04A9F WINDOW,WINDOW_CONSTRUCTION_1,48.49,0.00,0.00,48.49,48.49,2.954,0.391,0.305,,,No,94ED4BC5-AC57-4FAD-8621-A249C5C04A9F,270.37,90.00,W +,B1D68F62-6DAA-49F7-88C2-B93E7CF18406 WINDOW,WINDOW_CONSTRUCTION_1,7.68,0.00,0.00,7.68,7.68,2.954,0.391,0.305,,,No,B1D68F62-6DAA-49F7-88C2-B93E7CF18406,0.73,90.00,N +,E2D1FA98-7E9E-4610-A6AB-8DBE69551FF5 WINDOW,WINDOW_CONSTRUCTION_1,9.13,0.00,0.00,9.13,9.13,2.954,0.391,0.305,,,No,E2D1FA98-7E9E-4610-A6AB-8DBE69551FF5,269.95,90.00,W +,988D81D6-2B4E-45B8-9071-65CF25A15C59 WINDOW,WINDOW_CONSTRUCTION_1,5.95,0.00,0.00,5.95,5.95,2.954,0.391,0.305,,,No,988D81D6-2B4E-45B8-9071-65CF25A15C59,0.68,90.00,N +,DA12B56F-C238-405C-8837-5F503FEA4F6F WINDOW,WINDOW_CONSTRUCTION_1,59.55,0.00,0.00,59.55,59.55,2.954,0.391,0.305,,,No,DA12B56F-C238-405C-8837-5F503FEA4F6F,270.63,90.00,W +,0857330D-B5CD-4746-A5E9-251FAD1EF835 WINDOW,WINDOW_CONSTRUCTION_1,1.59,0.00,0.00,1.59,1.59,2.954,0.391,0.305,,,No,0857330D-B5CD-4746-A5E9-251FAD1EF835,271.07,90.00,W +,753B8448-F2A4-4695-9B8E-A18B5952391F WINDOW,WINDOW_CONSTRUCTION_1,6.70,0.00,0.00,6.70,6.70,2.954,0.391,0.305,,,No,753B8448-F2A4-4695-9B8E-A18B5952391F,180.88,90.00,S +,D5D765F2-1092-48FA-A7B7-B154EE277681 WINDOW,WINDOW_CONSTRUCTION_1,8.72,0.00,0.00,8.72,8.72,2.954,0.391,0.305,,,No,D5D765F2-1092-48FA-A7B7-B154EE277681,270.81,90.00,W +,70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB WINDOW,WINDOW_CONSTRUCTION_1,9.04,0.00,0.00,9.04,9.04,2.954,0.391,0.305,,,No,70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB,180.83,90.00,S +,41045D45-CD0C-4E6A-B2E0-E81DC2BCCD38 WINDOW,WINDOW_CONSTRUCTION_1,47.57,0.00,0.00,47.57,47.57,2.954,0.391,0.305,,,No,41045D45-CD0C-4E6A-B2E0-E81DC2BCCD38,270.81,90.00,W +,9485D7B2-3887-412F-A921-FA3AB2023FDD WINDOW,WINDOW_CONSTRUCTION_1,98.64,0.00,0.00,98.64,98.64,2.954,0.391,0.305,,,No,9485D7B2-3887-412F-A921-FA3AB2023FDD,180.80,90.00,S +,DC0198E1-EF8A-4AE4-B856-023F4E25C845 WINDOW,WINDOW_CONSTRUCTION_1,1.46,0.00,0.00,1.46,1.46,2.954,0.391,0.305,,,No,DC0198E1-EF8A-4AE4-B856-023F4E25C845,181.90,90.00,S +,305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 WINDOW,WINDOW_CONSTRUCTION_1,2.94,0.00,0.00,2.94,2.94,2.954,0.391,0.305,,,No,305F15FB-ACEC-4E3C-A6A8-B02C34CC8918,90.30,90.00,E +,71C66759-4E9F-48C2-976C-B60D6D1F99A5 WINDOW,WINDOW_CONSTRUCTION_1,12.79,0.00,0.00,12.79,12.79,2.954,0.391,0.305,,,No,71C66759-4E9F-48C2-976C-B60D6D1F99A5,180.36,90.00,S +,2BF4D215-25DB-4CDA-B12B-672631606F4C WINDOW,WINDOW_CONSTRUCTION_1,59.93,0.00,0.00,59.93,59.93,2.954,0.391,0.305,,,No,2BF4D215-25DB-4CDA-B12B-672631606F4C,90.35,90.00,E +,92866768-61AD-482D-8464-11A50625DE49 WINDOW,WINDOW_CONSTRUCTION_1,78.94,0.00,0.00,78.94,78.94,2.954,0.391,0.305,,,No,92866768-61AD-482D-8464-11A50625DE49,0.36,90.00,N +,0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 WINDOW,WINDOW_CONSTRUCTION_1,50.93,0.00,0.00,50.93,50.93,2.954,0.391,0.305,,,No,0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686,90.36,90.00,E +,80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 WINDOW,WINDOW_CONSTRUCTION_1,77.92,0.00,0.00,77.92,77.92,2.954,0.391,0.305,,,No,80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05,180.36,90.00,S +,8A46261E-00F3-4288-8FCC-0223AE4B2A7C WINDOW,WINDOW_CONSTRUCTION_1,62.10,0.00,0.00,62.10,62.10,2.954,0.391,0.305,,,No,8A46261E-00F3-4288-8FCC-0223AE4B2A7C,90.36,90.00,E +,DD481CAA-73DE-47FD-9F74-9B22CE720B44 WINDOW,WINDOW_CONSTRUCTION_1,113.26,0.00,0.00,113.26,113.26,2.954,0.391,0.305,,,No,DD481CAA-73DE-47FD-9F74-9B22CE720B44,0.35,90.00,N +,79F4E5CA-4739-4A69-9955-726C8E859B53 WINDOW,WINDOW_CONSTRUCTION_1,1.01,0.00,0.00,1.01,1.01,2.954,0.391,0.305,,,No,79F4E5CA-4739-4A69-9955-726C8E859B53,358.71,90.00,N +,AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 WINDOW,WINDOW_CONSTRUCTION_1,0.80,0.00,0.00,0.80,0.80,2.954,0.391,0.305,,,No,AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5,90.31,90.00,E +,F21D70FC-7C69-49C4-A53E-2D940858A186 WINDOW,WINDOW_CONSTRUCTION_1,11.78,0.00,0.00,11.78,11.78,2.954,0.391,0.305,,,No,F21D70FC-7C69-49C4-A53E-2D940858A186,269.70,90.00,W +,AC2B4E2F-D856-4604-9B60-33146CC9C4ED WINDOW,WINDOW_CONSTRUCTION_1,25.78,0.00,0.00,25.78,25.78,2.954,0.391,0.305,,,No,AC2B4E2F-D856-4604-9B60-33146CC9C4ED,179.68,90.00,S +,7D0E5F1D-CD74-4723-B33D-D86D6E019B1D WINDOW,WINDOW_CONSTRUCTION_1,10.80,0.00,0.00,10.80,10.80,2.954,0.391,0.305,,,No,7D0E5F1D-CD74-4723-B33D-D86D6E019B1D,89.74,90.00,E +,78985B62-1778-40BF-B4F1-3DE39FD7EF10 WINDOW,WINDOW_CONSTRUCTION_1,12.11,0.00,0.00,12.11,12.11,2.954,0.391,0.305,,,No,78985B62-1778-40BF-B4F1-3DE39FD7EF10,90.03,90.00,E +,207E14B7-DC3A-414C-B35E-6C546BFBB70B WINDOW,WINDOW_CONSTRUCTION_1,26.05,0.00,0.00,26.05,26.05,2.954,0.391,0.305,,,No,207E14B7-DC3A-414C-B35E-6C546BFBB70B,359.95,90.00,N +,A97F4CA2-37A6-4D25-80B4-85A86EB2282C WINDOW,WINDOW_CONSTRUCTION_1,12.02,0.00,0.00,12.02,12.02,2.954,0.391,0.305,,,No,A97F4CA2-37A6-4D25-80B4-85A86EB2282C,270.04,90.00,W +,B518AF5B-943A-4354-8536-323FE5EDDD66 WINDOW,WINDOW_CONSTRUCTION_1,26.05,0.00,0.00,26.05,26.05,2.954,0.391,0.305,,,No,B518AF5B-943A-4354-8536-323FE5EDDD66,180.13,90.00,S +,E1634D44-C4A7-4008-8D97-D9E8FE6B4420 WINDOW,WINDOW_CONSTRUCTION_1,0.80,0.00,0.00,0.80,0.80,2.954,0.391,0.305,,,No,E1634D44-C4A7-4008-8D97-D9E8FE6B4420,90.22,90.00,E +,AF582559-958B-453E-AF2C-BA7D24FE67F3 WINDOW,WINDOW_CONSTRUCTION_1,21.37,0.00,0.00,21.37,21.37,2.954,0.391,0.305,,,No,AF582559-958B-453E-AF2C-BA7D24FE67F3,359.45,90.00,N +,603180BB-EE2E-44DF-8C24-564538C6645D WINDOW,WINDOW_CONSTRUCTION_1,0.95,0.00,0.00,0.95,0.95,2.954,0.391,0.305,,,No,603180BB-EE2E-44DF-8C24-564538C6645D,0.34,90.00,N +,B9F1215C-96E0-4FED-B11F-96DD0C091107 WINDOW,WINDOW_CONSTRUCTION_1,11.21,0.00,0.00,11.21,11.21,2.954,0.391,0.305,,,No,B9F1215C-96E0-4FED-B11F-96DD0C091107,270.10,90.00,W +,AFEF7551-521F-4136-8EE4-A8BB569626FB WINDOW,WINDOW_CONSTRUCTION_1,10.67,0.00,0.00,10.67,10.67,2.954,0.391,0.305,,,No,AFEF7551-521F-4136-8EE4-A8BB569626FB,89.40,90.00,E +,F8C808E6-1058-4E27-BFD8-82088AE3596A WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,F8C808E6-1058-4E27-BFD8-82088AE3596A,90.32,90.00,E +,C93C41EB-4593-463D-9913-DD0AFE16ECE0 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,C93C41EB-4593-463D-9913-DD0AFE16ECE0,269.70,90.00,W +,CD1E2A22-2EB1-439E-A009-442290519521 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,CD1E2A22-2EB1-439E-A009-442290519521,89.40,90.00,E +,885ED1BD-2100-4737-9188-C7067F7AF8B7 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,885ED1BD-2100-4737-9188-C7067F7AF8B7,270.10,90.00,W +,7ABB3F53-807E-4B86-86E3-8B940AF12731 WINDOW,WINDOW_CONSTRUCTION_1,11.17,0.00,0.00,11.17,11.17,2.954,0.391,0.305,,,No,7ABB3F53-807E-4B86-86E3-8B940AF12731,89.40,90.00,E +,5D0BAE4C-B3EB-48A9-968F-D72760E72ED9 WINDOW,WINDOW_CONSTRUCTION_1,11.21,0.00,0.00,11.21,11.21,2.954,0.391,0.305,,,No,5D0BAE4C-B3EB-48A9-968F-D72760E72ED9,270.10,90.00,W +,F1395637-7DDA-44AF-834D-48DFDF24DB83 WINDOW,WINDOW_CONSTRUCTION_1,22.18,0.00,0.00,22.18,22.18,2.954,0.391,0.305,,,No,F1395637-7DDA-44AF-834D-48DFDF24DB83,180.04,90.00,S +,8912DA34-87A5-4126-A1F1-1552F5AAE7E7 WINDOW,WINDOW_CONSTRUCTION_1,0.78,0.00,0.00,0.78,0.78,2.954,0.391,0.305,,,No,8912DA34-87A5-4126-A1F1-1552F5AAE7E7,179.52,90.00,S +,0FDCC26F-D760-468C-9C9E-EA174E9497A9 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,0FDCC26F-D760-468C-9C9E-EA174E9497A9,89.40,90.00,E +,BA01EFBE-4A81-414D-BD05-2F21B9B15F11 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,BA01EFBE-4A81-414D-BD05-2F21B9B15F11,270.10,90.00,W +,F4100D38-5272-4A9C-A8EB-E3383D7D80BC WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,F4100D38-5272-4A9C-A8EB-E3383D7D80BC,89.40,90.00,E +,DC48DBCE-EA32-40CB-9A71-1A7B6519CD98 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,DC48DBCE-EA32-40CB-9A71-1A7B6519CD98,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,,,,,,, diff --git a/out_files/Montreal_tbl.htm b/out_files/Montreal_tbl.htm index 9e5fd969..908a315c 100644 --- a/out_files/Montreal_tbl.htm +++ b/out_files/Montreal_tbl.htm @@ -2,27 +2,27 @@ Buildings in b'Montreal' RUN PERIOD 1 ** Montreal Int'l PQ CAN WYEC2-B-94792 WMO#=716270 - 2023-12-28 - 20:22:29 + 2024-01-02 + 18:16:53 - EnergyPlus

Table of Contents

-

Program Version:EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22

+

Program Version:EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.01.02 18:16

Tabular Output Report in Format: HTML

Building: Buildings in b'Montreal'

Environment: RUN PERIOD 1 ** Montreal Int'l PQ CAN WYEC2-B-94792 WMO#=716270

-

Simulation Timestamp: 2023-12-28 - 20:22:29

+

Simulation Timestamp: 2024-01-02 + 18:16:53


Table of Contents

Report: Annual Building Utility Performance Summary

For: Entire Facility

-

Timestamp: 2023-12-28 - 20:22:29

+

Timestamp: 2024-01-02 + 18:16:53

Values gathered over 8760.00 hours



Site and Source Energy

@@ -1611,8 +1611,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Input Verification and Results Summary

For: Entire Facility

-

Timestamp: 2023-12-28 - 20:22:29

+

Timestamp: 2024-01-02 + 18:16:53

General

@@ -1621,7 +1621,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -2036,8 +2036,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Demand End Use Components Summary

For: Entire Facility

-

Timestamp: 2023-12-28 - 20:22:29

+

Timestamp: 2024-01-02 + 18:16:53

End Uses

Program Version and BuildEnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.01.02 18:16
RunPeriod
@@ -3104,15 +3104,15 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Component Sizing Summary

For: Entire Facility

-

Timestamp: 2023-12-28 - 20:22:29

+

Timestamp: 2024-01-02 + 18:16:53


Table of Contents

Report: Adaptive Comfort Summary

For: Entire Facility

-

Timestamp: 2023-12-28 - 20:22:29

+

Timestamp: 2024-01-02 + 18:16:53

Time Not Meeting the Adaptive Comfort Models during Occupied Hours

@@ -3130,8 +3130,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Climatic Data Summary

For: Entire Facility

-

Timestamp: 2023-12-28 - 20:22:29

+

Timestamp: 2024-01-02 + 18:16:53

SizingPeriod:DesignDay

@@ -3171,8 +3171,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Envelope Summary

For: Entire Facility

-

Timestamp: 2023-12-28 - 20:22:29

+

Timestamp: 2024-01-02 + 18:16:53

Opaque Exterior

@@ -3188,7 +3188,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3200,7 +3200,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3212,7 +3212,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3224,7 +3224,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3236,7 +3236,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3248,7 +3248,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3260,7 +3260,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3272,7 +3272,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3284,7 +3284,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3296,7 +3296,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3308,7 +3308,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3320,7 +3320,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3332,7 +3332,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3344,7 +3344,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3356,7 +3356,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3368,7 +3368,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3380,7 +3380,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3392,7 +3392,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3404,7 +3404,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3416,7 +3416,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3428,7 +3428,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3440,7 +3440,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3452,7 +3452,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3464,7 +3464,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3476,7 +3476,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3488,7 +3488,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3500,7 +3500,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3512,7 +3512,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3524,7 +3524,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3536,7 +3536,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3548,7 +3548,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3560,7 +3560,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3572,7 +3572,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3584,7 +3584,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3596,7 +3596,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3608,7 +3608,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3620,7 +3620,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3632,7 +3632,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3644,7 +3644,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3656,7 +3656,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3668,7 +3668,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3680,7 +3680,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3692,7 +3692,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3704,7 +3704,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3716,7 +3716,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3728,7 +3728,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3740,7 +3740,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3752,7 +3752,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3764,7 +3764,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3776,7 +3776,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3788,7 +3788,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3800,7 +3800,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3812,7 +3812,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3824,7 +3824,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3836,7 +3836,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3848,7 +3848,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3860,7 +3860,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3872,7 +3872,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3884,7 +3884,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3896,7 +3896,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3908,7 +3908,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3920,7 +3920,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3932,7 +3932,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3944,7 +3944,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3956,7 +3956,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3968,7 +3968,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3980,7 +3980,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3992,7 +3992,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4004,7 +4004,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4016,7 +4016,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4028,7 +4028,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4040,7 +4040,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4052,7 +4052,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4064,7 +4064,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4076,7 +4076,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4104,7 +4104,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4116,7 +4116,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4128,7 +4128,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4140,7 +4140,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4152,7 +4152,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4164,7 +4164,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4176,7 +4176,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4188,7 +4188,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4200,7 +4200,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4212,7 +4212,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4224,7 +4224,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4236,7 +4236,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4248,7 +4248,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4260,7 +4260,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4295,7 +4295,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -4308,13 +4308,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4327,13 +4327,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4346,13 +4346,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4365,13 +4365,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4384,13 +4384,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4403,13 +4403,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4422,13 +4422,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4441,13 +4441,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4460,13 +4460,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4479,13 +4479,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4498,13 +4498,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4517,13 +4517,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4536,13 +4536,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4555,13 +4555,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4574,13 +4574,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4593,13 +4593,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4612,13 +4612,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4631,13 +4631,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4650,13 +4650,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4669,13 +4669,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4688,13 +4688,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4707,13 +4707,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4726,13 +4726,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4745,13 +4745,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4764,13 +4764,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4783,13 +4783,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4802,13 +4802,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4821,13 +4821,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4840,13 +4840,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4859,13 +4859,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4878,13 +4878,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4897,13 +4897,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4916,13 +4916,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4935,13 +4935,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4954,13 +4954,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4973,13 +4973,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4992,13 +4992,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5011,13 +5011,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5030,13 +5030,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5049,13 +5049,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5068,13 +5068,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5087,13 +5087,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5106,13 +5106,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5125,13 +5125,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5144,13 +5144,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5163,13 +5163,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5182,13 +5182,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5201,13 +5201,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5220,13 +5220,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5239,13 +5239,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5258,13 +5258,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5277,13 +5277,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5296,7 +5296,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -5429,8 +5429,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Lighting Summary

For: Entire Facility

-

Timestamp: 2023-12-28 - 20:22:29

+

Timestamp: 2024-01-02 + 18:16:53

Interior Lighting

Cardinal Direction
E9A776D7-C08A-4903-BDDE-33A1B75C006F88D081F6-1235-44A7-A462-7D1CE4B365BF 1981_1990_6 0.40 0.644 E
06E83EFC-71D1-45FE-85EA-E7EE9A7664B104E70FD4-4E5A-4F9E-99F0-91053F07191E 1981_1990_6 0.40 0.644 W
49A6A0D1-21FA-4174-A2E8-6E59F41BE8B9F865DFC4-F54F-4140-92DC-0D85027B6556 1981_1990_6 0.40 0.639  
6714F8CE-FBE1-41FA-8146-152344E45E8966443928-1B2B-4D46-A3A3-5FB64B451447 1981_1990_6 0.40 0.649  
A0CC674E-7FF5-4E87-8D8B-D2879920F51869F96927-5BF0-4A6D-828E-BFC11FE57194 1981_1990_6 0.40 0.644 E
6894AE2C-4DE8-4004-B743-24810745043CBD731930-1F08-4394-84A6-108312B0499E 1981_1990_6 0.40 0.644 E
8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC11ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7 1981_1990_6 0.40 0.644 N
3476659A-7777-4217-879B-EC7411A9F8F4237E30F1-CCC2-4275-AE30-F820AE689BDB 1981_1990_6 0.40 0.644 N
A987C29F-99C1-411A-9CC3-0AFBB35D9AB26BD00B18-05ED-4D63-9E3B-27DB4F7D91FB 1981_1990_6 0.40 0.644 W
D6F1DC5C-00EA-4F85-AAA6-4D2C54BFA8A874C42012-9742-41A2-B35F-CC626FA4017D 1981_1990_6 0.40 0.639  
A804AC39-E991-4FA7-8EBD-6E9DE27C644952EBFD0A-5C2E-431E-B4D4-FFEFE9D94EDC 1981_1990_6 0.40 0.649  
D29ED729-A377-4D42-8E37-86D29FAA692B94ED4BC5-AC57-4FAD-8621-A249C5C04A9F 1981_1990_6 0.40 0.644 W
1D1DBDBF-A442-426B-ABA9-A6644EC6CCAFB1D68F62-6DAA-49F7-88C2-B93E7CF18406 1981_1990_6 0.40 0.644 N
9027AB96-D388-4204-9515-8638E09E0D23E2D1FA98-7E9E-4610-A6AB-8DBE69551FF5 1981_1990_6 0.40 0.644 W
D80E753D-3A26-4EDA-90B8-B445FDD923B1988D81D6-2B4E-45B8-9071-65CF25A15C59 1981_1990_6 0.40 0.644 N
D2676432-8B98-4881-B152-C2993D54E04BDA12B56F-C238-405C-8837-5F503FEA4F6F 1981_1990_6 0.40 0.644 W
CABC4BC7-A75C-4989-AEDA-0753936A5DEE0857330D-B5CD-4746-A5E9-251FAD1EF835 1981_1990_6 0.40 0.644 W
7C52C57C-7025-415D-A9B8-F5AAF8F58535753B8448-F2A4-4695-9B8E-A18B5952391F 1981_1990_6 0.40 0.644 S
9DE3270A-551D-407E-A8B2-0639AE103505D5D765F2-1092-48FA-A7B7-B154EE277681 1981_1990_6 0.40 0.644 W
197A0D24-9F0A-416B-AB79-18597F66C1AC70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB 1981_1990_6 0.40 0.644 S
FA41C2ED-457A-4E6B-9607-BDA10B64A2EE41045D45-CD0C-4E6A-B2E0-E81DC2BCCD38 1981_1990_6 0.40 0.644 W
6138DF36-E729-49F2-B62F-4870FC39C64F9485D7B2-3887-412F-A921-FA3AB2023FDD 1981_1990_6 0.40 0.644 S
B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624DC0198E1-EF8A-4AE4-B856-023F4E25C845 1981_1990_6 0.40 0.644 S
7B0DA88C-0B47-4D1A-B84E-AEB70E93020C305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 1981_1990_6 0.40 0.644 E
DD970E33-A623-4CE7-AAFB-8ED198B8CA1C71C66759-4E9F-48C2-976C-B60D6D1F99A5 1981_1990_6 0.40 0.644 S
02CDC36C-704D-47B9-AFEC-41F43222D0F42BF4D215-25DB-4CDA-B12B-672631606F4C 1981_1990_6 0.40 0.644 E
2142EBB0-161E-43EE-B6DE-A5DAD97612CC92866768-61AD-482D-8464-11A50625DE49 1981_1990_6 0.40 0.644 N
BF2A5A5A-2C66-46BB-9F00-08702FF2CEA20F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 1981_1990_6 0.40 0.644 E
1DA28FD9-438E-44B3-8AB1-D14CD1DCD73880F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 1981_1990_6 0.40 0.644 S
B227DDA2-BC10-42A6-BFEB-B934B789F6958A46261E-00F3-4288-8FCC-0223AE4B2A7C 1981_1990_6 0.40 0.644 E
D86FC62F-269C-45DE-84ED-D5A196E2095EDD481CAA-73DE-47FD-9F74-9B22CE720B44 1981_1990_6 0.40 0.644 N
95977B63-DA57-40D5-A214-4D2FABCA5347CE148459-71BF-43F3-AE25-19FE02B0FD00 1981_1990_6 0.40 0.639  
D6A7ED84-8E6C-4CB5-835C-1ADA1608F8DEF535E8FA-0079-4D18-84FD-C9C325421B0F 1981_1990_6 0.40 0.649  
CDB601E5-0866-416B-89EB-D048E585978679F4E5CA-4739-4A69-9955-726C8E859B53 1981_1990_6 0.40 0.644 N
C0C8C17C-FC22-4B92-A946-702E972AA329AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 1981_1990_6 0.40 0.644 E
D280607F-5351-4A50-81CD-D03DF7A28C0DF21D70FC-7C69-49C4-A53E-2D940858A186 1981_1990_6 0.40 0.644 W
BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113AC2B4E2F-D856-4604-9B60-33146CC9C4ED 1981_1990_6 0.40 0.644 S
BEF1B1AB-759C-483F-939C-BFCA5B2118EF7D0E5F1D-CD74-4723-B33D-D86D6E019B1D 1981_1990_6 0.40 0.644 E
8C214F58-37B7-4E41-AFEB-B048BCA834AE3880CEA6-B84D-46D9-860D-F6E0613132C8 1981_1990_6 0.40 0.639  
37756D72-403D-46F2-9CDE-4E412064828F59867B21-8DEA-45D3-882B-467CABAE3A3D 1981_1990_6 0.40 0.649  
BEF3D9A2-B25F-44E4-B611-E021B617986578985B62-1778-40BF-B4F1-3DE39FD7EF10 1981_1990_6 0.40 0.644 E
EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8207E14B7-DC3A-414C-B35E-6C546BFBB70B 1981_1990_6 0.40 0.644 N
955BDC8B-FADC-4DC9-9146-015E44F6D0F9A97F4CA2-37A6-4D25-80B4-85A86EB2282C 1981_1990_6 0.40 0.644 W
74146306-5CC3-4DF9-B2DD-4E2FE410DA48B518AF5B-943A-4354-8536-323FE5EDDD66 1981_1990_6 0.40 0.644 S
E562FE09-B0C0-4242-8049-66A78D056BB6FD0A6DC8-DC3C-4EB9-A239-C41322B19974 1981_1990_6 0.40 0.639  
13DA738A-2538-4FBE-A6AC-9E17A5A6638163BD75E1-8467-47EF-9A4C-ED2FFFA673F2 1981_1990_6 0.40 0.649  
BF81A09D-7EB2-443C-9DBE-7CCF41E9E733E1634D44-C4A7-4008-8D97-D9E8FE6B4420 1981_1990_6 0.40 0.644 E
910EC237-D19C-44D2-A0AF-53394D66BADBAF582559-958B-453E-AF2C-BA7D24FE67F3 1981_1990_6 0.40 0.644 N
DC8B7A69-B843-43F8-810C-AF6503E94ABF603180BB-EE2E-44DF-8C24-564538C6645D 1981_1990_6 0.40 0.644 N
DD09FB31-D077-415A-8A35-D4B8E4105F74B9F1215C-96E0-4FED-B11F-96DD0C091107 1981_1990_6 0.40 0.644 W
3EB30793-160D-41D4-AD8A-36E1CFF208C6AFEF7551-521F-4136-8EE4-A8BB569626FB 1981_1990_6 0.40 0.644 E
61BE9590-EE2C-4510-A65E-9D9707059D72972ED882-D0C4-4DEE-AA68-EC83C3B05847 1981_1990_6 0.40 0.639  
29AA4E15-EC14-45B9-BE01-3968B1F66BA30D04E8E8-EEB5-4799-AFBD-D04FFEACE9D6 1981_1990_6 0.40 0.649  
74CA1532-4928-42E1-AE6C-111556837B7EF8C808E6-1058-4E27-BFD8-82088AE3596A 1981_1990_6 0.40 0.644 E
B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55C93C41EB-4593-463D-9913-DD0AFE16ECE0 1981_1990_6 0.40 0.644 W
2389DAE8-0F83-4E21-8250-4E7DC4FE30257E806F25-F937-4252-9D48-CF9A67048D43 1981_1990_6 0.40 0.639  
D3620589-F605-42A2-8A8A-5A76A2147B394A48DD1C-BF95-4351-ACCA-318F847CBB15 1981_1990_6 0.40 0.649  
DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8CD1E2A22-2EB1-439E-A009-442290519521 1981_1990_6 0.40 0.644 E
E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9885ED1BD-2100-4737-9188-C7067F7AF8B7 1981_1990_6 0.40 0.644 W
BDEE1547-D4C7-40C6-9996-7530EF5A1A750A1BABD4-7600-4E7B-92E4-F079C5590FBD 1981_1990_6 0.40 0.639  
A4840188-8DF8-4EAA-B5F2-EA27AD8DA3331E711381-C0E2-414C-BA3B-BC973C771588 1981_1990_6 0.40 0.649  
869A399D-0DA3-4CDE-AD63-60BFDAC220717ABB3F53-807E-4B86-86E3-8B940AF12731 1981_1990_6 0.40 0.644 E
6ED55F0D-F5CD-49C2-8F09-54D704A502FA5D0BAE4C-B3EB-48A9-968F-D72760E72ED9 1981_1990_6 0.40 0.644 W
DBABEAFE-8C2D-40EF-A157-12F9BA741B94F1395637-7DDA-44AF-834D-48DFDF24DB83 1981_1990_6 0.40 0.644 S
690A4F44-19B1-4DE4-9442-7B0128C1D0648912DA34-87A5-4126-A1F1-1552F5AAE7E7 1981_1990_6 0.40 0.644 S
DB7435CB-E409-4E62-8B46-061B84825686B3610B1F-C7EC-48CB-8864-ED2314340442 1981_1990_6 0.40 0.639  
1642787D-CDB7-40B1-96DE-A28B6B1A65687B45E5A9-A529-4471-B0F6-4C2B2D6A679A 1981_1990_6 0.40 0.649  
6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F0FDCC26F-D760-468C-9C9E-EA174E9497A9 1981_1990_6 0.40 0.644 E
6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0BA01EFBE-4A81-414D-BD05-2F21B9B15F11 1981_1990_6 0.40 0.644 W
667683E9-4698-4804-B300-2FE5E1E6E939BB441A43-43BF-45C4-8B3D-A695A13BAFD4 1981_1990_6 0.40 0.639  
DB7DB81A-75B9-413D-B49C-B589478D35E64B22A526-5AF0-4B74-ABB1-6D3AED3DA38A 1981_1990_6 0.40 0.649  
531634DB-2C61-44A3-80D9-94A5852E16ABF4100D38-5272-4A9C-A8EB-E3383D7D80BC 1981_1990_6 0.40 0.644 E
5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13DC48DBCE-EA32-40CB-9A71-1A7B6519CD98 1981_1990_6 0.40 0.644 W
A6172439-540E-4D31-A8BC-32DD402924E116263E9D-16E5-465F-84AB-F3F4DD5620F5 1981_1990_6 0.40 0.639  
4A849183-D5E9-40D6-8A77-38B11B46433E8AB59231-87B7-440A-A508-CD8AB72FFB47 1981_1990_6 0.40 0.649 Cardinal Direction
F4521949-B172-4B21-BF0B-6432AA6135A1D524E2BC-728B-4064-A728-B9233029F720 1981_1990_6 0.40 0.609 N
E8BF2A49-1558-41BC-96CB-123915D688BF4E32AC48-CE37-4AB6-B73B-84BB5568732A 1981_1990_6 0.40 0.609 S
DEB2FACA-865F-4594-9474-DBC514C3E01538C5298B-D4AF-4C7E-BBF0-01EC4F15E3FA 1981_1990_6 0.40 0.609 S
1B24CA94-8734-4D2B-B6FD-E88558AED6821D17A2B6-8F51-445B-9FC7-DC14A2BD768A 1981_1990_6 0.40 0.609 N
EE425A30-D8EE-49AE-A2B1-23E47576E76C3C62B4C3-89AF-402C-9C82-75D0DAF853B5 1981_1990_6 0.40 0.609 S
2BA28A3D-41A2-4142-8333-FF3F43829C3734A34EEE-7FA0-4EA3-86A5-454DD1CCBCEA 1981_1990_6 0.40 0.609 N
A4BBE0E0-AC85-41F6-BAE0-458ACD59E93CBB4039F6-7FAD-4EFA-A6A6-196288BD39B2 1981_1990_6 0.40 0.609 S
EFAC6C0B-D77A-473F-BC48-BDD80EC20B2366E4AAC0-93D3-42F7-B771-FC7DABE24F05 1981_1990_6 0.40 0.609 N
DF3E69B8-FC69-416B-9D2C-1D745DF31EFDCF93E454-A5D6-4068-A469-8BAD34F58312 1981_1990_6 0.40 0.609 S
D9827025-1B3E-4617-9371-9B0E29A8780B4F5A8482-3CE8-4E34-B831-9664F23EC464 1981_1990_6 0.40 0.609 N
A4693CFB-6E07-41DD-A6DF-8D7D0F6BA3DFF9564E58-DFBF-4F6A-B3BE-61A1C339983F 1981_1990_6 0.40 0.609 N
B5A2B9C9-8D44-4989-BE67-67A10674D72D78AB1B6A-55A4-486A-ADB2-E0017E4AADE9 1981_1990_6 0.40 0.609 S
C851CA53-49E9-4A43-9F95-215079B2D5D7972E98C9-3EF9-4FEF-873B-2517F8B5ED05 1981_1990_6 0.40 0.609 N
1F386A70-23F0-46A2-AEB6-322BED09B91F87E061CC-492F-4F1F-B4EA-C9F07B539136 1981_1990_6 0.40 0.609 Cardinal Direction
E9A776D7-C08A-4903-BDDE-33A1B75C006F WINDOW88D081F6-1235-44A7-A462-7D1CE4B365BF WINDOW WINDOW_CONSTRUCTION_1 10.34 0.00     NoE9A776D7-C08A-4903-BDDE-33A1B75C006F88D081F6-1235-44A7-A462-7D1CE4B365BF 90.32 90.00 E
06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 WINDOW04E70FD4-4E5A-4F9E-99F0-91053F07191E WINDOW WINDOW_CONSTRUCTION_1 10.34 0.00     No06E83EFC-71D1-45FE-85EA-E7EE9A7664B104E70FD4-4E5A-4F9E-99F0-91053F07191E 269.70 90.00 W
A0CC674E-7FF5-4E87-8D8B-D2879920F518 WINDOW69F96927-5BF0-4A6D-828E-BFC11FE57194 WINDOW WINDOW_CONSTRUCTION_1 9.25 0.00     NoA0CC674E-7FF5-4E87-8D8B-D2879920F51869F96927-5BF0-4A6D-828E-BFC11FE57194 90.32 90.00 E
6894AE2C-4DE8-4004-B743-24810745043C WINDOWBD731930-1F08-4394-84A6-108312B0499E WINDOW WINDOW_CONSTRUCTION_1 1.76 0.00     No6894AE2C-4DE8-4004-B743-24810745043CBD731930-1F08-4394-84A6-108312B0499E 89.91 90.00 E
8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 WINDOW1ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7 WINDOW WINDOW_CONSTRUCTION_1 21.76 0.00     No8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC11ECA129C-B7E5-44FA-B5E6-C3D5FF00D1F7 0.06 90.00 N
3476659A-7777-4217-879B-EC7411A9F8F4 WINDOW237E30F1-CCC2-4275-AE30-F820AE689BDB WINDOW WINDOW_CONSTRUCTION_1 0.86 0.00     No3476659A-7777-4217-879B-EC7411A9F8F4237E30F1-CCC2-4275-AE30-F820AE689BDB 359.13 90.00 N
A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 WINDOW6BD00B18-05ED-4D63-9E3B-27DB4F7D91FB WINDOW WINDOW_CONSTRUCTION_1 10.96 0.00     NoA987C29F-99C1-411A-9CC3-0AFBB35D9AB26BD00B18-05ED-4D63-9E3B-27DB4F7D91FB 269.70 90.00 W
D29ED729-A377-4D42-8E37-86D29FAA692B WINDOW94ED4BC5-AC57-4FAD-8621-A249C5C04A9F WINDOW WINDOW_CONSTRUCTION_1 48.49 0.00     NoD29ED729-A377-4D42-8E37-86D29FAA692B94ED4BC5-AC57-4FAD-8621-A249C5C04A9F 270.37 90.00 W
1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF WINDOWB1D68F62-6DAA-49F7-88C2-B93E7CF18406 WINDOW WINDOW_CONSTRUCTION_1 7.68 0.00     No1D1DBDBF-A442-426B-ABA9-A6644EC6CCAFB1D68F62-6DAA-49F7-88C2-B93E7CF18406 0.73 90.00 N
9027AB96-D388-4204-9515-8638E09E0D23 WINDOWE2D1FA98-7E9E-4610-A6AB-8DBE69551FF5 WINDOW WINDOW_CONSTRUCTION_1 9.13 0.00     No9027AB96-D388-4204-9515-8638E09E0D23E2D1FA98-7E9E-4610-A6AB-8DBE69551FF5 269.95 90.00 W
D80E753D-3A26-4EDA-90B8-B445FDD923B1 WINDOW988D81D6-2B4E-45B8-9071-65CF25A15C59 WINDOW WINDOW_CONSTRUCTION_1 5.95 0.00     NoD80E753D-3A26-4EDA-90B8-B445FDD923B1988D81D6-2B4E-45B8-9071-65CF25A15C59 0.68 90.00 N
D2676432-8B98-4881-B152-C2993D54E04B WINDOWDA12B56F-C238-405C-8837-5F503FEA4F6F WINDOW WINDOW_CONSTRUCTION_1 59.55 0.00     NoD2676432-8B98-4881-B152-C2993D54E04BDA12B56F-C238-405C-8837-5F503FEA4F6F 270.63 90.00 W
CABC4BC7-A75C-4989-AEDA-0753936A5DEE WINDOW0857330D-B5CD-4746-A5E9-251FAD1EF835 WINDOW WINDOW_CONSTRUCTION_1 1.59 0.00     NoCABC4BC7-A75C-4989-AEDA-0753936A5DEE0857330D-B5CD-4746-A5E9-251FAD1EF835 271.07 90.00 W
7C52C57C-7025-415D-A9B8-F5AAF8F58535 WINDOW753B8448-F2A4-4695-9B8E-A18B5952391F WINDOW WINDOW_CONSTRUCTION_1 6.70 0.00     No7C52C57C-7025-415D-A9B8-F5AAF8F58535753B8448-F2A4-4695-9B8E-A18B5952391F 180.88 90.00 S
9DE3270A-551D-407E-A8B2-0639AE103505 WINDOWD5D765F2-1092-48FA-A7B7-B154EE277681 WINDOW WINDOW_CONSTRUCTION_1 8.72 0.00     No9DE3270A-551D-407E-A8B2-0639AE103505D5D765F2-1092-48FA-A7B7-B154EE277681 270.81 90.00 W
197A0D24-9F0A-416B-AB79-18597F66C1AC WINDOW70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB WINDOW WINDOW_CONSTRUCTION_1 9.04 0.00     No197A0D24-9F0A-416B-AB79-18597F66C1AC70BBBB3C-93C6-4AFC-A5A8-BEEA6E9502BB 180.83 90.00 S
FA41C2ED-457A-4E6B-9607-BDA10B64A2EE WINDOW41045D45-CD0C-4E6A-B2E0-E81DC2BCCD38 WINDOW WINDOW_CONSTRUCTION_1 47.57 0.00     NoFA41C2ED-457A-4E6B-9607-BDA10B64A2EE41045D45-CD0C-4E6A-B2E0-E81DC2BCCD38 270.81 90.00 W
6138DF36-E729-49F2-B62F-4870FC39C64F WINDOW9485D7B2-3887-412F-A921-FA3AB2023FDD WINDOW WINDOW_CONSTRUCTION_1 98.64 0.00     No6138DF36-E729-49F2-B62F-4870FC39C64F9485D7B2-3887-412F-A921-FA3AB2023FDD 180.80 90.00 S
B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 WINDOWDC0198E1-EF8A-4AE4-B856-023F4E25C845 WINDOW WINDOW_CONSTRUCTION_1 1.46 0.00     NoB1DB9AE1-C1A3-41AB-9591-E8BD85E6E624DC0198E1-EF8A-4AE4-B856-023F4E25C845 181.90 90.00 S
7B0DA88C-0B47-4D1A-B84E-AEB70E93020C WINDOW305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 WINDOW WINDOW_CONSTRUCTION_1 2.94 0.00     No7B0DA88C-0B47-4D1A-B84E-AEB70E93020C305F15FB-ACEC-4E3C-A6A8-B02C34CC8918 90.30 90.00 E
DD970E33-A623-4CE7-AAFB-8ED198B8CA1C WINDOW71C66759-4E9F-48C2-976C-B60D6D1F99A5 WINDOW WINDOW_CONSTRUCTION_1 12.79 0.00     NoDD970E33-A623-4CE7-AAFB-8ED198B8CA1C71C66759-4E9F-48C2-976C-B60D6D1F99A5 180.36 90.00 S
02CDC36C-704D-47B9-AFEC-41F43222D0F4 WINDOW2BF4D215-25DB-4CDA-B12B-672631606F4C WINDOW WINDOW_CONSTRUCTION_1 59.93 0.00     No02CDC36C-704D-47B9-AFEC-41F43222D0F42BF4D215-25DB-4CDA-B12B-672631606F4C 90.35 90.00 E
2142EBB0-161E-43EE-B6DE-A5DAD97612CC WINDOW92866768-61AD-482D-8464-11A50625DE49 WINDOW WINDOW_CONSTRUCTION_1 78.94 0.00     No2142EBB0-161E-43EE-B6DE-A5DAD97612CC92866768-61AD-482D-8464-11A50625DE49 0.36 90.00 N
BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 WINDOW0F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 WINDOW WINDOW_CONSTRUCTION_1 50.93 0.00     NoBF2A5A5A-2C66-46BB-9F00-08702FF2CEA20F2F3AC9-46FA-4B2F-B880-BDF7E42A0686 90.36 90.00 E
1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 WINDOW80F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 WINDOW WINDOW_CONSTRUCTION_1 77.92 0.00     No1DA28FD9-438E-44B3-8AB1-D14CD1DCD73880F9B9AA-47EE-41E1-AA48-F7A1A65C2E05 180.36 90.00 S
B227DDA2-BC10-42A6-BFEB-B934B789F695 WINDOW8A46261E-00F3-4288-8FCC-0223AE4B2A7C WINDOW WINDOW_CONSTRUCTION_1 62.10 0.00     NoB227DDA2-BC10-42A6-BFEB-B934B789F6958A46261E-00F3-4288-8FCC-0223AE4B2A7C 90.36 90.00 E
D86FC62F-269C-45DE-84ED-D5A196E2095E WINDOWDD481CAA-73DE-47FD-9F74-9B22CE720B44 WINDOW WINDOW_CONSTRUCTION_1 113.26 0.00     NoD86FC62F-269C-45DE-84ED-D5A196E2095EDD481CAA-73DE-47FD-9F74-9B22CE720B44 0.35 90.00 N
CDB601E5-0866-416B-89EB-D048E5859786 WINDOW79F4E5CA-4739-4A69-9955-726C8E859B53 WINDOW WINDOW_CONSTRUCTION_1 1.01 0.00     NoCDB601E5-0866-416B-89EB-D048E585978679F4E5CA-4739-4A69-9955-726C8E859B53 358.71 90.00 N
C0C8C17C-FC22-4B92-A946-702E972AA329 WINDOWAAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 WINDOW WINDOW_CONSTRUCTION_1 0.80 0.00     NoC0C8C17C-FC22-4B92-A946-702E972AA329AAFB61E8-DFA8-4B3A-BE5F-150953BC84E5 90.31 90.00 E
D280607F-5351-4A50-81CD-D03DF7A28C0D WINDOWF21D70FC-7C69-49C4-A53E-2D940858A186 WINDOW WINDOW_CONSTRUCTION_1 11.78 0.00     NoD280607F-5351-4A50-81CD-D03DF7A28C0DF21D70FC-7C69-49C4-A53E-2D940858A186 269.70 90.00 W
BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113 WINDOWAC2B4E2F-D856-4604-9B60-33146CC9C4ED WINDOW WINDOW_CONSTRUCTION_1 25.78 0.00     NoBEFA0F66-ABF7-4E7A-A02C-0B31BABEA113AC2B4E2F-D856-4604-9B60-33146CC9C4ED 179.68 90.00 S
BEF1B1AB-759C-483F-939C-BFCA5B2118EF WINDOW7D0E5F1D-CD74-4723-B33D-D86D6E019B1D WINDOW WINDOW_CONSTRUCTION_1 10.80 0.00     NoBEF1B1AB-759C-483F-939C-BFCA5B2118EF7D0E5F1D-CD74-4723-B33D-D86D6E019B1D 89.74 90.00 E
BEF3D9A2-B25F-44E4-B611-E021B6179865 WINDOW78985B62-1778-40BF-B4F1-3DE39FD7EF10 WINDOW WINDOW_CONSTRUCTION_1 12.11 0.00     NoBEF3D9A2-B25F-44E4-B611-E021B617986578985B62-1778-40BF-B4F1-3DE39FD7EF10 90.03 90.00 E
EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 WINDOW207E14B7-DC3A-414C-B35E-6C546BFBB70B WINDOW WINDOW_CONSTRUCTION_1 26.05 0.00     NoEC306A3C-7B56-44D5-A4DE-2E6D6C180DF8207E14B7-DC3A-414C-B35E-6C546BFBB70B 359.95 90.00 N
955BDC8B-FADC-4DC9-9146-015E44F6D0F9 WINDOWA97F4CA2-37A6-4D25-80B4-85A86EB2282C WINDOW WINDOW_CONSTRUCTION_1 12.02 0.00     No955BDC8B-FADC-4DC9-9146-015E44F6D0F9A97F4CA2-37A6-4D25-80B4-85A86EB2282C 270.04 90.00 W
74146306-5CC3-4DF9-B2DD-4E2FE410DA48 WINDOWB518AF5B-943A-4354-8536-323FE5EDDD66 WINDOW WINDOW_CONSTRUCTION_1 26.05 0.00     No74146306-5CC3-4DF9-B2DD-4E2FE410DA48B518AF5B-943A-4354-8536-323FE5EDDD66 180.13 90.00 S
BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 WINDOWE1634D44-C4A7-4008-8D97-D9E8FE6B4420 WINDOW WINDOW_CONSTRUCTION_1 0.80 0.00     NoBF81A09D-7EB2-443C-9DBE-7CCF41E9E733E1634D44-C4A7-4008-8D97-D9E8FE6B4420 90.22 90.00 E
910EC237-D19C-44D2-A0AF-53394D66BADB WINDOWAF582559-958B-453E-AF2C-BA7D24FE67F3 WINDOW WINDOW_CONSTRUCTION_1 21.37 0.00     No910EC237-D19C-44D2-A0AF-53394D66BADBAF582559-958B-453E-AF2C-BA7D24FE67F3 359.45 90.00 N
DC8B7A69-B843-43F8-810C-AF6503E94ABF WINDOW603180BB-EE2E-44DF-8C24-564538C6645D WINDOW WINDOW_CONSTRUCTION_1 0.95 0.00     NoDC8B7A69-B843-43F8-810C-AF6503E94ABF603180BB-EE2E-44DF-8C24-564538C6645D 0.34 90.00 N
DD09FB31-D077-415A-8A35-D4B8E4105F74 WINDOWB9F1215C-96E0-4FED-B11F-96DD0C091107 WINDOW WINDOW_CONSTRUCTION_1 11.21 0.00     NoDD09FB31-D077-415A-8A35-D4B8E4105F74B9F1215C-96E0-4FED-B11F-96DD0C091107 270.10 90.00 W
3EB30793-160D-41D4-AD8A-36E1CFF208C6 WINDOWAFEF7551-521F-4136-8EE4-A8BB569626FB WINDOW WINDOW_CONSTRUCTION_1 10.67 0.00     No3EB30793-160D-41D4-AD8A-36E1CFF208C6AFEF7551-521F-4136-8EE4-A8BB569626FB 89.40 90.00 E
74CA1532-4928-42E1-AE6C-111556837B7E WINDOWF8C808E6-1058-4E27-BFD8-82088AE3596A WINDOW WINDOW_CONSTRUCTION_1 10.34 0.00     No74CA1532-4928-42E1-AE6C-111556837B7EF8C808E6-1058-4E27-BFD8-82088AE3596A 90.32 90.00 E
B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 WINDOWC93C41EB-4593-463D-9913-DD0AFE16ECE0 WINDOW WINDOW_CONSTRUCTION_1 10.34 0.00     NoB9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55C93C41EB-4593-463D-9913-DD0AFE16ECE0 269.70 90.00 W
DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8 WINDOWCD1E2A22-2EB1-439E-A009-442290519521 WINDOW WINDOW_CONSTRUCTION_1 10.34 0.00     NoDDCF0603-5DA2-4BC2-8CD9-9C786EF507F8CD1E2A22-2EB1-439E-A009-442290519521 89.40 90.00 E
E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 WINDOW885ED1BD-2100-4737-9188-C7067F7AF8B7 WINDOW WINDOW_CONSTRUCTION_1 10.34 0.00     NoE5A6337E-9CDC-41FB-BCE3-BF0E99836FB9885ED1BD-2100-4737-9188-C7067F7AF8B7 270.10 90.00 W
869A399D-0DA3-4CDE-AD63-60BFDAC22071 WINDOW7ABB3F53-807E-4B86-86E3-8B940AF12731 WINDOW WINDOW_CONSTRUCTION_1 11.17 0.00     No869A399D-0DA3-4CDE-AD63-60BFDAC220717ABB3F53-807E-4B86-86E3-8B940AF12731 89.40 90.00 E
6ED55F0D-F5CD-49C2-8F09-54D704A502FA WINDOW5D0BAE4C-B3EB-48A9-968F-D72760E72ED9 WINDOW WINDOW_CONSTRUCTION_1 11.21 0.00     No6ED55F0D-F5CD-49C2-8F09-54D704A502FA5D0BAE4C-B3EB-48A9-968F-D72760E72ED9 270.10 90.00 W
DBABEAFE-8C2D-40EF-A157-12F9BA741B94 WINDOWF1395637-7DDA-44AF-834D-48DFDF24DB83 WINDOW WINDOW_CONSTRUCTION_1 22.18 0.00     NoDBABEAFE-8C2D-40EF-A157-12F9BA741B94F1395637-7DDA-44AF-834D-48DFDF24DB83 180.04 90.00 S
690A4F44-19B1-4DE4-9442-7B0128C1D064 WINDOW8912DA34-87A5-4126-A1F1-1552F5AAE7E7 WINDOW WINDOW_CONSTRUCTION_1 0.78 0.00     No690A4F44-19B1-4DE4-9442-7B0128C1D0648912DA34-87A5-4126-A1F1-1552F5AAE7E7 179.52 90.00 S
6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F WINDOW0FDCC26F-D760-468C-9C9E-EA174E9497A9 WINDOW WINDOW_CONSTRUCTION_1 10.34 0.00     No6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F0FDCC26F-D760-468C-9C9E-EA174E9497A9 89.40 90.00 E
6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 WINDOWBA01EFBE-4A81-414D-BD05-2F21B9B15F11 WINDOW WINDOW_CONSTRUCTION_1 10.34 0.00     No6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0BA01EFBE-4A81-414D-BD05-2F21B9B15F11 270.10 90.00 W
531634DB-2C61-44A3-80D9-94A5852E16AB WINDOWF4100D38-5272-4A9C-A8EB-E3383D7D80BC WINDOW WINDOW_CONSTRUCTION_1 10.34 0.00     No531634DB-2C61-44A3-80D9-94A5852E16ABF4100D38-5272-4A9C-A8EB-E3383D7D80BC 89.40 90.00 E
5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13 WINDOWDC48DBCE-EA32-40CB-9A71-1A7B6519CD98 WINDOW WINDOW_CONSTRUCTION_1 10.34 0.00     No5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13DC48DBCE-EA32-40CB-9A71-1A7B6519CD98 270.10 90.00 W
@@ -5683,8 +5683,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Equipment Summary

For: Entire Facility

-

Timestamp: 2023-12-28 - 20:22:29

+

Timestamp: 2024-01-02 + 18:16:53

Central Plant

@@ -5908,8 +5908,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: HVAC Sizing Summary

For: Entire Facility

-

Timestamp: 2023-12-28 - 20:22:29

+

Timestamp: 2024-01-02 + 18:16:53

Zone Sensible Cooling

@@ -6121,8 +6121,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: System Summary

For: Entire Facility

-

Timestamp: 2023-12-28 - 20:22:29

+

Timestamp: 2024-01-02 + 18:16:53

Economizer

@@ -6361,8 +6361,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Outdoor Air Summary

For: Entire Facility

-

Timestamp: 2023-12-28 - 20:22:29

+

Timestamp: 2024-01-02 + 18:16:53

Average Outdoor Air During Occupied Hours

@@ -6618,8 +6618,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Object Count Summary

For: Entire Facility

-

Timestamp: 2023-12-28 - 20:22:29

+

Timestamp: 2024-01-02 + 18:16:53

Surfaces by Class

@@ -6768,8 +6768,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Sensible Heat Gain Summary

For: Entire Facility

-

Timestamp: 2023-12-28 - 20:22:29

+

Timestamp: 2024-01-02 + 18:16:53

Annual Building Sensible Heat Gain Components

diff --git a/scripts/random_assignation.py b/scripts/random_assignation.py index c6d770e6..729a49ea 100644 --- a/scripts/random_assignation.py +++ b/scripts/random_assignation.py @@ -31,6 +31,14 @@ residential_systems_percentage = {'system 1 gas': 44, 'system 6 electricity': 0, 'system 8 gas': 44, 'system 8 electricity': 6} + +residential_new_systems_percentage = {'PV+ASHP+GasBoiler+TES': 100, + 'PV+ASHP+ElectricBoiler+TES': 0, + 'PV+GSHP+GasBoiler+TES': 0, + 'PV+GSHP+ElectricBoiler+TES': 0, + 'PV+WSHP+GasBoiler+TES': 0, + 'PV+WSHP+ElectricBoiler+TES': 0} + non_residential_systems_percentage = {'system 1 gas': 0, 'system 1 electricity': 0, 'system 2 gas': 0, @@ -96,7 +104,7 @@ def call_random(_buildings: [Building], _systems_percentage): total += number_of_buildings missing = 0 if total != len(_selected_buildings): - missing = len(_selected_buildings)-total + missing = len(_selected_buildings) - total if missing != 0: _systems_distribution[add_to]['number_of_buildings'] += missing _position = 0 @@ -106,7 +114,6 @@ def call_random(_buildings: [Building], _systems_percentage): _position += 1 return _buildings - # try: # print('[simulation start]') # input_path = Path('').resolve() @@ -156,4 +163,4 @@ def call_random(_buildings: [Building], _systems_percentage): # )[0] # energy_systems.append(system_archetype) # for building, energy_system in zip(city.buildings, energy_systems): -# building.energy_systems_archetype_name = energy_system \ No newline at end of file +# building.energy_systems_archetype_name = energy_system