From c362bdb8b161400b2396250bf86dd4caa04996e2 Mon Sep 17 00:00:00 2001
From: Saeed Ranjbar
Date: Thu, 28 Dec 2023 20:24:13 -0500
Subject: [PATCH] small modifications were made to the energy system importer
---
hub/city_model_structure/building.py | 53 +-
...ontreal_custom_energy_system_parameters.py | 11 +-
out_files/Montreal.idf | 418 +++---
out_files/Montreal_out.bnd | 2 +-
out_files/Montreal_out.eio | 2 +-
out_files/Montreal_out.end | 2 +-
out_files/Montreal_out.err | 6 +-
out_files/Montreal_out.eso | 2 +-
out_files/Montreal_out.expidf | 418 +++---
out_files/Montreal_out.mtr | 2 +-
out_files/Montreal_out.rvaudit | 6 +-
out_files/Montreal_out.shd | 1190 ++++++++---------
out_files/Montreal_tbl.csv | 288 ++--
out_files/Montreal_tbl.htm | 426 +++---
14 files changed, 1417 insertions(+), 1409 deletions(-)
diff --git a/hub/city_model_structure/building.py b/hub/city_model_structure/building.py
index 344ba391..345dc2fd 100644
--- a/hub/city_model_structure/building.py
+++ b/hub/city_model_structure/building.py
@@ -702,6 +702,7 @@ class Building(CityObject):
Get total electricity consumption for distribution and emission systems in J
return: dict
"""
+ _distribution_systems_electrical_consumption = {}
if len(self._distribution_systems_electrical_consumption) != 0:
return self._distribution_systems_electrical_consumption
_peak_load = self.heating_peak_load[cte.YEAR][0]
@@ -715,31 +716,33 @@ class Building(CityObject):
if self.energy_systems is None:
return self._distribution_systems_electrical_consumption
for energy_system in self.energy_systems:
- emission_system = energy_system.emission_systems.generic_emission_system
- parasitic_energy_consumption = 0
- if emission_system is not None:
- parasitic_energy_consumption = emission_system.parasitic_energy_consumption
- distribution_system = energy_system.distribution_systems.generic_distribution_system
- consumption_variable_flow = distribution_system.distribution_consumption_variable_flow
- for demand_type in energy_system.demand_types:
- if demand_type.lower() == cte.HEATING.lower():
- if _peak_load_type == cte.HEATING.lower():
- _consumption_fix_flow = distribution_system.distribution_consumption_fix_flow
- for heating_demand_key in self.heating_demand:
- _consumption = [0]*len(self.heating_demand[heating_demand_key])
- _demand = self.heating_demand[heating_demand_key]
- for i, _ in enumerate(_consumption):
- _consumption[i] += (parasitic_energy_consumption + consumption_variable_flow) * _demand[i]
- self._distribution_systems_electrical_consumption[heating_demand_key] = _consumption
- if demand_type.lower() == cte.COOLING.lower():
- if _peak_load_type == cte.COOLING.lower():
- _consumption_fix_flow = distribution_system.distribution_consumption_fix_flow
- for demand_key in self.cooling_demand:
- _consumption = self._distribution_systems_electrical_consumption[demand_key]
- _demand = self.cooling_demand[demand_key]
- for i, _ in enumerate(_consumption):
- _consumption[i] += (parasitic_energy_consumption + consumption_variable_flow) * _demand[i]
- self._distribution_systems_electrical_consumption[demand_key] = _consumption
+ distribution_systems = energy_system.distribution_systems
+ for distribution_system in distribution_systems:
+ emission_systems = distribution_system.emission_systems
+ parasitic_energy_consumption = 0
+ if emission_systems is not None:
+ for emission_system in emission_systems:
+ parasitic_energy_consumption += emission_system.parasitic_energy_consumption
+ consumption_variable_flow = distribution_system.distribution_consumption_variable_flow
+ for demand_type in energy_system.demand_types:
+ if demand_type.lower() == cte.HEATING.lower():
+ if _peak_load_type == cte.HEATING.lower():
+ _consumption_fix_flow = distribution_system.distribution_consumption_fix_flow
+ for heating_demand_key in self.heating_demand:
+ _consumption = [0]*len(self.heating_demand[heating_demand_key])
+ _demand = self.heating_demand[heating_demand_key]
+ for i, _ in enumerate(_consumption):
+ _consumption[i] += (parasitic_energy_consumption + consumption_variable_flow) * _demand[i]
+ self._distribution_systems_electrical_consumption[heating_demand_key] = _consumption
+ if demand_type.lower() == cte.COOLING.lower():
+ if _peak_load_type == cte.COOLING.lower():
+ _consumption_fix_flow = distribution_system.distribution_consumption_fix_flow
+ for demand_key in self.cooling_demand:
+ _consumption = self._distribution_systems_electrical_consumption[demand_key]
+ _demand = self.cooling_demand[demand_key]
+ for i, _ in enumerate(_consumption):
+ _consumption[i] += (parasitic_energy_consumption + consumption_variable_flow) * _demand[i]
+ self._distribution_systems_electrical_consumption[demand_key] = _consumption
for key, item in self._distribution_systems_electrical_consumption.items():
for i in range(0, len(item)):
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 1d574c4c..51165126 100644
--- a/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py
+++ b/hub/imports/energy_systems/montreal_custom_energy_system_parameters.py
@@ -131,10 +131,15 @@ class MontrealCustomEnergySystemParameters:
_distribution_system.distribution_consumption_variable_flow = \
archetype_distribution_system.distribution_consumption_variable_flow
_distribution_system.heat_losses = archetype_distribution_system.heat_losses
- _emission_system = None
+ _emission_systems = None
if archetype_distribution_system.emission_systems is not None:
- _emission_system = EmissionSystem()
- _distribution_system.emission_systems = [_emission_system]
+ _emission_systems = []
+ for archetype_emission_system in archetype_distribution_system.emission_systems:
+ _emission_system = EmissionSystem()
+ _emission_system.type = archetype_emission_system.type
+ _emission_system.parasitic_energy_consumption = archetype_emission_system.parasitic_energy_consumption
+ _emission_systems.append(_emission_system)
+ _distribution_system.emission_systems = _emission_systems
_distribution_systems.append(_distribution_system)
return _distribution_systems
diff --git a/out_files/Montreal.idf b/out_files/Montreal.idf
index d5055005..60eca2e2 100644
--- a/out_files/Montreal.idf
+++ b/out_files/Montreal.idf
@@ -1199,7 +1199,7 @@ ZONE,
Yes; !- Part of Total Floor Area
BUILDINGSURFACE:DETAILED,
- 672466a2-fd8b-48e2-a12b-2b6d13dc46ef, !- Name
+ 49a6a0d1-21fa-4174-a2e8-6e59f41be8b9, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
173347, !- Zone Name
@@ -1223,7 +1223,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 29aecaa4-5b2c-4250-9dcf-f072a6f957e9, !- Name
+ 6714f8ce-fbe1-41fa-8146-152344e45e89, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
173347, !- Zone Name
@@ -1247,7 +1247,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- d2694cc9-3dbe-4717-9750-66d7408f584c, !- Name
+ e9a776d7-c08a-4903-bdde-33a1b75c006f, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173347, !- Zone Name
@@ -1271,12 +1271,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- a6a2aa11-ebbd-43a9-b252-6fc4397e8081, !- Name
+ f4521949-b172-4b21-bf0b-6432aa6135a1, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173347, !- Zone Name
Surface, !- Outside Boundary Condition
- a6a2aa11-ebbd-43a9-b252-6fc4397e8081, !- Outside Boundary Condition Object
+ f4521949-b172-4b21-bf0b-6432aa6135a1, !- 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,
- 12650e00-dba9-4ec4-9c20-53d86d021a6d, !- Name
+ 06e83efc-71d1-45fe-85ea-e7ee9a7664b1, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173347, !- Zone Name
@@ -1319,12 +1319,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 06385373-1cad-49cf-b6c5-4941976df31e, !- Name
+ e8bf2a49-1558-41bc-96cb-123915d688bf, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173347, !- Zone Name
Surface, !- Outside Boundary Condition
- 06385373-1cad-49cf-b6c5-4941976df31e, !- Outside Boundary Condition Object
+ e8bf2a49-1558-41bc-96cb-123915d688bf, !- 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,
- 0207ba60-c2fb-4bc0-ae4d-423bba669056, !- Name
+ d6f1dc5c-00ea-4f85-aaa6-4d2c54bfa8a8, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
@@ -1373,7 +1373,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 6 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 01d13815-2ef5-4939-87d0-6eb66a6eef74, !- Name
+ a804ac39-e991-4fa7-8ebd-6e9de27c6449, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
@@ -1403,7 +1403,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 6 Zcoordinate
BUILDINGSURFACE:DETAILED,
- c9344243-bb60-434b-bbae-00a55242de52, !- Name
+ a0cc674e-7ff5-4e87-8d8b-d2879920f518, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
@@ -1427,7 +1427,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 59b89d19-7a3a-44a2-b16c-0f06ddd49440, !- Name
+ 6894ae2c-4de8-4004-b743-24810745043c, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
@@ -1451,7 +1451,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 3c075050-1588-4e73-a4a8-6a042dbc0278, !- Name
+ 8a44dcd0-5eaf-4ea2-83d6-e10cc7697fc1, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
@@ -1475,7 +1475,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 150a344c-f603-48b4-951f-96eb17d23d60, !- Name
+ 3476659a-7777-4217-879b-ec7411a9f8f4, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
@@ -1499,7 +1499,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 8634dc17-b8d8-4b49-989e-8079c194833b, !- Name
+ a987c29f-99c1-411a-9cc3-0afbb35d9ab2, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
@@ -1523,12 +1523,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 06ff86f4-0a29-4f47-871c-773f4fc12a85, !- Name
+ deb2faca-865f-4594-9474-dbc514c3e015, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
Surface, !- Outside Boundary Condition
- 06ff86f4-0a29-4f47-871c-773f4fc12a85, !- Outside Boundary Condition Object
+ deb2faca-865f-4594-9474-dbc514c3e015, !- 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,
- 8b189c8c-9c0f-4d6f-b370-db1b3364dc14, !- Name
+ 95977b63-da57-40d5-a214-4d2fabca5347, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1619,7 +1619,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 20 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 0e6a4045-a150-4949-a4ec-c4ef53e324da, !- Name
+ d6a7ed84-8e6c-4cb5-835c-1ada1608f8de, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1691,7 +1691,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 20 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 3e41bf94-7cf6-4888-8967-25b24f9dc668, !- Name
+ d29ed729-a377-4d42-8e37-86d29faa692b, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1715,7 +1715,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- e4461c89-d956-48d0-9146-f19e8660f0a5, !- Name
+ 1d1dbdbf-a442-426b-aba9-a6644ec6ccaf, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1739,7 +1739,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 4d0a880d-084d-4a1d-a39f-9f5fa319a6ea, !- Name
+ 9027ab96-d388-4204-9515-8638e09e0d23, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1763,7 +1763,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 9f31f68d-49db-487b-acd5-6c5a0ed86612, !- Name
+ d80e753d-3a26-4eda-90b8-b445fdd923b1, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1787,7 +1787,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 67679ef7-4689-4d8e-a167-1d714f76e1a3, !- Name
+ d2676432-8b98-4881-b152-c2993d54e04b, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1811,7 +1811,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 44b08664-f1c8-4296-99db-7be2e02c8254, !- Name
+ cabc4bc7-a75c-4989-aeda-0753936a5dee, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1835,7 +1835,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 5ce34bfc-24d0-4cb6-91e7-8652d7354f39, !- Name
+ 7c52c57c-7025-415d-a9b8-f5aaf8f58535, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1859,7 +1859,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- ff8e2017-074c-4f16-af3a-311410837eed, !- Name
+ 9de3270a-551d-407e-a8b2-0639ae103505, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1883,7 +1883,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- bf1f1f37-241c-42e3-b054-b0ff550f8635, !- Name
+ 197a0d24-9f0a-416b-ab79-18597f66c1ac, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1907,7 +1907,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 31cdd59b-48e0-406d-bee1-6046d43751b7, !- Name
+ fa41c2ed-457a-4e6b-9607-bda10b64a2ee, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1931,7 +1931,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 2ac4ca0b-4dbe-4166-9c39-fcdab475f3c0, !- Name
+ 6138df36-e729-49f2-b62f-4870fc39c64f, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1955,7 +1955,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- f67c279f-5341-4f00-a38a-cd4f391aadc1, !- Name
+ b1db9ae1-c1a3-41ab-9591-e8bd85e6e624, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1979,7 +1979,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- d997fcd7-8889-44d4-9cd4-9b562516ced9, !- Name
+ 7b0da88c-0b47-4d1a-b84e-aeb70e93020c, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2003,7 +2003,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 2b08c63b-0380-4d2a-8604-7fba958f3869, !- Name
+ dd970e33-a623-4ce7-aafb-8ed198b8ca1c, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2027,7 +2027,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 3f1daf72-41a2-4969-a152-ea48aef4dae2, !- Name
+ 02cdc36c-704d-47b9-afec-41f43222d0f4, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2051,7 +2051,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- a5f9c8e4-e0bd-4126-9f54-ba9a44fba8ea, !- Name
+ 2142ebb0-161e-43ee-b6de-a5dad97612cc, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2075,7 +2075,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 19c12e03-dbab-463e-8e67-561987f1bee2, !- Name
+ bf2a5a5a-2c66-46bb-9f00-08702ff2cea2, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2099,7 +2099,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- cffcc56f-2539-471f-86ac-5b1fb59d5864, !- Name
+ 1da28fd9-438e-44b3-8ab1-d14cd1dcd738, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2123,7 +2123,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 3bef2bfe-91b4-4660-b7d3-4cac5d9d97ae, !- Name
+ b227dda2-bc10-42a6-bfeb-b934b789f695, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2147,7 +2147,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 46864059-27d4-44ac-a655-c4cb8a693393, !- Name
+ d86fc62f-269c-45de-84ed-d5a196e2095e, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2171,7 +2171,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- d30f611a-272a-4cd3-b953-311557f2c325, !- Name
+ 8c214f58-37b7-4e41-afeb-b048bca834ae, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
@@ -2201,7 +2201,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 6 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 816c595d-f720-47ac-a04c-114371d74f98, !- Name
+ 37756d72-403d-46f2-9cde-4e412064828f, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
@@ -2231,7 +2231,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 6 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 59390046-7599-4186-a026-5c3a7dde88f5, !- Name
+ cdb601e5-0866-416b-89eb-d048e5859786, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
@@ -2255,7 +2255,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 4cddf35c-0cb9-43bd-b14f-a274ac5e2e97, !- Name
+ c0c8c17c-fc22-4b92-a946-702e972aa329, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
@@ -2279,12 +2279,12 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 0176c6e0-db9e-45ce-bb96-f4c7305d3006, !- Name
+ 1b24ca94-8734-4d2b-b6fd-e88558aed682, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
Surface, !- Outside Boundary Condition
- 0176c6e0-db9e-45ce-bb96-f4c7305d3006, !- Outside Boundary Condition Object
+ 1b24ca94-8734-4d2b-b6fd-e88558aed682, !- 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,
- f8bf4fc4-f1ac-4bed-a1dc-de3a22d5d029, !- Name
+ d280607f-5351-4a50-81cd-d03df7a28c0d, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
@@ -2327,7 +2327,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 9b94c26b-39f3-4336-9e7a-ac254d30d6ac, !- Name
+ befa0f66-abf7-4e7a-a02c-0b31babea113, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
@@ -2351,7 +2351,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 69d98ce1-163a-4688-bdd8-620d9e324aa0, !- Name
+ bef1b1ab-759c-483f-939c-bfca5b2118ef, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
@@ -2375,7 +2375,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- e6615a35-5d23-4a84-954c-4f36affa9a82, !- Name
+ e562fe09-b0c0-4242-8049-66a78d056bb6, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
176296, !- Zone Name
@@ -2399,7 +2399,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- a8b26e1f-5ca1-4d6b-8813-7fd1ac23040a, !- Name
+ 13da738a-2538-4fbe-a6ac-9e17a5a66381, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
176296, !- Zone Name
@@ -2423,7 +2423,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 8333827c-64d9-4384-908c-a52b523e0f4e, !- Name
+ bef3d9a2-b25f-44e4-b611-e021b6179865, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176296, !- Zone Name
@@ -2447,7 +2447,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 9dcc0e5d-d352-4f9d-aac7-ed1f95857686, !- Name
+ ec306a3c-7b56-44d5-a4de-2e6d6c180df8, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176296, !- Zone Name
@@ -2471,7 +2471,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 5a47fb83-cc5e-4e41-a966-473a78aa3d5a, !- Name
+ 955bdc8b-fadc-4dc9-9146-015e44f6d0f9, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176296, !- Zone Name
@@ -2495,7 +2495,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- a7f9a836-6648-4972-9a3d-cadf02c08396, !- Name
+ 74146306-5cc3-4df9-b2dd-4e2fe410da48, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176296, !- Zone Name
@@ -2519,7 +2519,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- b773b0ff-c402-4155-9d39-50317b682a7d, !- Name
+ 61be9590-ee2c-4510-a65e-9d9707059d72, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
@@ -2549,7 +2549,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 6 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 31854275-1131-465e-9f08-8b4ba45c944c, !- Name
+ 29aa4e15-ec14-45b9-be01-3968b1f66ba3, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
@@ -2579,7 +2579,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 6 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 642d4a50-d5e3-48c1-8cf3-c2cf24830304, !- Name
+ bf81a09d-7eb2-443c-9dbe-7ccf41e9e733, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
@@ -2603,7 +2603,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- f84e0874-b44e-4ff2-bc04-cb9797175003, !- Name
+ 910ec237-d19c-44d2-a0af-53394d66badb, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
@@ -2627,7 +2627,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- d7715fc0-fff0-49e8-bbf2-b214fb7657bd, !- Name
+ dc8b7a69-b843-43f8-810c-af6503e94abf, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
@@ -2651,7 +2651,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 15be4f13-5041-40da-828a-aa96f6a79f83, !- Name
+ dd09fb31-d077-415a-8a35-d4b8e4105f74, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
@@ -2675,12 +2675,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- cf1fffe1-0d40-458a-9fab-42bc6efef9e9, !- Name
+ ee425a30-d8ee-49ae-a2b1-23e47576e76c, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
Surface, !- Outside Boundary Condition
- cf1fffe1-0d40-458a-9fab-42bc6efef9e9, !- Outside Boundary Condition Object
+ ee425a30-d8ee-49ae-a2b1-23e47576e76c, !- 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,
- 51f929d1-6f74-4810-94b9-0b8f70d66803, !- Name
+ 3eb30793-160d-41d4-ad8a-36e1cff208c6, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
@@ -2723,7 +2723,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 783fedbd-3a04-4545-b9b4-8ae7c4eac526, !- Name
+ 2389dae8-0f83-4e21-8250-4e7dc4fe3025, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
178164, !- Zone Name
@@ -2747,7 +2747,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 8706c343-9590-4bd1-8b85-1cab22e3b38a, !- Name
+ d3620589-f605-42a2-8a8a-5a76a2147b39, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
178164, !- Zone Name
@@ -2771,7 +2771,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 2bcd823f-1c3e-4f9c-b84e-d718d5082f2c, !- Name
+ 74ca1532-4928-42e1-ae6c-111556837b7e, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
178164, !- Zone Name
@@ -2795,12 +2795,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- e107acd3-80a3-46c8-ab22-6303ce6b830f, !- Name
+ 2ba28a3d-41a2-4142-8333-ff3f43829c37, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
178164, !- Zone Name
Surface, !- Outside Boundary Condition
- e107acd3-80a3-46c8-ab22-6303ce6b830f, !- Outside Boundary Condition Object
+ 2ba28a3d-41a2-4142-8333-ff3f43829c37, !- 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,
- fa9c545c-e963-48be-b73f-0908f95dc1a8, !- Name
+ b9be6c6f-0afa-49ad-b01f-b622a8d5ab55, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
178164, !- Zone Name
@@ -2843,12 +2843,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 6e2347f3-cb34-4bd4-b7e0-90fa881924e0, !- Name
+ a4bbe0e0-ac85-41f6-bae0-458acd59e93c, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
178164, !- Zone Name
Surface, !- Outside Boundary Condition
- 6e2347f3-cb34-4bd4-b7e0-90fa881924e0, !- Outside Boundary Condition Object
+ a4bbe0e0-ac85-41f6-bae0-458acd59e93c, !- 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,
- 4a42ec2a-0326-4c00-b654-e47b54c6b560, !- Name
+ bdee1547-d4c7-40c6-9996-7530ef5a1a75, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
181359, !- Zone Name
@@ -2891,7 +2891,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- c6167ce0-8bdb-4e2c-bcfb-02a8e11213fa, !- Name
+ a4840188-8df8-4eaa-b5f2-ea27ad8da333, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
181359, !- Zone Name
@@ -2915,7 +2915,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 1e8da8fa-960f-48ea-bae6-c96886703feb, !- Name
+ ddcf0603-5da2-4bc2-8cd9-9c786ef507f8, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181359, !- Zone Name
@@ -2939,12 +2939,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- f1dd5477-48d5-4cb9-98b6-3905972d8ed6, !- Name
+ efac6c0b-d77a-473f-bc48-bdd80ec20b23, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181359, !- Zone Name
Surface, !- Outside Boundary Condition
- f1dd5477-48d5-4cb9-98b6-3905972d8ed6, !- Outside Boundary Condition Object
+ efac6c0b-d77a-473f-bc48-bdd80ec20b23, !- 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,
- 9a857e9e-0a4f-4341-86db-93c15d7327bf, !- Name
+ e5a6337e-9cdc-41fb-bce3-bf0e99836fb9, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181359, !- Zone Name
@@ -2987,12 +2987,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 6ca1b622-f6ac-46ae-afa6-f77f52ccdb9b, !- Name
+ df3e69b8-fc69-416b-9d2c-1d745df31efd, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181359, !- Zone Name
Surface, !- Outside Boundary Condition
- 6ca1b622-f6ac-46ae-afa6-f77f52ccdb9b, !- Outside Boundary Condition Object
+ df3e69b8-fc69-416b-9d2c-1d745df31efd, !- 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,
- 48ac80c6-b175-45e1-97e2-5bcf75c7d5da, !- Name
+ db7435cb-e409-4e62-8b46-061b84825686, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
181706, !- Zone Name
@@ -3038,7 +3038,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 5 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 6a43d3bf-4e99-4f40-b4e1-8237e6990e4f, !- Name
+ 1642787d-cdb7-40b1-96de-a28b6b1a6568, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
181706, !- Zone Name
@@ -3065,7 +3065,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 5 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 058d5268-0e0e-47de-90ba-fd670eafbe04, !- Name
+ 869a399d-0da3-4cde-ad63-60bfdac22071, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181706, !- Zone Name
@@ -3089,12 +3089,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 964c9d07-ab26-44d1-a193-dcdfe9e34bed, !- Name
+ d9827025-1b3e-4617-9371-9b0e29a8780b, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181706, !- Zone Name
Surface, !- Outside Boundary Condition
- 964c9d07-ab26-44d1-a193-dcdfe9e34bed, !- Outside Boundary Condition Object
+ d9827025-1b3e-4617-9371-9b0e29a8780b, !- 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,
- 04abb7bf-01b2-47c2-853a-397c11f9aeb3, !- Name
+ 6ed55f0d-f5cd-49c2-8f09-54d704a502fa, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181706, !- Zone Name
@@ -3137,7 +3137,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 5a472962-fd05-4257-adcc-5b11c96ec905, !- Name
+ dbabeafe-8c2d-40ef-a157-12f9ba741b94, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181706, !- Zone Name
@@ -3161,7 +3161,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 9ea75e4a-dbd8-4cb4-bf7f-e2b86a814504, !- Name
+ 690a4f44-19b1-4de4-9442-7b0128c1d064, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181706, !- Zone Name
@@ -3185,7 +3185,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 19b32df5-bd49-4f37-8737-c8b35c4d2e6f, !- Name
+ 667683e9-4698-4804-b300-2fe5e1e6e939, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
183144, !- Zone Name
@@ -3209,7 +3209,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 93c039b0-f217-4bee-86df-8f876ae8b18e, !- Name
+ db7db81a-75b9-413d-b49c-b589478d35e6, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
183144, !- Zone Name
@@ -3233,7 +3233,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 78eaefa8-107d-43db-8dbe-8e4f65ea1ab4, !- Name
+ 6a9b97e1-4df2-40cf-989e-da7dccb0c37f, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183144, !- Zone Name
@@ -3257,12 +3257,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- a4727b73-bfcc-4ed1-8b57-d61be82393e6, !- Name
+ a4693cfb-6e07-41dd-a6df-8d7d0f6ba3df, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183144, !- Zone Name
Surface, !- Outside Boundary Condition
- a4727b73-bfcc-4ed1-8b57-d61be82393e6, !- Outside Boundary Condition Object
+ a4693cfb-6e07-41dd-a6df-8d7d0f6ba3df, !- 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,
- ff2a5adf-5da5-4533-a9d5-099ff8c65ded, !- Name
+ 6e8c6aac-226b-4c91-952c-b33ef4dc8ce0, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183144, !- Zone Name
@@ -3305,12 +3305,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 626a04e5-2ae7-49e1-8ce8-6ed71f2b9a25, !- Name
+ b5a2b9c9-8d44-4989-be67-67a10674d72d, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183144, !- Zone Name
Surface, !- Outside Boundary Condition
- 626a04e5-2ae7-49e1-8ce8-6ed71f2b9a25, !- Outside Boundary Condition Object
+ b5a2b9c9-8d44-4989-be67-67a10674d72d, !- 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,
- fd51b87c-f1ba-41d8-a992-25f6c9517a81, !- Name
+ a6172439-540e-4d31-a8bc-32dd402924e1, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
183243, !- Zone Name
@@ -3353,7 +3353,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 7693e158-2471-4832-add0-a7d14c5cd21b, !- Name
+ 4a849183-d5e9-40d6-8a77-38b11b46433e, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
183243, !- Zone Name
@@ -3377,7 +3377,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 62dce0a4-304f-4e6c-9a57-d00e4334928b, !- Name
+ 531634db-2c61-44a3-80d9-94a5852e16ab, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183243, !- Zone Name
@@ -3401,12 +3401,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 2d86181d-b6d0-4963-b805-b062af09ed4d, !- Name
+ c851ca53-49e9-4a43-9f95-215079b2d5d7, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183243, !- Zone Name
Surface, !- Outside Boundary Condition
- 2d86181d-b6d0-4963-b805-b062af09ed4d, !- Outside Boundary Condition Object
+ c851ca53-49e9-4a43-9f95-215079b2d5d7, !- 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,
- b9a54d53-0695-468c-8e3c-e0d957c0fef6, !- Name
+ 5b3d56a5-f20b-4d2b-8f09-4a79f3ba9a13, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183243, !- Zone Name
@@ -3449,12 +3449,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 9a2f2953-76f5-4861-a4c8-da901d39c5aa, !- Name
+ 1f386a70-23f0-46a2-aeb6-322bed09b91f, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183243, !- Zone Name
Surface, !- Outside Boundary Condition
- 9a2f2953-76f5-4861-a4c8-da901d39c5aa, !- Outside Boundary Condition Object
+ 1f386a70-23f0-46a2-aeb6-322bed09b91f, !- 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,
- d2694cc9-3dbe-4717-9750-66d7408f584c window, !- Name
+ e9a776d7-c08a-4903-bdde-33a1b75c006f window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- d2694cc9-3dbe-4717-9750-66d7408f584c, !- Building Surface Name
+ e9a776d7-c08a-4903-bdde-33a1b75c006f, !- 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,
- 12650e00-dba9-4ec4-9c20-53d86d021a6d window, !- Name
+ 06e83efc-71d1-45fe-85ea-e7ee9a7664b1 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 12650e00-dba9-4ec4-9c20-53d86d021a6d, !- Building Surface Name
+ 06e83efc-71d1-45fe-85ea-e7ee9a7664b1, !- 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,
- c9344243-bb60-434b-bbae-00a55242de52 window, !- Name
+ a0cc674e-7ff5-4e87-8d8b-d2879920f518 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- c9344243-bb60-434b-bbae-00a55242de52, !- Building Surface Name
+ a0cc674e-7ff5-4e87-8d8b-d2879920f518, !- 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,
- 59b89d19-7a3a-44a2-b16c-0f06ddd49440 window, !- Name
+ 6894ae2c-4de8-4004-b743-24810745043c window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 59b89d19-7a3a-44a2-b16c-0f06ddd49440, !- Building Surface Name
+ 6894ae2c-4de8-4004-b743-24810745043c, !- 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,
- 3c075050-1588-4e73-a4a8-6a042dbc0278 window, !- Name
+ 8a44dcd0-5eaf-4ea2-83d6-e10cc7697fc1 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 3c075050-1588-4e73-a4a8-6a042dbc0278, !- Building Surface Name
+ 8a44dcd0-5eaf-4ea2-83d6-e10cc7697fc1, !- 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,
- 150a344c-f603-48b4-951f-96eb17d23d60 window, !- Name
+ 3476659a-7777-4217-879b-ec7411a9f8f4 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 150a344c-f603-48b4-951f-96eb17d23d60, !- Building Surface Name
+ 3476659a-7777-4217-879b-ec7411a9f8f4, !- 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,
- 8634dc17-b8d8-4b49-989e-8079c194833b window, !- Name
+ a987c29f-99c1-411a-9cc3-0afbb35d9ab2 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 8634dc17-b8d8-4b49-989e-8079c194833b, !- Building Surface Name
+ a987c29f-99c1-411a-9cc3-0afbb35d9ab2, !- 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,
- 3e41bf94-7cf6-4888-8967-25b24f9dc668 window, !- Name
+ d29ed729-a377-4d42-8e37-86d29faa692b window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 3e41bf94-7cf6-4888-8967-25b24f9dc668, !- Building Surface Name
+ d29ed729-a377-4d42-8e37-86d29faa692b, !- 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,
- e4461c89-d956-48d0-9146-f19e8660f0a5 window, !- Name
+ 1d1dbdbf-a442-426b-aba9-a6644ec6ccaf window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- e4461c89-d956-48d0-9146-f19e8660f0a5, !- Building Surface Name
+ 1d1dbdbf-a442-426b-aba9-a6644ec6ccaf, !- 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,
- 4d0a880d-084d-4a1d-a39f-9f5fa319a6ea window, !- Name
+ 9027ab96-d388-4204-9515-8638e09e0d23 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 4d0a880d-084d-4a1d-a39f-9f5fa319a6ea, !- Building Surface Name
+ 9027ab96-d388-4204-9515-8638e09e0d23, !- 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,
- 9f31f68d-49db-487b-acd5-6c5a0ed86612 window, !- Name
+ d80e753d-3a26-4eda-90b8-b445fdd923b1 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 9f31f68d-49db-487b-acd5-6c5a0ed86612, !- Building Surface Name
+ d80e753d-3a26-4eda-90b8-b445fdd923b1, !- 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,
- 67679ef7-4689-4d8e-a167-1d714f76e1a3 window, !- Name
+ d2676432-8b98-4881-b152-c2993d54e04b window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 67679ef7-4689-4d8e-a167-1d714f76e1a3, !- Building Surface Name
+ d2676432-8b98-4881-b152-c2993d54e04b, !- 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,
- 44b08664-f1c8-4296-99db-7be2e02c8254 window, !- Name
+ cabc4bc7-a75c-4989-aeda-0753936a5dee window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 44b08664-f1c8-4296-99db-7be2e02c8254, !- Building Surface Name
+ cabc4bc7-a75c-4989-aeda-0753936a5dee, !- 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,
- 5ce34bfc-24d0-4cb6-91e7-8652d7354f39 window, !- Name
+ 7c52c57c-7025-415d-a9b8-f5aaf8f58535 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 5ce34bfc-24d0-4cb6-91e7-8652d7354f39, !- Building Surface Name
+ 7c52c57c-7025-415d-a9b8-f5aaf8f58535, !- 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,
- ff8e2017-074c-4f16-af3a-311410837eed window, !- Name
+ 9de3270a-551d-407e-a8b2-0639ae103505 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- ff8e2017-074c-4f16-af3a-311410837eed, !- Building Surface Name
+ 9de3270a-551d-407e-a8b2-0639ae103505, !- 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,
- bf1f1f37-241c-42e3-b054-b0ff550f8635 window, !- Name
+ 197a0d24-9f0a-416b-ab79-18597f66c1ac window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- bf1f1f37-241c-42e3-b054-b0ff550f8635, !- Building Surface Name
+ 197a0d24-9f0a-416b-ab79-18597f66c1ac, !- 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,
- 31cdd59b-48e0-406d-bee1-6046d43751b7 window, !- Name
+ fa41c2ed-457a-4e6b-9607-bda10b64a2ee window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 31cdd59b-48e0-406d-bee1-6046d43751b7, !- Building Surface Name
+ fa41c2ed-457a-4e6b-9607-bda10b64a2ee, !- 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,
- 2ac4ca0b-4dbe-4166-9c39-fcdab475f3c0 window, !- Name
+ 6138df36-e729-49f2-b62f-4870fc39c64f window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 2ac4ca0b-4dbe-4166-9c39-fcdab475f3c0, !- Building Surface Name
+ 6138df36-e729-49f2-b62f-4870fc39c64f, !- 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,
- f67c279f-5341-4f00-a38a-cd4f391aadc1 window, !- Name
+ b1db9ae1-c1a3-41ab-9591-e8bd85e6e624 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- f67c279f-5341-4f00-a38a-cd4f391aadc1, !- Building Surface Name
+ b1db9ae1-c1a3-41ab-9591-e8bd85e6e624, !- 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,
- d997fcd7-8889-44d4-9cd4-9b562516ced9 window, !- Name
+ 7b0da88c-0b47-4d1a-b84e-aeb70e93020c window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- d997fcd7-8889-44d4-9cd4-9b562516ced9, !- Building Surface Name
+ 7b0da88c-0b47-4d1a-b84e-aeb70e93020c, !- 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,
- 2b08c63b-0380-4d2a-8604-7fba958f3869 window, !- Name
+ dd970e33-a623-4ce7-aafb-8ed198b8ca1c window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 2b08c63b-0380-4d2a-8604-7fba958f3869, !- Building Surface Name
+ dd970e33-a623-4ce7-aafb-8ed198b8ca1c, !- 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,
- 3f1daf72-41a2-4969-a152-ea48aef4dae2 window, !- Name
+ 02cdc36c-704d-47b9-afec-41f43222d0f4 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 3f1daf72-41a2-4969-a152-ea48aef4dae2, !- Building Surface Name
+ 02cdc36c-704d-47b9-afec-41f43222d0f4, !- 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,
- a5f9c8e4-e0bd-4126-9f54-ba9a44fba8ea window, !- Name
+ 2142ebb0-161e-43ee-b6de-a5dad97612cc window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- a5f9c8e4-e0bd-4126-9f54-ba9a44fba8ea, !- Building Surface Name
+ 2142ebb0-161e-43ee-b6de-a5dad97612cc, !- 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,
- 19c12e03-dbab-463e-8e67-561987f1bee2 window, !- Name
+ bf2a5a5a-2c66-46bb-9f00-08702ff2cea2 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 19c12e03-dbab-463e-8e67-561987f1bee2, !- Building Surface Name
+ bf2a5a5a-2c66-46bb-9f00-08702ff2cea2, !- 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,
- cffcc56f-2539-471f-86ac-5b1fb59d5864 window, !- Name
+ 1da28fd9-438e-44b3-8ab1-d14cd1dcd738 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- cffcc56f-2539-471f-86ac-5b1fb59d5864, !- Building Surface Name
+ 1da28fd9-438e-44b3-8ab1-d14cd1dcd738, !- 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,
- 3bef2bfe-91b4-4660-b7d3-4cac5d9d97ae window, !- Name
+ b227dda2-bc10-42a6-bfeb-b934b789f695 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 3bef2bfe-91b4-4660-b7d3-4cac5d9d97ae, !- Building Surface Name
+ b227dda2-bc10-42a6-bfeb-b934b789f695, !- 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,
- 46864059-27d4-44ac-a655-c4cb8a693393 window, !- Name
+ d86fc62f-269c-45de-84ed-d5a196e2095e window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 46864059-27d4-44ac-a655-c4cb8a693393, !- Building Surface Name
+ d86fc62f-269c-45de-84ed-d5a196e2095e, !- 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,
- 59390046-7599-4186-a026-5c3a7dde88f5 window, !- Name
+ cdb601e5-0866-416b-89eb-d048e5859786 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 59390046-7599-4186-a026-5c3a7dde88f5, !- Building Surface Name
+ cdb601e5-0866-416b-89eb-d048e5859786, !- 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,
- 4cddf35c-0cb9-43bd-b14f-a274ac5e2e97 window, !- Name
+ c0c8c17c-fc22-4b92-a946-702e972aa329 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 4cddf35c-0cb9-43bd-b14f-a274ac5e2e97, !- Building Surface Name
+ c0c8c17c-fc22-4b92-a946-702e972aa329, !- 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,
- f8bf4fc4-f1ac-4bed-a1dc-de3a22d5d029 window, !- Name
+ d280607f-5351-4a50-81cd-d03df7a28c0d window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- f8bf4fc4-f1ac-4bed-a1dc-de3a22d5d029, !- Building Surface Name
+ d280607f-5351-4a50-81cd-d03df7a28c0d, !- 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,
- 9b94c26b-39f3-4336-9e7a-ac254d30d6ac window, !- Name
+ befa0f66-abf7-4e7a-a02c-0b31babea113 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 9b94c26b-39f3-4336-9e7a-ac254d30d6ac, !- Building Surface Name
+ befa0f66-abf7-4e7a-a02c-0b31babea113, !- 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,
- 69d98ce1-163a-4688-bdd8-620d9e324aa0 window, !- Name
+ bef1b1ab-759c-483f-939c-bfca5b2118ef window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 69d98ce1-163a-4688-bdd8-620d9e324aa0, !- Building Surface Name
+ bef1b1ab-759c-483f-939c-bfca5b2118ef, !- 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,
- 8333827c-64d9-4384-908c-a52b523e0f4e window, !- Name
+ bef3d9a2-b25f-44e4-b611-e021b6179865 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 8333827c-64d9-4384-908c-a52b523e0f4e, !- Building Surface Name
+ bef3d9a2-b25f-44e4-b611-e021b6179865, !- 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,
- 9dcc0e5d-d352-4f9d-aac7-ed1f95857686 window, !- Name
+ ec306a3c-7b56-44d5-a4de-2e6d6c180df8 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 9dcc0e5d-d352-4f9d-aac7-ed1f95857686, !- Building Surface Name
+ ec306a3c-7b56-44d5-a4de-2e6d6c180df8, !- 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,
- 5a47fb83-cc5e-4e41-a966-473a78aa3d5a window, !- Name
+ 955bdc8b-fadc-4dc9-9146-015e44f6d0f9 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 5a47fb83-cc5e-4e41-a966-473a78aa3d5a, !- Building Surface Name
+ 955bdc8b-fadc-4dc9-9146-015e44f6d0f9, !- 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,
- a7f9a836-6648-4972-9a3d-cadf02c08396 window, !- Name
+ 74146306-5cc3-4df9-b2dd-4e2fe410da48 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- a7f9a836-6648-4972-9a3d-cadf02c08396, !- Building Surface Name
+ 74146306-5cc3-4df9-b2dd-4e2fe410da48, !- 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,
- 642d4a50-d5e3-48c1-8cf3-c2cf24830304 window, !- Name
+ bf81a09d-7eb2-443c-9dbe-7ccf41e9e733 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 642d4a50-d5e3-48c1-8cf3-c2cf24830304, !- Building Surface Name
+ bf81a09d-7eb2-443c-9dbe-7ccf41e9e733, !- 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,
- f84e0874-b44e-4ff2-bc04-cb9797175003 window, !- Name
+ 910ec237-d19c-44d2-a0af-53394d66badb window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- f84e0874-b44e-4ff2-bc04-cb9797175003, !- Building Surface Name
+ 910ec237-d19c-44d2-a0af-53394d66badb, !- 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,
- d7715fc0-fff0-49e8-bbf2-b214fb7657bd window, !- Name
+ dc8b7a69-b843-43f8-810c-af6503e94abf window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- d7715fc0-fff0-49e8-bbf2-b214fb7657bd, !- Building Surface Name
+ dc8b7a69-b843-43f8-810c-af6503e94abf, !- 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,
- 15be4f13-5041-40da-828a-aa96f6a79f83 window, !- Name
+ dd09fb31-d077-415a-8a35-d4b8e4105f74 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 15be4f13-5041-40da-828a-aa96f6a79f83, !- Building Surface Name
+ dd09fb31-d077-415a-8a35-d4b8e4105f74, !- 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,
- 51f929d1-6f74-4810-94b9-0b8f70d66803 window, !- Name
+ 3eb30793-160d-41d4-ad8a-36e1cff208c6 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 51f929d1-6f74-4810-94b9-0b8f70d66803, !- Building Surface Name
+ 3eb30793-160d-41d4-ad8a-36e1cff208c6, !- 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,
- 2bcd823f-1c3e-4f9c-b84e-d718d5082f2c window, !- Name
+ 74ca1532-4928-42e1-ae6c-111556837b7e window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 2bcd823f-1c3e-4f9c-b84e-d718d5082f2c, !- Building Surface Name
+ 74ca1532-4928-42e1-ae6c-111556837b7e, !- 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,
- fa9c545c-e963-48be-b73f-0908f95dc1a8 window, !- Name
+ b9be6c6f-0afa-49ad-b01f-b622a8d5ab55 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- fa9c545c-e963-48be-b73f-0908f95dc1a8, !- Building Surface Name
+ b9be6c6f-0afa-49ad-b01f-b622a8d5ab55, !- 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,
- 1e8da8fa-960f-48ea-bae6-c96886703feb window, !- Name
+ ddcf0603-5da2-4bc2-8cd9-9c786ef507f8 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 1e8da8fa-960f-48ea-bae6-c96886703feb, !- Building Surface Name
+ ddcf0603-5da2-4bc2-8cd9-9c786ef507f8, !- 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,
- 9a857e9e-0a4f-4341-86db-93c15d7327bf window, !- Name
+ e5a6337e-9cdc-41fb-bce3-bf0e99836fb9 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 9a857e9e-0a4f-4341-86db-93c15d7327bf, !- Building Surface Name
+ e5a6337e-9cdc-41fb-bce3-bf0e99836fb9, !- 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,
- 058d5268-0e0e-47de-90ba-fd670eafbe04 window, !- Name
+ 869a399d-0da3-4cde-ad63-60bfdac22071 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 058d5268-0e0e-47de-90ba-fd670eafbe04, !- Building Surface Name
+ 869a399d-0da3-4cde-ad63-60bfdac22071, !- 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,
- 04abb7bf-01b2-47c2-853a-397c11f9aeb3 window, !- Name
+ 6ed55f0d-f5cd-49c2-8f09-54d704a502fa window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 04abb7bf-01b2-47c2-853a-397c11f9aeb3, !- Building Surface Name
+ 6ed55f0d-f5cd-49c2-8f09-54d704a502fa, !- 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,
- 5a472962-fd05-4257-adcc-5b11c96ec905 window, !- Name
+ dbabeafe-8c2d-40ef-a157-12f9ba741b94 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 5a472962-fd05-4257-adcc-5b11c96ec905, !- Building Surface Name
+ dbabeafe-8c2d-40ef-a157-12f9ba741b94, !- 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,
- 9ea75e4a-dbd8-4cb4-bf7f-e2b86a814504 window, !- Name
+ 690a4f44-19b1-4de4-9442-7b0128c1d064 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 9ea75e4a-dbd8-4cb4-bf7f-e2b86a814504, !- Building Surface Name
+ 690a4f44-19b1-4de4-9442-7b0128c1d064, !- 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,
- 78eaefa8-107d-43db-8dbe-8e4f65ea1ab4 window, !- Name
+ 6a9b97e1-4df2-40cf-989e-da7dccb0c37f window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 78eaefa8-107d-43db-8dbe-8e4f65ea1ab4, !- Building Surface Name
+ 6a9b97e1-4df2-40cf-989e-da7dccb0c37f, !- 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,
- ff2a5adf-5da5-4533-a9d5-099ff8c65ded window, !- Name
+ 6e8c6aac-226b-4c91-952c-b33ef4dc8ce0 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- ff2a5adf-5da5-4533-a9d5-099ff8c65ded, !- Building Surface Name
+ 6e8c6aac-226b-4c91-952c-b33ef4dc8ce0, !- 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,
- 62dce0a4-304f-4e6c-9a57-d00e4334928b window, !- Name
+ 531634db-2c61-44a3-80d9-94a5852e16ab window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 62dce0a4-304f-4e6c-9a57-d00e4334928b, !- Building Surface Name
+ 531634db-2c61-44a3-80d9-94a5852e16ab, !- 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,
- b9a54d53-0695-468c-8e3c-e0d957c0fef6 window, !- Name
+ 5b3d56a5-f20b-4d2b-8f09-4a79f3ba9a13 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- b9a54d53-0695-468c-8e3c-e0d957c0fef6, !- Building Surface Name
+ 5b3d56a5-f20b-4d2b-8f09-4a79f3ba9a13, !- 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 261e9a26..9d5ad256 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 18:51
+Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22
! 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 25b6050e..01c06d3b 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 18:51
+Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22
! , 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 c1ef984c..7f3d8169 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 29.22sec
+EnergyPlus Completed Successfully-- 35 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 27.96sec
diff --git a/out_files/Montreal_out.err b/out_files/Montreal_out.err
index 052044f0..d60380fe 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 18:51,
+Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22,
** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no "Ground Temperatures" were input.
- ** ~~~ ** Found first in surface=672466A2-FD8B-48E2-A12B-2B6D13DC46EF
+ ** ~~~ ** Found first in surface=49A6A0D1-21FA-4174-A2E8-6E59F41BE8B9
** ~~~ ** 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 18:51,
************* 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 29.22sec
+ ************* EnergyPlus Completed Successfully-- 35 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 27.96sec
diff --git a/out_files/Montreal_out.eso b/out_files/Montreal_out.eso
index 9093199f..c67cc96c 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 18:51
+Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22
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 0b6615a5..3124341f 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,
- 672466a2-fd8b-48e2-a12b-2b6d13dc46ef, !- Name
+ 49a6a0d1-21fa-4174-a2e8-6e59f41be8b9, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
173347, !- Zone Name
@@ -1223,7 +1223,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 29aecaa4-5b2c-4250-9dcf-f072a6f957e9, !- Name
+ 6714f8ce-fbe1-41fa-8146-152344e45e89, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
173347, !- Zone Name
@@ -1247,7 +1247,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- d2694cc9-3dbe-4717-9750-66d7408f584c, !- Name
+ e9a776d7-c08a-4903-bdde-33a1b75c006f, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173347, !- Zone Name
@@ -1271,12 +1271,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- a6a2aa11-ebbd-43a9-b252-6fc4397e8081, !- Name
+ f4521949-b172-4b21-bf0b-6432aa6135a1, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173347, !- Zone Name
Surface, !- Outside Boundary Condition
- a6a2aa11-ebbd-43a9-b252-6fc4397e8081, !- Outside Boundary Condition Object
+ f4521949-b172-4b21-bf0b-6432aa6135a1, !- 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,
- 12650e00-dba9-4ec4-9c20-53d86d021a6d, !- Name
+ 06e83efc-71d1-45fe-85ea-e7ee9a7664b1, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173347, !- Zone Name
@@ -1319,12 +1319,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 06385373-1cad-49cf-b6c5-4941976df31e, !- Name
+ e8bf2a49-1558-41bc-96cb-123915d688bf, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173347, !- Zone Name
Surface, !- Outside Boundary Condition
- 06385373-1cad-49cf-b6c5-4941976df31e, !- Outside Boundary Condition Object
+ e8bf2a49-1558-41bc-96cb-123915d688bf, !- 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,
- 0207ba60-c2fb-4bc0-ae4d-423bba669056, !- Name
+ d6f1dc5c-00ea-4f85-aaa6-4d2c54bfa8a8, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
@@ -1373,7 +1373,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 6 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 01d13815-2ef5-4939-87d0-6eb66a6eef74, !- Name
+ a804ac39-e991-4fa7-8ebd-6e9de27c6449, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
@@ -1403,7 +1403,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 6 Zcoordinate
BUILDINGSURFACE:DETAILED,
- c9344243-bb60-434b-bbae-00a55242de52, !- Name
+ a0cc674e-7ff5-4e87-8d8b-d2879920f518, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
@@ -1427,7 +1427,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 59b89d19-7a3a-44a2-b16c-0f06ddd49440, !- Name
+ 6894ae2c-4de8-4004-b743-24810745043c, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
@@ -1451,7 +1451,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 3c075050-1588-4e73-a4a8-6a042dbc0278, !- Name
+ 8a44dcd0-5eaf-4ea2-83d6-e10cc7697fc1, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
@@ -1475,7 +1475,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 150a344c-f603-48b4-951f-96eb17d23d60, !- Name
+ 3476659a-7777-4217-879b-ec7411a9f8f4, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
@@ -1499,7 +1499,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 8634dc17-b8d8-4b49-989e-8079c194833b, !- Name
+ a987c29f-99c1-411a-9cc3-0afbb35d9ab2, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
@@ -1523,12 +1523,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 06ff86f4-0a29-4f47-871c-773f4fc12a85, !- Name
+ deb2faca-865f-4594-9474-dbc514c3e015, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
173348, !- Zone Name
Surface, !- Outside Boundary Condition
- 06ff86f4-0a29-4f47-871c-773f4fc12a85, !- Outside Boundary Condition Object
+ deb2faca-865f-4594-9474-dbc514c3e015, !- 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,
- 8b189c8c-9c0f-4d6f-b370-db1b3364dc14, !- Name
+ 95977b63-da57-40d5-a214-4d2fabca5347, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1619,7 +1619,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 20 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 0e6a4045-a150-4949-a4ec-c4ef53e324da, !- Name
+ d6a7ed84-8e6c-4cb5-835c-1ada1608f8de, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1691,7 +1691,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 20 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 3e41bf94-7cf6-4888-8967-25b24f9dc668, !- Name
+ d29ed729-a377-4d42-8e37-86d29faa692b, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1715,7 +1715,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- e4461c89-d956-48d0-9146-f19e8660f0a5, !- Name
+ 1d1dbdbf-a442-426b-aba9-a6644ec6ccaf, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1739,7 +1739,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 4d0a880d-084d-4a1d-a39f-9f5fa319a6ea, !- Name
+ 9027ab96-d388-4204-9515-8638e09e0d23, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1763,7 +1763,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 9f31f68d-49db-487b-acd5-6c5a0ed86612, !- Name
+ d80e753d-3a26-4eda-90b8-b445fdd923b1, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1787,7 +1787,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 67679ef7-4689-4d8e-a167-1d714f76e1a3, !- Name
+ d2676432-8b98-4881-b152-c2993d54e04b, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1811,7 +1811,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 44b08664-f1c8-4296-99db-7be2e02c8254, !- Name
+ cabc4bc7-a75c-4989-aeda-0753936a5dee, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1835,7 +1835,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 5ce34bfc-24d0-4cb6-91e7-8652d7354f39, !- Name
+ 7c52c57c-7025-415d-a9b8-f5aaf8f58535, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1859,7 +1859,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- ff8e2017-074c-4f16-af3a-311410837eed, !- Name
+ 9de3270a-551d-407e-a8b2-0639ae103505, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1883,7 +1883,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- bf1f1f37-241c-42e3-b054-b0ff550f8635, !- Name
+ 197a0d24-9f0a-416b-ab79-18597f66c1ac, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1907,7 +1907,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 31cdd59b-48e0-406d-bee1-6046d43751b7, !- Name
+ fa41c2ed-457a-4e6b-9607-bda10b64a2ee, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1931,7 +1931,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 2ac4ca0b-4dbe-4166-9c39-fcdab475f3c0, !- Name
+ 6138df36-e729-49f2-b62f-4870fc39c64f, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1955,7 +1955,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- f67c279f-5341-4f00-a38a-cd4f391aadc1, !- Name
+ b1db9ae1-c1a3-41ab-9591-e8bd85e6e624, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -1979,7 +1979,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- d997fcd7-8889-44d4-9cd4-9b562516ced9, !- Name
+ 7b0da88c-0b47-4d1a-b84e-aeb70e93020c, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2003,7 +2003,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 2b08c63b-0380-4d2a-8604-7fba958f3869, !- Name
+ dd970e33-a623-4ce7-aafb-8ed198b8ca1c, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2027,7 +2027,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 3f1daf72-41a2-4969-a152-ea48aef4dae2, !- Name
+ 02cdc36c-704d-47b9-afec-41f43222d0f4, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2051,7 +2051,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- a5f9c8e4-e0bd-4126-9f54-ba9a44fba8ea, !- Name
+ 2142ebb0-161e-43ee-b6de-a5dad97612cc, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2075,7 +2075,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 19c12e03-dbab-463e-8e67-561987f1bee2, !- Name
+ bf2a5a5a-2c66-46bb-9f00-08702ff2cea2, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2099,7 +2099,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- cffcc56f-2539-471f-86ac-5b1fb59d5864, !- Name
+ 1da28fd9-438e-44b3-8ab1-d14cd1dcd738, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2123,7 +2123,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 3bef2bfe-91b4-4660-b7d3-4cac5d9d97ae, !- Name
+ b227dda2-bc10-42a6-bfeb-b934b789f695, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2147,7 +2147,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 46864059-27d4-44ac-a655-c4cb8a693393, !- Name
+ d86fc62f-269c-45de-84ed-d5a196e2095e, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
175012, !- Zone Name
@@ -2171,7 +2171,7 @@ BUILDINGSURFACE:DETAILED,
15; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- d30f611a-272a-4cd3-b953-311557f2c325, !- Name
+ 8c214f58-37b7-4e41-afeb-b048bca834ae, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
@@ -2201,7 +2201,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 6 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 816c595d-f720-47ac-a04c-114371d74f98, !- Name
+ 37756d72-403d-46f2-9cde-4e412064828f, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
@@ -2231,7 +2231,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 6 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 59390046-7599-4186-a026-5c3a7dde88f5, !- Name
+ cdb601e5-0866-416b-89eb-d048e5859786, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
@@ -2255,7 +2255,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 4cddf35c-0cb9-43bd-b14f-a274ac5e2e97, !- Name
+ c0c8c17c-fc22-4b92-a946-702e972aa329, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
@@ -2279,12 +2279,12 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 0176c6e0-db9e-45ce-bb96-f4c7305d3006, !- Name
+ 1b24ca94-8734-4d2b-b6fd-e88558aed682, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
Surface, !- Outside Boundary Condition
- 0176c6e0-db9e-45ce-bb96-f4c7305d3006, !- Outside Boundary Condition Object
+ 1b24ca94-8734-4d2b-b6fd-e88558aed682, !- 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,
- f8bf4fc4-f1ac-4bed-a1dc-de3a22d5d029, !- Name
+ d280607f-5351-4a50-81cd-d03df7a28c0d, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
@@ -2327,7 +2327,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 9b94c26b-39f3-4336-9e7a-ac254d30d6ac, !- Name
+ befa0f66-abf7-4e7a-a02c-0b31babea113, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
@@ -2351,7 +2351,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 69d98ce1-163a-4688-bdd8-620d9e324aa0, !- Name
+ bef1b1ab-759c-483f-939c-bfca5b2118ef, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176261, !- Zone Name
@@ -2375,7 +2375,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- e6615a35-5d23-4a84-954c-4f36affa9a82, !- Name
+ e562fe09-b0c0-4242-8049-66a78d056bb6, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
176296, !- Zone Name
@@ -2399,7 +2399,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- a8b26e1f-5ca1-4d6b-8813-7fd1ac23040a, !- Name
+ 13da738a-2538-4fbe-a6ac-9e17a5a66381, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
176296, !- Zone Name
@@ -2423,7 +2423,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 8333827c-64d9-4384-908c-a52b523e0f4e, !- Name
+ bef3d9a2-b25f-44e4-b611-e021b6179865, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176296, !- Zone Name
@@ -2447,7 +2447,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 9dcc0e5d-d352-4f9d-aac7-ed1f95857686, !- Name
+ ec306a3c-7b56-44d5-a4de-2e6d6c180df8, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176296, !- Zone Name
@@ -2471,7 +2471,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 5a47fb83-cc5e-4e41-a966-473a78aa3d5a, !- Name
+ 955bdc8b-fadc-4dc9-9146-015e44f6d0f9, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176296, !- Zone Name
@@ -2495,7 +2495,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- a7f9a836-6648-4972-9a3d-cadf02c08396, !- Name
+ 74146306-5cc3-4df9-b2dd-4e2fe410da48, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
176296, !- Zone Name
@@ -2519,7 +2519,7 @@ BUILDINGSURFACE:DETAILED,
10; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- b773b0ff-c402-4155-9d39-50317b682a7d, !- Name
+ 61be9590-ee2c-4510-a65e-9d9707059d72, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
@@ -2549,7 +2549,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 6 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 31854275-1131-465e-9f08-8b4ba45c944c, !- Name
+ 29aa4e15-ec14-45b9-be01-3968b1f66ba3, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
@@ -2579,7 +2579,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 6 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 642d4a50-d5e3-48c1-8cf3-c2cf24830304, !- Name
+ bf81a09d-7eb2-443c-9dbe-7ccf41e9e733, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
@@ -2603,7 +2603,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- f84e0874-b44e-4ff2-bc04-cb9797175003, !- Name
+ 910ec237-d19c-44d2-a0af-53394d66badb, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
@@ -2627,7 +2627,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- d7715fc0-fff0-49e8-bbf2-b214fb7657bd, !- Name
+ dc8b7a69-b843-43f8-810c-af6503e94abf, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
@@ -2651,7 +2651,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 15be4f13-5041-40da-828a-aa96f6a79f83, !- Name
+ dd09fb31-d077-415a-8a35-d4b8e4105f74, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
@@ -2675,12 +2675,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- cf1fffe1-0d40-458a-9fab-42bc6efef9e9, !- Name
+ ee425a30-d8ee-49ae-a2b1-23e47576e76c, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
Surface, !- Outside Boundary Condition
- cf1fffe1-0d40-458a-9fab-42bc6efef9e9, !- Outside Boundary Condition Object
+ ee425a30-d8ee-49ae-a2b1-23e47576e76c, !- 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,
- 51f929d1-6f74-4810-94b9-0b8f70d66803, !- Name
+ 3eb30793-160d-41d4-ad8a-36e1cff208c6, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
177698, !- Zone Name
@@ -2723,7 +2723,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 783fedbd-3a04-4545-b9b4-8ae7c4eac526, !- Name
+ 2389dae8-0f83-4e21-8250-4e7dc4fe3025, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
178164, !- Zone Name
@@ -2747,7 +2747,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 8706c343-9590-4bd1-8b85-1cab22e3b38a, !- Name
+ d3620589-f605-42a2-8a8a-5a76a2147b39, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
178164, !- Zone Name
@@ -2771,7 +2771,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 2bcd823f-1c3e-4f9c-b84e-d718d5082f2c, !- Name
+ 74ca1532-4928-42e1-ae6c-111556837b7e, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
178164, !- Zone Name
@@ -2795,12 +2795,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- e107acd3-80a3-46c8-ab22-6303ce6b830f, !- Name
+ 2ba28a3d-41a2-4142-8333-ff3f43829c37, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
178164, !- Zone Name
Surface, !- Outside Boundary Condition
- e107acd3-80a3-46c8-ab22-6303ce6b830f, !- Outside Boundary Condition Object
+ 2ba28a3d-41a2-4142-8333-ff3f43829c37, !- 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,
- fa9c545c-e963-48be-b73f-0908f95dc1a8, !- Name
+ b9be6c6f-0afa-49ad-b01f-b622a8d5ab55, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
178164, !- Zone Name
@@ -2843,12 +2843,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 6e2347f3-cb34-4bd4-b7e0-90fa881924e0, !- Name
+ a4bbe0e0-ac85-41f6-bae0-458acd59e93c, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
178164, !- Zone Name
Surface, !- Outside Boundary Condition
- 6e2347f3-cb34-4bd4-b7e0-90fa881924e0, !- Outside Boundary Condition Object
+ a4bbe0e0-ac85-41f6-bae0-458acd59e93c, !- 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,
- 4a42ec2a-0326-4c00-b654-e47b54c6b560, !- Name
+ bdee1547-d4c7-40c6-9996-7530ef5a1a75, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
181359, !- Zone Name
@@ -2891,7 +2891,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- c6167ce0-8bdb-4e2c-bcfb-02a8e11213fa, !- Name
+ a4840188-8df8-4eaa-b5f2-ea27ad8da333, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
181359, !- Zone Name
@@ -2915,7 +2915,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 1e8da8fa-960f-48ea-bae6-c96886703feb, !- Name
+ ddcf0603-5da2-4bc2-8cd9-9c786ef507f8, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181359, !- Zone Name
@@ -2939,12 +2939,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- f1dd5477-48d5-4cb9-98b6-3905972d8ed6, !- Name
+ efac6c0b-d77a-473f-bc48-bdd80ec20b23, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181359, !- Zone Name
Surface, !- Outside Boundary Condition
- f1dd5477-48d5-4cb9-98b6-3905972d8ed6, !- Outside Boundary Condition Object
+ efac6c0b-d77a-473f-bc48-bdd80ec20b23, !- 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,
- 9a857e9e-0a4f-4341-86db-93c15d7327bf, !- Name
+ e5a6337e-9cdc-41fb-bce3-bf0e99836fb9, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181359, !- Zone Name
@@ -2987,12 +2987,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 6ca1b622-f6ac-46ae-afa6-f77f52ccdb9b, !- Name
+ df3e69b8-fc69-416b-9d2c-1d745df31efd, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181359, !- Zone Name
Surface, !- Outside Boundary Condition
- 6ca1b622-f6ac-46ae-afa6-f77f52ccdb9b, !- Outside Boundary Condition Object
+ df3e69b8-fc69-416b-9d2c-1d745df31efd, !- 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,
- 48ac80c6-b175-45e1-97e2-5bcf75c7d5da, !- Name
+ db7435cb-e409-4e62-8b46-061b84825686, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
181706, !- Zone Name
@@ -3038,7 +3038,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 5 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 6a43d3bf-4e99-4f40-b4e1-8237e6990e4f, !- Name
+ 1642787d-cdb7-40b1-96de-a28b6b1a6568, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
181706, !- Zone Name
@@ -3065,7 +3065,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 5 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 058d5268-0e0e-47de-90ba-fd670eafbe04, !- Name
+ 869a399d-0da3-4cde-ad63-60bfdac22071, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181706, !- Zone Name
@@ -3089,12 +3089,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 964c9d07-ab26-44d1-a193-dcdfe9e34bed, !- Name
+ d9827025-1b3e-4617-9371-9b0e29a8780b, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181706, !- Zone Name
Surface, !- Outside Boundary Condition
- 964c9d07-ab26-44d1-a193-dcdfe9e34bed, !- Outside Boundary Condition Object
+ d9827025-1b3e-4617-9371-9b0e29a8780b, !- 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,
- 04abb7bf-01b2-47c2-853a-397c11f9aeb3, !- Name
+ 6ed55f0d-f5cd-49c2-8f09-54d704a502fa, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181706, !- Zone Name
@@ -3137,7 +3137,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 5a472962-fd05-4257-adcc-5b11c96ec905, !- Name
+ dbabeafe-8c2d-40ef-a157-12f9ba741b94, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181706, !- Zone Name
@@ -3161,7 +3161,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 9ea75e4a-dbd8-4cb4-bf7f-e2b86a814504, !- Name
+ 690a4f44-19b1-4de4-9442-7b0128c1d064, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
181706, !- Zone Name
@@ -3185,7 +3185,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 19b32df5-bd49-4f37-8737-c8b35c4d2e6f, !- Name
+ 667683e9-4698-4804-b300-2fe5e1e6e939, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
183144, !- Zone Name
@@ -3209,7 +3209,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 93c039b0-f217-4bee-86df-8f876ae8b18e, !- Name
+ db7db81a-75b9-413d-b49c-b589478d35e6, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
183144, !- Zone Name
@@ -3233,7 +3233,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 78eaefa8-107d-43db-8dbe-8e4f65ea1ab4, !- Name
+ 6a9b97e1-4df2-40cf-989e-da7dccb0c37f, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183144, !- Zone Name
@@ -3257,12 +3257,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- a4727b73-bfcc-4ed1-8b57-d61be82393e6, !- Name
+ a4693cfb-6e07-41dd-a6df-8d7d0f6ba3df, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183144, !- Zone Name
Surface, !- Outside Boundary Condition
- a4727b73-bfcc-4ed1-8b57-d61be82393e6, !- Outside Boundary Condition Object
+ a4693cfb-6e07-41dd-a6df-8d7d0f6ba3df, !- 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,
- ff2a5adf-5da5-4533-a9d5-099ff8c65ded, !- Name
+ 6e8c6aac-226b-4c91-952c-b33ef4dc8ce0, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183144, !- Zone Name
@@ -3305,12 +3305,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 626a04e5-2ae7-49e1-8ce8-6ed71f2b9a25, !- Name
+ b5a2b9c9-8d44-4989-be67-67a10674d72d, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183144, !- Zone Name
Surface, !- Outside Boundary Condition
- 626a04e5-2ae7-49e1-8ce8-6ed71f2b9a25, !- Outside Boundary Condition Object
+ b5a2b9c9-8d44-4989-be67-67a10674d72d, !- 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,
- fd51b87c-f1ba-41d8-a992-25f6c9517a81, !- Name
+ a6172439-540e-4d31-a8bc-32dd402924e1, !- Name
floor, !- Surface Type
1981_1990_6, !- Construction Name
183243, !- Zone Name
@@ -3353,7 +3353,7 @@ BUILDINGSURFACE:DETAILED,
0; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 7693e158-2471-4832-add0-a7d14c5cd21b, !- Name
+ 4a849183-d5e9-40d6-8a77-38b11b46433e, !- Name
roof, !- Surface Type
1981_1990_6, !- Construction Name
183243, !- Zone Name
@@ -3377,7 +3377,7 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 62dce0a4-304f-4e6c-9a57-d00e4334928b, !- Name
+ 531634db-2c61-44a3-80d9-94a5852e16ab, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183243, !- Zone Name
@@ -3401,12 +3401,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 2d86181d-b6d0-4963-b805-b062af09ed4d, !- Name
+ c851ca53-49e9-4a43-9f95-215079b2d5d7, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183243, !- Zone Name
Surface, !- Outside Boundary Condition
- 2d86181d-b6d0-4963-b805-b062af09ed4d, !- Outside Boundary Condition Object
+ c851ca53-49e9-4a43-9f95-215079b2d5d7, !- 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,
- b9a54d53-0695-468c-8e3c-e0d957c0fef6, !- Name
+ 5b3d56a5-f20b-4d2b-8f09-4a79f3ba9a13, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183243, !- Zone Name
@@ -3449,12 +3449,12 @@ BUILDINGSURFACE:DETAILED,
9; !- Vertex 4 Zcoordinate
BUILDINGSURFACE:DETAILED,
- 9a2f2953-76f5-4861-a4c8-da901d39c5aa, !- Name
+ 1f386a70-23f0-46a2-aeb6-322bed09b91f, !- Name
wall, !- Surface Type
1981_1990_6, !- Construction Name
183243, !- Zone Name
Surface, !- Outside Boundary Condition
- 9a2f2953-76f5-4861-a4c8-da901d39c5aa, !- Outside Boundary Condition Object
+ 1f386a70-23f0-46a2-aeb6-322bed09b91f, !- 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,
- d2694cc9-3dbe-4717-9750-66d7408f584c window, !- Name
+ e9a776d7-c08a-4903-bdde-33a1b75c006f window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- d2694cc9-3dbe-4717-9750-66d7408f584c, !- Building Surface Name
+ e9a776d7-c08a-4903-bdde-33a1b75c006f, !- 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,
- 12650e00-dba9-4ec4-9c20-53d86d021a6d window, !- Name
+ 06e83efc-71d1-45fe-85ea-e7ee9a7664b1 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 12650e00-dba9-4ec4-9c20-53d86d021a6d, !- Building Surface Name
+ 06e83efc-71d1-45fe-85ea-e7ee9a7664b1, !- 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,
- c9344243-bb60-434b-bbae-00a55242de52 window, !- Name
+ a0cc674e-7ff5-4e87-8d8b-d2879920f518 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- c9344243-bb60-434b-bbae-00a55242de52, !- Building Surface Name
+ a0cc674e-7ff5-4e87-8d8b-d2879920f518, !- 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,
- 59b89d19-7a3a-44a2-b16c-0f06ddd49440 window, !- Name
+ 6894ae2c-4de8-4004-b743-24810745043c window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 59b89d19-7a3a-44a2-b16c-0f06ddd49440, !- Building Surface Name
+ 6894ae2c-4de8-4004-b743-24810745043c, !- 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,
- 3c075050-1588-4e73-a4a8-6a042dbc0278 window, !- Name
+ 8a44dcd0-5eaf-4ea2-83d6-e10cc7697fc1 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 3c075050-1588-4e73-a4a8-6a042dbc0278, !- Building Surface Name
+ 8a44dcd0-5eaf-4ea2-83d6-e10cc7697fc1, !- 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,
- 150a344c-f603-48b4-951f-96eb17d23d60 window, !- Name
+ 3476659a-7777-4217-879b-ec7411a9f8f4 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 150a344c-f603-48b4-951f-96eb17d23d60, !- Building Surface Name
+ 3476659a-7777-4217-879b-ec7411a9f8f4, !- 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,
- 8634dc17-b8d8-4b49-989e-8079c194833b window, !- Name
+ a987c29f-99c1-411a-9cc3-0afbb35d9ab2 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 8634dc17-b8d8-4b49-989e-8079c194833b, !- Building Surface Name
+ a987c29f-99c1-411a-9cc3-0afbb35d9ab2, !- 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,
- 3e41bf94-7cf6-4888-8967-25b24f9dc668 window, !- Name
+ d29ed729-a377-4d42-8e37-86d29faa692b window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 3e41bf94-7cf6-4888-8967-25b24f9dc668, !- Building Surface Name
+ d29ed729-a377-4d42-8e37-86d29faa692b, !- 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,
- e4461c89-d956-48d0-9146-f19e8660f0a5 window, !- Name
+ 1d1dbdbf-a442-426b-aba9-a6644ec6ccaf window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- e4461c89-d956-48d0-9146-f19e8660f0a5, !- Building Surface Name
+ 1d1dbdbf-a442-426b-aba9-a6644ec6ccaf, !- 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,
- 4d0a880d-084d-4a1d-a39f-9f5fa319a6ea window, !- Name
+ 9027ab96-d388-4204-9515-8638e09e0d23 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 4d0a880d-084d-4a1d-a39f-9f5fa319a6ea, !- Building Surface Name
+ 9027ab96-d388-4204-9515-8638e09e0d23, !- 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,
- 9f31f68d-49db-487b-acd5-6c5a0ed86612 window, !- Name
+ d80e753d-3a26-4eda-90b8-b445fdd923b1 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 9f31f68d-49db-487b-acd5-6c5a0ed86612, !- Building Surface Name
+ d80e753d-3a26-4eda-90b8-b445fdd923b1, !- 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,
- 67679ef7-4689-4d8e-a167-1d714f76e1a3 window, !- Name
+ d2676432-8b98-4881-b152-c2993d54e04b window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 67679ef7-4689-4d8e-a167-1d714f76e1a3, !- Building Surface Name
+ d2676432-8b98-4881-b152-c2993d54e04b, !- 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,
- 44b08664-f1c8-4296-99db-7be2e02c8254 window, !- Name
+ cabc4bc7-a75c-4989-aeda-0753936a5dee window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 44b08664-f1c8-4296-99db-7be2e02c8254, !- Building Surface Name
+ cabc4bc7-a75c-4989-aeda-0753936a5dee, !- 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,
- 5ce34bfc-24d0-4cb6-91e7-8652d7354f39 window, !- Name
+ 7c52c57c-7025-415d-a9b8-f5aaf8f58535 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 5ce34bfc-24d0-4cb6-91e7-8652d7354f39, !- Building Surface Name
+ 7c52c57c-7025-415d-a9b8-f5aaf8f58535, !- 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,
- ff8e2017-074c-4f16-af3a-311410837eed window, !- Name
+ 9de3270a-551d-407e-a8b2-0639ae103505 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- ff8e2017-074c-4f16-af3a-311410837eed, !- Building Surface Name
+ 9de3270a-551d-407e-a8b2-0639ae103505, !- 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,
- bf1f1f37-241c-42e3-b054-b0ff550f8635 window, !- Name
+ 197a0d24-9f0a-416b-ab79-18597f66c1ac window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- bf1f1f37-241c-42e3-b054-b0ff550f8635, !- Building Surface Name
+ 197a0d24-9f0a-416b-ab79-18597f66c1ac, !- 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,
- 31cdd59b-48e0-406d-bee1-6046d43751b7 window, !- Name
+ fa41c2ed-457a-4e6b-9607-bda10b64a2ee window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 31cdd59b-48e0-406d-bee1-6046d43751b7, !- Building Surface Name
+ fa41c2ed-457a-4e6b-9607-bda10b64a2ee, !- 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,
- 2ac4ca0b-4dbe-4166-9c39-fcdab475f3c0 window, !- Name
+ 6138df36-e729-49f2-b62f-4870fc39c64f window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 2ac4ca0b-4dbe-4166-9c39-fcdab475f3c0, !- Building Surface Name
+ 6138df36-e729-49f2-b62f-4870fc39c64f, !- 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,
- f67c279f-5341-4f00-a38a-cd4f391aadc1 window, !- Name
+ b1db9ae1-c1a3-41ab-9591-e8bd85e6e624 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- f67c279f-5341-4f00-a38a-cd4f391aadc1, !- Building Surface Name
+ b1db9ae1-c1a3-41ab-9591-e8bd85e6e624, !- 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,
- d997fcd7-8889-44d4-9cd4-9b562516ced9 window, !- Name
+ 7b0da88c-0b47-4d1a-b84e-aeb70e93020c window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- d997fcd7-8889-44d4-9cd4-9b562516ced9, !- Building Surface Name
+ 7b0da88c-0b47-4d1a-b84e-aeb70e93020c, !- 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,
- 2b08c63b-0380-4d2a-8604-7fba958f3869 window, !- Name
+ dd970e33-a623-4ce7-aafb-8ed198b8ca1c window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 2b08c63b-0380-4d2a-8604-7fba958f3869, !- Building Surface Name
+ dd970e33-a623-4ce7-aafb-8ed198b8ca1c, !- 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,
- 3f1daf72-41a2-4969-a152-ea48aef4dae2 window, !- Name
+ 02cdc36c-704d-47b9-afec-41f43222d0f4 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 3f1daf72-41a2-4969-a152-ea48aef4dae2, !- Building Surface Name
+ 02cdc36c-704d-47b9-afec-41f43222d0f4, !- 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,
- a5f9c8e4-e0bd-4126-9f54-ba9a44fba8ea window, !- Name
+ 2142ebb0-161e-43ee-b6de-a5dad97612cc window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- a5f9c8e4-e0bd-4126-9f54-ba9a44fba8ea, !- Building Surface Name
+ 2142ebb0-161e-43ee-b6de-a5dad97612cc, !- 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,
- 19c12e03-dbab-463e-8e67-561987f1bee2 window, !- Name
+ bf2a5a5a-2c66-46bb-9f00-08702ff2cea2 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 19c12e03-dbab-463e-8e67-561987f1bee2, !- Building Surface Name
+ bf2a5a5a-2c66-46bb-9f00-08702ff2cea2, !- 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,
- cffcc56f-2539-471f-86ac-5b1fb59d5864 window, !- Name
+ 1da28fd9-438e-44b3-8ab1-d14cd1dcd738 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- cffcc56f-2539-471f-86ac-5b1fb59d5864, !- Building Surface Name
+ 1da28fd9-438e-44b3-8ab1-d14cd1dcd738, !- 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,
- 3bef2bfe-91b4-4660-b7d3-4cac5d9d97ae window, !- Name
+ b227dda2-bc10-42a6-bfeb-b934b789f695 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 3bef2bfe-91b4-4660-b7d3-4cac5d9d97ae, !- Building Surface Name
+ b227dda2-bc10-42a6-bfeb-b934b789f695, !- 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,
- 46864059-27d4-44ac-a655-c4cb8a693393 window, !- Name
+ d86fc62f-269c-45de-84ed-d5a196e2095e window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 46864059-27d4-44ac-a655-c4cb8a693393, !- Building Surface Name
+ d86fc62f-269c-45de-84ed-d5a196e2095e, !- 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,
- 59390046-7599-4186-a026-5c3a7dde88f5 window, !- Name
+ cdb601e5-0866-416b-89eb-d048e5859786 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 59390046-7599-4186-a026-5c3a7dde88f5, !- Building Surface Name
+ cdb601e5-0866-416b-89eb-d048e5859786, !- 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,
- 4cddf35c-0cb9-43bd-b14f-a274ac5e2e97 window, !- Name
+ c0c8c17c-fc22-4b92-a946-702e972aa329 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 4cddf35c-0cb9-43bd-b14f-a274ac5e2e97, !- Building Surface Name
+ c0c8c17c-fc22-4b92-a946-702e972aa329, !- 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,
- f8bf4fc4-f1ac-4bed-a1dc-de3a22d5d029 window, !- Name
+ d280607f-5351-4a50-81cd-d03df7a28c0d window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- f8bf4fc4-f1ac-4bed-a1dc-de3a22d5d029, !- Building Surface Name
+ d280607f-5351-4a50-81cd-d03df7a28c0d, !- 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,
- 9b94c26b-39f3-4336-9e7a-ac254d30d6ac window, !- Name
+ befa0f66-abf7-4e7a-a02c-0b31babea113 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 9b94c26b-39f3-4336-9e7a-ac254d30d6ac, !- Building Surface Name
+ befa0f66-abf7-4e7a-a02c-0b31babea113, !- 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,
- 69d98ce1-163a-4688-bdd8-620d9e324aa0 window, !- Name
+ bef1b1ab-759c-483f-939c-bfca5b2118ef window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 69d98ce1-163a-4688-bdd8-620d9e324aa0, !- Building Surface Name
+ bef1b1ab-759c-483f-939c-bfca5b2118ef, !- 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,
- 8333827c-64d9-4384-908c-a52b523e0f4e window, !- Name
+ bef3d9a2-b25f-44e4-b611-e021b6179865 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 8333827c-64d9-4384-908c-a52b523e0f4e, !- Building Surface Name
+ bef3d9a2-b25f-44e4-b611-e021b6179865, !- 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,
- 9dcc0e5d-d352-4f9d-aac7-ed1f95857686 window, !- Name
+ ec306a3c-7b56-44d5-a4de-2e6d6c180df8 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 9dcc0e5d-d352-4f9d-aac7-ed1f95857686, !- Building Surface Name
+ ec306a3c-7b56-44d5-a4de-2e6d6c180df8, !- 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,
- 5a47fb83-cc5e-4e41-a966-473a78aa3d5a window, !- Name
+ 955bdc8b-fadc-4dc9-9146-015e44f6d0f9 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 5a47fb83-cc5e-4e41-a966-473a78aa3d5a, !- Building Surface Name
+ 955bdc8b-fadc-4dc9-9146-015e44f6d0f9, !- 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,
- a7f9a836-6648-4972-9a3d-cadf02c08396 window, !- Name
+ 74146306-5cc3-4df9-b2dd-4e2fe410da48 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- a7f9a836-6648-4972-9a3d-cadf02c08396, !- Building Surface Name
+ 74146306-5cc3-4df9-b2dd-4e2fe410da48, !- 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,
- 642d4a50-d5e3-48c1-8cf3-c2cf24830304 window, !- Name
+ bf81a09d-7eb2-443c-9dbe-7ccf41e9e733 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 642d4a50-d5e3-48c1-8cf3-c2cf24830304, !- Building Surface Name
+ bf81a09d-7eb2-443c-9dbe-7ccf41e9e733, !- 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,
- f84e0874-b44e-4ff2-bc04-cb9797175003 window, !- Name
+ 910ec237-d19c-44d2-a0af-53394d66badb window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- f84e0874-b44e-4ff2-bc04-cb9797175003, !- Building Surface Name
+ 910ec237-d19c-44d2-a0af-53394d66badb, !- 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,
- d7715fc0-fff0-49e8-bbf2-b214fb7657bd window, !- Name
+ dc8b7a69-b843-43f8-810c-af6503e94abf window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- d7715fc0-fff0-49e8-bbf2-b214fb7657bd, !- Building Surface Name
+ dc8b7a69-b843-43f8-810c-af6503e94abf, !- 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,
- 15be4f13-5041-40da-828a-aa96f6a79f83 window, !- Name
+ dd09fb31-d077-415a-8a35-d4b8e4105f74 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 15be4f13-5041-40da-828a-aa96f6a79f83, !- Building Surface Name
+ dd09fb31-d077-415a-8a35-d4b8e4105f74, !- 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,
- 51f929d1-6f74-4810-94b9-0b8f70d66803 window, !- Name
+ 3eb30793-160d-41d4-ad8a-36e1cff208c6 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 51f929d1-6f74-4810-94b9-0b8f70d66803, !- Building Surface Name
+ 3eb30793-160d-41d4-ad8a-36e1cff208c6, !- 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,
- 2bcd823f-1c3e-4f9c-b84e-d718d5082f2c window, !- Name
+ 74ca1532-4928-42e1-ae6c-111556837b7e window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 2bcd823f-1c3e-4f9c-b84e-d718d5082f2c, !- Building Surface Name
+ 74ca1532-4928-42e1-ae6c-111556837b7e, !- 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,
- fa9c545c-e963-48be-b73f-0908f95dc1a8 window, !- Name
+ b9be6c6f-0afa-49ad-b01f-b622a8d5ab55 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- fa9c545c-e963-48be-b73f-0908f95dc1a8, !- Building Surface Name
+ b9be6c6f-0afa-49ad-b01f-b622a8d5ab55, !- 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,
- 1e8da8fa-960f-48ea-bae6-c96886703feb window, !- Name
+ ddcf0603-5da2-4bc2-8cd9-9c786ef507f8 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 1e8da8fa-960f-48ea-bae6-c96886703feb, !- Building Surface Name
+ ddcf0603-5da2-4bc2-8cd9-9c786ef507f8, !- 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,
- 9a857e9e-0a4f-4341-86db-93c15d7327bf window, !- Name
+ e5a6337e-9cdc-41fb-bce3-bf0e99836fb9 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 9a857e9e-0a4f-4341-86db-93c15d7327bf, !- Building Surface Name
+ e5a6337e-9cdc-41fb-bce3-bf0e99836fb9, !- 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,
- 058d5268-0e0e-47de-90ba-fd670eafbe04 window, !- Name
+ 869a399d-0da3-4cde-ad63-60bfdac22071 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 058d5268-0e0e-47de-90ba-fd670eafbe04, !- Building Surface Name
+ 869a399d-0da3-4cde-ad63-60bfdac22071, !- 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,
- 04abb7bf-01b2-47c2-853a-397c11f9aeb3 window, !- Name
+ 6ed55f0d-f5cd-49c2-8f09-54d704a502fa window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 04abb7bf-01b2-47c2-853a-397c11f9aeb3, !- Building Surface Name
+ 6ed55f0d-f5cd-49c2-8f09-54d704a502fa, !- 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,
- 5a472962-fd05-4257-adcc-5b11c96ec905 window, !- Name
+ dbabeafe-8c2d-40ef-a157-12f9ba741b94 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 5a472962-fd05-4257-adcc-5b11c96ec905, !- Building Surface Name
+ dbabeafe-8c2d-40ef-a157-12f9ba741b94, !- 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,
- 9ea75e4a-dbd8-4cb4-bf7f-e2b86a814504 window, !- Name
+ 690a4f44-19b1-4de4-9442-7b0128c1d064 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 9ea75e4a-dbd8-4cb4-bf7f-e2b86a814504, !- Building Surface Name
+ 690a4f44-19b1-4de4-9442-7b0128c1d064, !- 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,
- 78eaefa8-107d-43db-8dbe-8e4f65ea1ab4 window, !- Name
+ 6a9b97e1-4df2-40cf-989e-da7dccb0c37f window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 78eaefa8-107d-43db-8dbe-8e4f65ea1ab4, !- Building Surface Name
+ 6a9b97e1-4df2-40cf-989e-da7dccb0c37f, !- 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,
- ff2a5adf-5da5-4533-a9d5-099ff8c65ded window, !- Name
+ 6e8c6aac-226b-4c91-952c-b33ef4dc8ce0 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- ff2a5adf-5da5-4533-a9d5-099ff8c65ded, !- Building Surface Name
+ 6e8c6aac-226b-4c91-952c-b33ef4dc8ce0, !- 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,
- 62dce0a4-304f-4e6c-9a57-d00e4334928b window, !- Name
+ 531634db-2c61-44a3-80d9-94a5852e16ab window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- 62dce0a4-304f-4e6c-9a57-d00e4334928b, !- Building Surface Name
+ 531634db-2c61-44a3-80d9-94a5852e16ab, !- 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,
- b9a54d53-0695-468c-8e3c-e0d957c0fef6 window, !- Name
+ 5b3d56a5-f20b-4d2b-8f09-4a79f3ba9a13 window, !- Name
Window, !- Surface Type
window_construction_1, !- Construction Name
- b9a54d53-0695-468c-8e3c-e0d957c0fef6, !- Building Surface Name
+ 5b3d56a5-f20b-4d2b-8f09-4a79f3ba9a13, !- 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 bf4d946a..e13162de 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 18:51
+Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22
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 3ceb3391..ca2853d3 100644
--- a/out_files/Montreal_out.rvaudit
+++ b/out_files/Montreal_out.rvaudit
@@ -1,13 +1,13 @@
ReadVarsESO
- processing:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_012988.rvi
+ processing:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_e958fe.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.41sec
+ ReadVars Run Time=00hr 00min 3.11sec
ReadVarsESO program completed successfully.
ReadVarsESO
- processing:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_012988.mvi
+ processing:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_e958fe.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
diff --git a/out_files/Montreal_out.shd b/out_files/Montreal_out.shd
index dcc95302..838995b8 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=D2694CC9-3DBE-4717-9750-66D7408F584C is used as Receiving Surface in calculations and is convex.
+Surface=E9A776D7-C08A-4903-BDDE-33A1B75C006F is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=4
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504
+..Surface=CDB601E5-0866-416B-89EB-D048E5859786
+..Surface=C0C8C17C-FC22-4B92-A946-702E972AA329
+..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8
+..Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=D2694CC9-3DBE-4717-9750-66D7408F584C WINDOW
+....Surface=E9A776D7-C08A-4903-BDDE-33A1B75C006F WINDOW
==================================
-Surface=D2694CC9-3DBE-4717-9750-66D7408F584C WINDOW is not used as Receiving Surface in calculations.
+Surface=E9A776D7-C08A-4903-BDDE-33A1B75C006F 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=A6A2AA11-EBBD-43A9-B252-6FC4397E8081 is not used as Receiving Surface in calculations.
+Surface=F4521949-B172-4B21-BF0B-6432AA6135A1 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=12650E00-DBA9-4EC4-9C20-53D86D021A6D is used as Receiving Surface in calculations and is convex.
+Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=10
-..Surface=5CE34BFC-24D0-4CB6-91E7-8652D7354F39
-..Surface=BF1F1F37-241C-42E3-B054-B0FF550F8635
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=FA9C545C-E963-48BE-B73F-0908F95DC1A8
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=12650E00-DBA9-4EC4-9C20-53D86D021A6D WINDOW
+....Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 WINDOW
==================================
-Surface=12650E00-DBA9-4EC4-9C20-53D86D021A6D WINDOW is not used as Receiving Surface in calculations.
+Surface=06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 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=06385373-1CAD-49CF-B6C5-4941976DF31E is not used as Receiving Surface in calculations.
+Surface=E8BF2A49-1558-41BC-96CB-123915D688BF 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=672466A2-FD8B-48E2-A12B-2B6D13DC46EF is not used as Receiving Surface in calculations.
+Surface=49A6A0D1-21FA-4174-A2E8-6E59F41BE8B9 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=29AECAA4-5B2C-4250-9DCF-F072A6F957E9 is used as Receiving Surface in calculations and is convex.
+Surface=6714F8CE-FBE1-41FA-8146-152344E45E89 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=11
-..Surface=5CE34BFC-24D0-4CB6-91E7-8652D7354F39
-..Surface=BF1F1F37-241C-42E3-B054-B0FF550F8635
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97
-..Surface=F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029
+..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
Number of back surfaces=0
Number of receiving sub surfaces=0
==================================
-Surface=C9344243-BB60-434B-BBAE-00A55242DE52 is used as Receiving Surface in calculations and is convex.
+Surface=A0CC674E-7FF5-4E87-8D8B-D2879920F518 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=3
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504
+..Surface=CDB601E5-0866-416B-89EB-D048E5859786
+..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8
+..Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=C9344243-BB60-434B-BBAE-00A55242DE52 WINDOW
+....Surface=A0CC674E-7FF5-4E87-8D8B-D2879920F518 WINDOW
==================================
-Surface=C9344243-BB60-434B-BBAE-00A55242DE52 WINDOW is not used as Receiving Surface in calculations.
+Surface=A0CC674E-7FF5-4E87-8D8B-D2879920F518 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=59B89D19-7A3A-44A2-B16C-0F06DDD49440 is used as Receiving Surface in calculations and is convex.
+Surface=6894AE2C-4DE8-4004-B743-24810745043C is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=2
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504
+..Surface=CDB601E5-0866-416B-89EB-D048E5859786
+..Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=59B89D19-7A3A-44A2-B16C-0F06DDD49440 WINDOW
+....Surface=6894AE2C-4DE8-4004-B743-24810745043C WINDOW
==================================
-Surface=59B89D19-7A3A-44A2-B16C-0F06DDD49440 WINDOW is not used as Receiving Surface in calculations.
+Surface=6894AE2C-4DE8-4004-B743-24810745043C 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=3C075050-1588-4E73-A4A8-6A042DBC0278 is used as Receiving Surface in calculations and is convex.
+Surface=8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=6
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=642D4A50-D5E3-48C1-8CF3-C2CF24830304
-..Surface=5A472962-FD05-4257-ADCC-5B11C96EC905
-..Surface=9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=3C075050-1588-4E73-A4A8-6A042DBC0278 WINDOW
+....Surface=8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 WINDOW
==================================
-Surface=3C075050-1588-4E73-A4A8-6A042DBC0278 WINDOW is not used as Receiving Surface in calculations.
+Surface=8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 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=150A344C-F603-48B4-951F-96EB17D23D60 is used as Receiving Surface in calculations and is convex.
+Surface=3476659A-7777-4217-879B-EC7411A9F8F4 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=10
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=15BE4F13-5041-40DA-828A-AA96F6A79F83
-..Surface=9A857E9E-0A4F-4341-86DB-93C15D7327BF
-..Surface=04ABB7BF-01B2-47C2-853A-397C11F9AEB3
-..Surface=5A472962-FD05-4257-ADCC-5B11C96EC905
-..Surface=9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504
-..Surface=FF2A5ADF-5DA5-4533-A9D5-099FF8C65DED
-..Surface=B9A54D53-0695-468C-8E3C-E0D957C0FEF6
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=150A344C-F603-48B4-951F-96EB17D23D60 WINDOW
+....Surface=3476659A-7777-4217-879B-EC7411A9F8F4 WINDOW
==================================
-Surface=150A344C-F603-48B4-951F-96EB17D23D60 WINDOW is not used as Receiving Surface in calculations.
+Surface=3476659A-7777-4217-879B-EC7411A9F8F4 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=8634DC17-B8D8-4B49-989E-8079C194833B is used as Receiving Surface in calculations and is convex.
+Surface=A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=7
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=8634DC17-B8D8-4B49-989E-8079C194833B WINDOW
+....Surface=A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 WINDOW
==================================
-Surface=8634DC17-B8D8-4B49-989E-8079C194833B WINDOW is not used as Receiving Surface in calculations.
+Surface=A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 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=06FF86F4-0A29-4F47-871C-773F4FC12A85 is not used as Receiving Surface in calculations.
+Surface=DEB2FACA-865F-4594-9474-DBC514C3E015 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=0207BA60-C2FB-4BC0-AE4D-423BBA669056 is not used as Receiving Surface in calculations.
+Surface=D6F1DC5C-00EA-4F85-AAA6-4D2C54BFA8A8 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=01D13815-2EF5-4939-87D0-6EB66A6EEF74 is used as Receiving Surface in calculations and is convex.
+Surface=A804AC39-E991-4FA7-8EBD-6E9DE27C6449 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=10
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97
-..Surface=F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
+..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
Number of back surfaces=0
Number of receiving sub surfaces=0
==================================
-Surface=3E41BF94-7CF6-4888-8967-25B24F9DC668 is used as Receiving Surface in calculations and is convex.
+Surface=D29ED729-A377-4D42-8E37-86D29FAA692B is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=2
-..Surface=E4461C89-D956-48D0-9146-F19E8660F0A5
-..Surface=9F31F68D-49DB-487B-ACD5-6C5A0ED86612
+..Surface=1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF
+..Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=3E41BF94-7CF6-4888-8967-25B24F9DC668 WINDOW
+....Surface=D29ED729-A377-4D42-8E37-86D29FAA692B WINDOW
==================================
-Surface=3E41BF94-7CF6-4888-8967-25B24F9DC668 WINDOW is not used as Receiving Surface in calculations.
+Surface=D29ED729-A377-4D42-8E37-86D29FAA692B 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=E4461C89-D956-48D0-9146-F19E8660F0A5 is used as Receiving Surface in calculations and is convex.
+Surface=1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=4
-..Surface=3E41BF94-7CF6-4888-8967-25B24F9DC668
-..Surface=15BE4F13-5041-40DA-828A-AA96F6A79F83
-..Surface=9A857E9E-0A4F-4341-86DB-93C15D7327BF
-..Surface=B9A54D53-0695-468C-8E3C-E0D957C0FEF6
+..Surface=D29ED729-A377-4D42-8E37-86D29FAA692B
+..Surface=DD09FB31-D077-415A-8A35-D4B8E4105F74
+..Surface=E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9
+..Surface=5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=E4461C89-D956-48D0-9146-F19E8660F0A5 WINDOW
+....Surface=1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF WINDOW
==================================
-Surface=E4461C89-D956-48D0-9146-F19E8660F0A5 WINDOW is not used as Receiving Surface in calculations.
+Surface=1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF 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=4D0A880D-084D-4A1D-A39F-9F5FA319A6EA is used as Receiving Surface in calculations and is convex.
+Surface=9027AB96-D388-4204-9515-8638E09E0D23 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=2
-..Surface=9F31F68D-49DB-487B-ACD5-6C5A0ED86612
-..Surface=FF8E2017-074C-4F16-AF3A-311410837EED
+..Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1
+..Surface=9DE3270A-551D-407E-A8B2-0639AE103505
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=4D0A880D-084D-4A1D-A39F-9F5FA319A6EA WINDOW
+....Surface=9027AB96-D388-4204-9515-8638E09E0D23 WINDOW
==================================
-Surface=4D0A880D-084D-4A1D-A39F-9F5FA319A6EA WINDOW is not used as Receiving Surface in calculations.
+Surface=9027AB96-D388-4204-9515-8638E09E0D23 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=9F31F68D-49DB-487B-ACD5-6C5A0ED86612 is used as Receiving Surface in calculations and is convex.
+Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=6
-..Surface=3E41BF94-7CF6-4888-8967-25B24F9DC668
-..Surface=4D0A880D-084D-4A1D-A39F-9F5FA319A6EA
-..Surface=15BE4F13-5041-40DA-828A-AA96F6A79F83
-..Surface=9A857E9E-0A4F-4341-86DB-93C15D7327BF
-..Surface=FF2A5ADF-5DA5-4533-A9D5-099FF8C65DED
-..Surface=B9A54D53-0695-468C-8E3C-E0D957C0FEF6
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=9F31F68D-49DB-487B-ACD5-6C5A0ED86612 WINDOW
+....Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 WINDOW
==================================
-Surface=9F31F68D-49DB-487B-ACD5-6C5A0ED86612 WINDOW is not used as Receiving Surface in calculations.
+Surface=D80E753D-3A26-4EDA-90B8-B445FDD923B1 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=67679EF7-4689-4D8E-A167-1D714F76E1A3 is used as Receiving Surface in calculations and is convex.
+Surface=D2676432-8B98-4881-B152-C2993D54E04B is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=1
-..Surface=44B08664-F1C8-4296-99DB-7BE2E02C8254
+..Surface=CABC4BC7-A75C-4989-AEDA-0753936A5DEE
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=67679EF7-4689-4D8E-A167-1D714F76E1A3 WINDOW
+....Surface=D2676432-8B98-4881-B152-C2993D54E04B WINDOW
==================================
-Surface=67679EF7-4689-4D8E-A167-1D714F76E1A3 WINDOW is not used as Receiving Surface in calculations.
+Surface=D2676432-8B98-4881-B152-C2993D54E04B 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=44B08664-F1C8-4296-99DB-7BE2E02C8254 is used as Receiving Surface in calculations and is convex.
+Surface=CABC4BC7-A75C-4989-AEDA-0753936A5DEE is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=1
-..Surface=67679EF7-4689-4D8E-A167-1D714F76E1A3
+..Surface=D2676432-8B98-4881-B152-C2993D54E04B
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=44B08664-F1C8-4296-99DB-7BE2E02C8254 WINDOW
+....Surface=CABC4BC7-A75C-4989-AEDA-0753936A5DEE WINDOW
==================================
-Surface=44B08664-F1C8-4296-99DB-7BE2E02C8254 WINDOW is not used as Receiving Surface in calculations.
+Surface=CABC4BC7-A75C-4989-AEDA-0753936A5DEE 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=5CE34BFC-24D0-4CB6-91E7-8652D7354F39 is used as Receiving Surface in calculations and is convex.
+Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=8
-..Surface=12650E00-DBA9-4EC4-9C20-53D86D021A6D
-..Surface=FF8E2017-074C-4F16-AF3A-311410837EED
-..Surface=31CDD59B-48E0-406D-BEE1-6046D43751B7
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=5A47FB83-CC5E-4E41-A966-473A78AA3D5A
-..Surface=FA9C545C-E963-48BE-B73F-0908F95DC1A8
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=5CE34BFC-24D0-4CB6-91E7-8652D7354F39 WINDOW
+....Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 WINDOW
==================================
-Surface=5CE34BFC-24D0-4CB6-91E7-8652D7354F39 WINDOW is not used as Receiving Surface in calculations.
+Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535 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=FF8E2017-074C-4F16-AF3A-311410837EED is used as Receiving Surface in calculations and is convex.
+Surface=9DE3270A-551D-407E-A8B2-0639AE103505 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=2
-..Surface=4D0A880D-084D-4A1D-A39F-9F5FA319A6EA
-..Surface=5CE34BFC-24D0-4CB6-91E7-8652D7354F39
+..Surface=9027AB96-D388-4204-9515-8638E09E0D23
+..Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=FF8E2017-074C-4F16-AF3A-311410837EED WINDOW
+....Surface=9DE3270A-551D-407E-A8B2-0639AE103505 WINDOW
==================================
-Surface=FF8E2017-074C-4F16-AF3A-311410837EED WINDOW is not used as Receiving Surface in calculations.
+Surface=9DE3270A-551D-407E-A8B2-0639AE103505 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=BF1F1F37-241C-42E3-B054-B0FF550F8635 is used as Receiving Surface in calculations and is convex.
+Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=7
-..Surface=12650E00-DBA9-4EC4-9C20-53D86D021A6D
-..Surface=31CDD59B-48E0-406D-BEE1-6046D43751B7
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=5A47FB83-CC5E-4E41-A966-473A78AA3D5A
-..Surface=FA9C545C-E963-48BE-B73F-0908F95DC1A8
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=BF1F1F37-241C-42E3-B054-B0FF550F8635 WINDOW
+....Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC WINDOW
==================================
-Surface=BF1F1F37-241C-42E3-B054-B0FF550F8635 WINDOW is not used as Receiving Surface in calculations.
+Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC 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=31CDD59B-48E0-406D-BEE1-6046D43751B7 is used as Receiving Surface in calculations and is convex.
+Surface=FA41C2ED-457A-4E6B-9607-BDA10B64A2EE is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=2
-..Surface=5CE34BFC-24D0-4CB6-91E7-8652D7354F39
-..Surface=BF1F1F37-241C-42E3-B054-B0FF550F8635
+..Surface=7C52C57C-7025-415D-A9B8-F5AAF8F58535
+..Surface=197A0D24-9F0A-416B-AB79-18597F66C1AC
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=31CDD59B-48E0-406D-BEE1-6046D43751B7 WINDOW
+....Surface=FA41C2ED-457A-4E6B-9607-BDA10B64A2EE WINDOW
==================================
-Surface=31CDD59B-48E0-406D-BEE1-6046D43751B7 WINDOW is not used as Receiving Surface in calculations.
+Surface=FA41C2ED-457A-4E6B-9607-BDA10B64A2EE 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=2AC4CA0B-4DBE-4166-9C39-FCDAB475F3C0 is used as Receiving Surface in calculations and is convex.
+Surface=6138DF36-E729-49F2-B62F-4870FC39C64F is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=3
-..Surface=F67C279F-5341-4F00-A38A-CD4F391AADC1
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=5A47FB83-CC5E-4E41-A966-473A78AA3D5A
+..Surface=B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624
+..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8
+..Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=2AC4CA0B-4DBE-4166-9C39-FCDAB475F3C0 WINDOW
+....Surface=6138DF36-E729-49F2-B62F-4870FC39C64F WINDOW
==================================
-Surface=2AC4CA0B-4DBE-4166-9C39-FCDAB475F3C0 WINDOW is not used as Receiving Surface in calculations.
+Surface=6138DF36-E729-49F2-B62F-4870FC39C64F 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=F67C279F-5341-4F00-A38A-CD4F391AADC1 is used as Receiving Surface in calculations and is convex.
+Surface=B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=3
-..Surface=2AC4CA0B-4DBE-4166-9C39-FCDAB475F3C0
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=5A47FB83-CC5E-4E41-A966-473A78AA3D5A
+..Surface=6138DF36-E729-49F2-B62F-4870FC39C64F
+..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8
+..Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=F67C279F-5341-4F00-A38A-CD4F391AADC1 WINDOW
+....Surface=B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 WINDOW
==================================
-Surface=F67C279F-5341-4F00-A38A-CD4F391AADC1 WINDOW is not used as Receiving Surface in calculations.
+Surface=B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 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=D997FCD7-8889-44D4-9CD4-9B562516CED9 is used as Receiving Surface in calculations and is convex.
+Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=16
-..Surface=12650E00-DBA9-4EC4-9C20-53D86D021A6D
-..Surface=8634DC17-B8D8-4B49-989E-8079C194833B
-..Surface=2B08C63B-0380-4D2A-8604-7FBA958F3869
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029
-..Surface=9B94C26B-39F3-4336-9E7A-AC254D30D6AC
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=5A47FB83-CC5E-4E41-A966-473A78AA3D5A
-..Surface=15BE4F13-5041-40DA-828A-AA96F6A79F83
-..Surface=FA9C545C-E963-48BE-B73F-0908F95DC1A8
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9 WINDOW
+....Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C WINDOW
==================================
-Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9 WINDOW is not used as Receiving Surface in calculations.
+Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C 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=2B08C63B-0380-4D2A-8604-7FBA958F3869 is used as Receiving Surface in calculations and is convex.
+Surface=DD970E33-A623-4CE7-AAFB-8ED198B8CA1C is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=3
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=5A47FB83-CC5E-4E41-A966-473A78AA3D5A
+..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C
+..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8
+..Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=2B08C63B-0380-4D2A-8604-7FBA958F3869 WINDOW
+....Surface=DD970E33-A623-4CE7-AAFB-8ED198B8CA1C WINDOW
==================================
-Surface=2B08C63B-0380-4D2A-8604-7FBA958F3869 WINDOW is not used as Receiving Surface in calculations.
+Surface=DD970E33-A623-4CE7-AAFB-8ED198B8CA1C 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=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2 is used as Receiving Surface in calculations and is convex.
+Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=15
-..Surface=12650E00-DBA9-4EC4-9C20-53D86D021A6D
-..Surface=8634DC17-B8D8-4B49-989E-8079C194833B
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029
-..Surface=9B94C26B-39F3-4336-9E7A-AC254D30D6AC
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=5A47FB83-CC5E-4E41-A966-473A78AA3D5A
-..Surface=15BE4F13-5041-40DA-828A-AA96F6A79F83
-..Surface=FA9C545C-E963-48BE-B73F-0908F95DC1A8
-..Surface=9A857E9E-0A4F-4341-86DB-93C15D7327BF
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2 WINDOW
+....Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 WINDOW
==================================
-Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2 WINDOW is not used as Receiving Surface in calculations.
+Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4 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=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA is used as Receiving Surface in calculations and is convex.
+Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=11
-..Surface=8634DC17-B8D8-4B49-989E-8079C194833B
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=15BE4F13-5041-40DA-828A-AA96F6A79F83
-..Surface=9A857E9E-0A4F-4341-86DB-93C15D7327BF
-..Surface=04ABB7BF-01B2-47C2-853A-397C11F9AEB3
-..Surface=5A472962-FD05-4257-ADCC-5B11C96EC905
-..Surface=9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504
-..Surface=FF2A5ADF-5DA5-4533-A9D5-099FF8C65DED
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA WINDOW
+....Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC WINDOW
==================================
-Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA WINDOW is not used as Receiving Surface in calculations.
+Surface=2142EBB0-161E-43EE-B6DE-A5DAD97612CC 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=19C12E03-DBAB-463E-8E67-561987F1BEE2 is used as Receiving Surface in calculations and is convex.
+Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=18
-..Surface=12650E00-DBA9-4EC4-9C20-53D86D021A6D
-..Surface=3C075050-1588-4E73-A4A8-6A042DBC0278
-..Surface=150A344C-F603-48B4-951F-96EB17D23D60
-..Surface=8634DC17-B8D8-4B49-989E-8079C194833B
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=5A47FB83-CC5E-4E41-A966-473A78AA3D5A
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2 WINDOW
+....Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 WINDOW
==================================
-Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2 WINDOW is not used as Receiving Surface in calculations.
+Surface=BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 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=CFFCC56F-2539-471F-86AC-5B1FB59D5864 is used as Receiving Surface in calculations and is convex.
+Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=14
-..Surface=12650E00-DBA9-4EC4-9C20-53D86D021A6D
-..Surface=3C075050-1588-4E73-A4A8-6A042DBC0278
-..Surface=150A344C-F603-48B4-951F-96EB17D23D60
-..Surface=8634DC17-B8D8-4B49-989E-8079C194833B
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864 WINDOW
+....Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 WINDOW
==================================
-Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864 WINDOW is not used as Receiving Surface in calculations.
+Surface=1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 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=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE is used as Receiving Surface in calculations and is convex.
+Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=17
-..Surface=12650E00-DBA9-4EC4-9C20-53D86D021A6D
-..Surface=3C075050-1588-4E73-A4A8-6A042DBC0278
-..Surface=150A344C-F603-48B4-951F-96EB17D23D60
-..Surface=8634DC17-B8D8-4B49-989E-8079C194833B
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=5A47FB83-CC5E-4E41-A966-473A78AA3D5A
-..Surface=F84E0874-B44E-4FF2-BC04-CB9797175003
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE WINDOW
+....Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 WINDOW
==================================
-Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE WINDOW is not used as Receiving Surface in calculations.
+Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695 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=46864059-27D4-44AC-A655-C4CB8A693393 is used as Receiving Surface in calculations and is convex.
+Surface=D86FC62F-269C-45DE-84ED-D5A196E2095E is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=1
-..Surface=F84E0874-B44E-4FF2-BC04-CB9797175003
+..Surface=910EC237-D19C-44D2-A0AF-53394D66BADB
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=46864059-27D4-44AC-A655-C4CB8A693393 WINDOW
+....Surface=D86FC62F-269C-45DE-84ED-D5A196E2095E WINDOW
==================================
-Surface=46864059-27D4-44AC-A655-C4CB8A693393 WINDOW is not used as Receiving Surface in calculations.
+Surface=D86FC62F-269C-45DE-84ED-D5A196E2095E 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=8B189C8C-9C0F-4D6F-B370-DB1B3364DC14 is not used as Receiving Surface in calculations.
+Surface=95977B63-DA57-40D5-A214-4D2FABCA5347 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=0E6A4045-A150-4949-A4EC-C4EF53E324DA is used as Receiving Surface in calculations and is non-convex.
+Surface=D6A7ED84-8E6C-4CB5-835C-1ADA1608F8DE 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=59390046-7599-4186-A026-5C3A7DDE88F5 is used as Receiving Surface in calculations and is convex.
+Surface=CDB601E5-0866-416B-89EB-D048E5859786 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=14
-..Surface=D2694CC9-3DBE-4717-9750-66D7408F584C
-..Surface=C9344243-BB60-434B-BBAE-00A55242DE52
-..Surface=59B89D19-7A3A-44A2-B16C-0F06DDD49440
-..Surface=5CE34BFC-24D0-4CB6-91E7-8652D7354F39
-..Surface=BF1F1F37-241C-42E3-B054-B0FF550F8635
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=59390046-7599-4186-A026-5C3A7DDE88F5 WINDOW
+....Surface=CDB601E5-0866-416B-89EB-D048E5859786 WINDOW
==================================
-Surface=59390046-7599-4186-A026-5C3A7DDE88F5 WINDOW is not used as Receiving Surface in calculations.
+Surface=CDB601E5-0866-416B-89EB-D048E5859786 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=4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97 is used as Receiving Surface in calculations and is convex.
+Surface=C0C8C17C-FC22-4B92-A946-702E972AA329 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=5
-..Surface=D2694CC9-3DBE-4717-9750-66D7408F584C
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=2BCD823F-1C3E-4F9C-B84E-D718D5082F2C
-..Surface=9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97 WINDOW
+....Surface=C0C8C17C-FC22-4B92-A946-702E972AA329 WINDOW
==================================
-Surface=4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97 WINDOW is not used as Receiving Surface in calculations.
+Surface=C0C8C17C-FC22-4B92-A946-702E972AA329 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=0176C6E0-DB9E-45CE-BB96-F4C7305D3006 is not used as Receiving Surface in calculations.
+Surface=1B24CA94-8734-4D2B-B6FD-E88558AED682 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=F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029 is used as Receiving Surface in calculations and is convex.
+Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=9
-..Surface=12650E00-DBA9-4EC4-9C20-53D86D021A6D
-..Surface=5CE34BFC-24D0-4CB6-91E7-8652D7354F39
-..Surface=BF1F1F37-241C-42E3-B054-B0FF550F8635
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029 WINDOW
+....Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D WINDOW
==================================
-Surface=F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029 WINDOW is not used as Receiving Surface in calculations.
+Surface=D280607F-5351-4A50-81CD-D03DF7A28C0D 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=9B94C26B-39F3-4336-9E7A-AC254D30D6AC is used as Receiving Surface in calculations and is convex.
+Surface=BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=4
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=8333827C-64D9-4384-908C-A52B523E0F4E
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
+..Surface=7B0DA88C-0B47-4D1A-B84E-AEB70E93020C
+..Surface=02CDC36C-704D-47B9-AFEC-41F43222D0F4
+..Surface=BEF3D9A2-B25F-44E4-B611-E021B6179865
+..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=9B94C26B-39F3-4336-9E7A-AC254D30D6AC WINDOW
+....Surface=BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113 WINDOW
==================================
-Surface=9B94C26B-39F3-4336-9E7A-AC254D30D6AC WINDOW is not used as Receiving Surface in calculations.
+Surface=BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113 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=69D98CE1-163A-4688-BDD8-620D9E324AA0 is used as Receiving Surface in calculations and is convex.
+Surface=BEF1B1AB-759C-483F-939C-BFCA5B2118EF 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=69D98CE1-163A-4688-BDD8-620D9E324AA0 WINDOW
+....Surface=BEF1B1AB-759C-483F-939C-BFCA5B2118EF WINDOW
==================================
-Surface=69D98CE1-163A-4688-BDD8-620D9E324AA0 WINDOW is not used as Receiving Surface in calculations.
+Surface=BEF1B1AB-759C-483F-939C-BFCA5B2118EF 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=D30F611A-272A-4CD3-B953-311557F2C325 is not used as Receiving Surface in calculations.
+Surface=8C214F58-37B7-4E41-AFEB-B048BCA834AE 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=816C595D-F720-47AC-A04C-114371D74F98 is used as Receiving Surface in calculations and is non-convex.
+Surface=37756D72-403D-46F2-9CDE-4E412064828F is used as Receiving Surface in calculations and is non-convex.
Number of general casting surfaces=7
-..Surface=5CE34BFC-24D0-4CB6-91E7-8652D7354F39
-..Surface=BF1F1F37-241C-42E3-B054-B0FF550F8635
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
+..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
Number of back surfaces=0
Number of receiving sub surfaces=0
==================================
-Surface=8333827C-64D9-4384-908C-A52B523E0F4E is used as Receiving Surface in calculations and is convex.
+Surface=BEF3D9A2-B25F-44E4-B611-E021B6179865 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=2
-..Surface=9B94C26B-39F3-4336-9E7A-AC254D30D6AC
-..Surface=9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504
+..Surface=BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113
+..Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=8333827C-64D9-4384-908C-A52B523E0F4E WINDOW
+....Surface=BEF3D9A2-B25F-44E4-B611-E021B6179865 WINDOW
==================================
-Surface=8333827C-64D9-4384-908C-A52B523E0F4E WINDOW is not used as Receiving Surface in calculations.
+Surface=BEF3D9A2-B25F-44E4-B611-E021B6179865 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=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686 is used as Receiving Surface in calculations and is convex.
+Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=27
-..Surface=D2694CC9-3DBE-4717-9750-66D7408F584C
-..Surface=12650E00-DBA9-4EC4-9C20-53D86D021A6D
-..Surface=C9344243-BB60-434B-BBAE-00A55242DE52
-..Surface=8634DC17-B8D8-4B49-989E-8079C194833B
-..Surface=5CE34BFC-24D0-4CB6-91E7-8652D7354F39
-..Surface=BF1F1F37-241C-42E3-B054-B0FF550F8635
-..Surface=2AC4CA0B-4DBE-4166-9C39-FCDAB475F3C0
-..Surface=F67C279F-5341-4F00-A38A-CD4F391AADC1
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=2B08C63B-0380-4D2A-8604-7FBA958F3869
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686 WINDOW
+....Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 WINDOW
==================================
-Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686 WINDOW is not used as Receiving Surface in calculations.
+Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 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=5A47FB83-CC5E-4E41-A966-473A78AA3D5A is used as Receiving Surface in calculations and is convex.
+Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=10
-..Surface=5CE34BFC-24D0-4CB6-91E7-8652D7354F39
-..Surface=BF1F1F37-241C-42E3-B054-B0FF550F8635
-..Surface=2AC4CA0B-4DBE-4166-9C39-FCDAB475F3C0
-..Surface=F67C279F-5341-4F00-A38A-CD4F391AADC1
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=2B08C63B-0380-4D2A-8604-7FBA958F3869
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=5A47FB83-CC5E-4E41-A966-473A78AA3D5A WINDOW
+....Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 WINDOW
==================================
-Surface=5A47FB83-CC5E-4E41-A966-473A78AA3D5A WINDOW is not used as Receiving Surface in calculations.
+Surface=955BDC8B-FADC-4DC9-9146-015E44F6D0F9 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=A7F9A836-6648-4972-9A3D-CADF02C08396 is used as Receiving Surface in calculations and is convex.
+Surface=74146306-5CC3-4DF9-B2DD-4E2FE410DA48 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=A7F9A836-6648-4972-9A3D-CADF02C08396 WINDOW
+....Surface=74146306-5CC3-4DF9-B2DD-4E2FE410DA48 WINDOW
==================================
-Surface=A7F9A836-6648-4972-9A3D-CADF02C08396 WINDOW is not used as Receiving Surface in calculations.
+Surface=74146306-5CC3-4DF9-B2DD-4E2FE410DA48 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=E6615A35-5D23-4A84-954C-4F36AFFA9A82 is not used as Receiving Surface in calculations.
+Surface=E562FE09-B0C0-4242-8049-66A78D056BB6 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=A8B26E1F-5CA1-4D6B-8813-7FD1AC23040A is used as Receiving Surface in calculations and is convex.
+Surface=13DA738A-2538-4FBE-A6AC-9E17A5A66381 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=10
-..Surface=5CE34BFC-24D0-4CB6-91E7-8652D7354F39
-..Surface=BF1F1F37-241C-42E3-B054-B0FF550F8635
-..Surface=2AC4CA0B-4DBE-4166-9C39-FCDAB475F3C0
-..Surface=F67C279F-5341-4F00-A38A-CD4F391AADC1
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=2B08C63B-0380-4D2A-8604-7FBA958F3869
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
+..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
Number of back surfaces=0
Number of receiving sub surfaces=0
==================================
-Surface=642D4A50-D5E3-48C1-8CF3-C2CF24830304 is used as Receiving Surface in calculations and is convex.
+Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=8
-..Surface=3C075050-1588-4E73-A4A8-6A042DBC0278
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=51F929D1-6F74-4810-94B9-0B8F70D66803
-..Surface=1E8DA8FA-960F-48EA-BAE6-C96886703FEB
-..Surface=058D5268-0E0E-47DE-90BA-FD670EAFBE04
-..Surface=78EAEFA8-107D-43DB-8DBE-8E4F65EA1AB4
-..Surface=62DCE0A4-304F-4E6C-9A57-D00E4334928B
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=642D4A50-D5E3-48C1-8CF3-C2CF24830304 WINDOW
+....Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 WINDOW
==================================
-Surface=642D4A50-D5E3-48C1-8CF3-C2CF24830304 WINDOW is not used as Receiving Surface in calculations.
+Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 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=F84E0874-B44E-4FF2-BC04-CB9797175003 is used as Receiving Surface in calculations and is convex.
+Surface=910EC237-D19C-44D2-A0AF-53394D66BADB is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=3
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=46864059-27D4-44AC-A655-C4CB8A693393
-..Surface=D7715FC0-FFF0-49E8-BBF2-B214FB7657BD
+..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695
+..Surface=D86FC62F-269C-45DE-84ED-D5A196E2095E
+..Surface=DC8B7A69-B843-43F8-810C-AF6503E94ABF
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=F84E0874-B44E-4FF2-BC04-CB9797175003 WINDOW
+....Surface=910EC237-D19C-44D2-A0AF-53394D66BADB WINDOW
==================================
-Surface=F84E0874-B44E-4FF2-BC04-CB9797175003 WINDOW is not used as Receiving Surface in calculations.
+Surface=910EC237-D19C-44D2-A0AF-53394D66BADB 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=D7715FC0-FFF0-49E8-BBF2-B214FB7657BD is used as Receiving Surface in calculations and is convex.
+Surface=DC8B7A69-B843-43F8-810C-AF6503E94ABF is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=2
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=F84E0874-B44E-4FF2-BC04-CB9797175003
+..Surface=B227DDA2-BC10-42A6-BFEB-B934B789F695
+..Surface=910EC237-D19C-44D2-A0AF-53394D66BADB
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=D7715FC0-FFF0-49E8-BBF2-B214FB7657BD WINDOW
+....Surface=DC8B7A69-B843-43F8-810C-AF6503E94ABF WINDOW
==================================
-Surface=D7715FC0-FFF0-49E8-BBF2-B214FB7657BD WINDOW is not used as Receiving Surface in calculations.
+Surface=DC8B7A69-B843-43F8-810C-AF6503E94ABF 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=15BE4F13-5041-40DA-828A-AA96F6A79F83 is used as Receiving Surface in calculations and is convex.
+Surface=DD09FB31-D077-415A-8A35-D4B8E4105F74 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=9
-..Surface=150A344C-F603-48B4-951F-96EB17D23D60
-..Surface=E4461C89-D956-48D0-9146-F19E8660F0A5
-..Surface=9F31F68D-49DB-487B-ACD5-6C5A0ED86612
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=15BE4F13-5041-40DA-828A-AA96F6A79F83 WINDOW
+....Surface=DD09FB31-D077-415A-8A35-D4B8E4105F74 WINDOW
==================================
-Surface=15BE4F13-5041-40DA-828A-AA96F6A79F83 WINDOW is not used as Receiving Surface in calculations.
+Surface=DD09FB31-D077-415A-8A35-D4B8E4105F74 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=CF1FFFE1-0D40-458A-9FAB-42BC6EFEF9E9 is not used as Receiving Surface in calculations.
+Surface=EE425A30-D8EE-49AE-A2B1-23E47576E76C 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=51F929D1-6F74-4810-94B9-0B8F70D66803 is used as Receiving Surface in calculations and is convex.
+Surface=3EB30793-160D-41D4-AD8A-36E1CFF208C6 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=3
-..Surface=642D4A50-D5E3-48C1-8CF3-C2CF24830304
-..Surface=1E8DA8FA-960F-48EA-BAE6-C96886703FEB
-..Surface=058D5268-0E0E-47DE-90BA-FD670EAFBE04
+..Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733
+..Surface=DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8
+..Surface=869A399D-0DA3-4CDE-AD63-60BFDAC22071
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=51F929D1-6F74-4810-94B9-0B8F70D66803 WINDOW
+....Surface=3EB30793-160D-41D4-AD8A-36E1CFF208C6 WINDOW
==================================
-Surface=51F929D1-6F74-4810-94B9-0B8F70D66803 WINDOW is not used as Receiving Surface in calculations.
+Surface=3EB30793-160D-41D4-AD8A-36E1CFF208C6 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=B773B0FF-C402-4155-9D39-50317B682A7D is not used as Receiving Surface in calculations.
+Surface=61BE9590-EE2C-4510-A65E-9D9707059D72 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=31854275-1131-465E-9F08-8B4BA45C944C is used as Receiving Surface in calculations and is non-convex.
+Surface=29AA4E15-EC14-45B9-BE01-3968B1F66BA3 is used as Receiving Surface in calculations and is non-convex.
Number of general casting surfaces=10
-..Surface=E4461C89-D956-48D0-9146-F19E8660F0A5
-..Surface=9F31F68D-49DB-487B-ACD5-6C5A0ED86612
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=46864059-27D4-44AC-A655-C4CB8A693393
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
+..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
Number of back surfaces=0
Number of receiving sub surfaces=0
==================================
-Surface=2BCD823F-1C3E-4F9C-B84E-D718D5082F2C is used as Receiving Surface in calculations and is convex.
+Surface=74CA1532-4928-42E1-AE6C-111556837B7E is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=4
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504
+..Surface=CDB601E5-0866-416B-89EB-D048E5859786
+..Surface=C0C8C17C-FC22-4B92-A946-702E972AA329
+..Surface=EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8
+..Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=2BCD823F-1C3E-4F9C-B84E-D718D5082F2C WINDOW
+....Surface=74CA1532-4928-42E1-AE6C-111556837B7E WINDOW
==================================
-Surface=2BCD823F-1C3E-4F9C-B84E-D718D5082F2C WINDOW is not used as Receiving Surface in calculations.
+Surface=74CA1532-4928-42E1-AE6C-111556837B7E 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=E107ACD3-80A3-46C8-AB22-6303CE6B830F is not used as Receiving Surface in calculations.
+Surface=2BA28A3D-41A2-4142-8333-FF3F43829C37 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=FA9C545C-E963-48BE-B73F-0908F95DC1A8 is used as Receiving Surface in calculations and is convex.
+Surface=B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=9
-..Surface=12650E00-DBA9-4EC4-9C20-53D86D021A6D
-..Surface=5CE34BFC-24D0-4CB6-91E7-8652D7354F39
-..Surface=BF1F1F37-241C-42E3-B054-B0FF550F8635
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=FA9C545C-E963-48BE-B73F-0908F95DC1A8 WINDOW
+....Surface=B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 WINDOW
==================================
-Surface=FA9C545C-E963-48BE-B73F-0908F95DC1A8 WINDOW is not used as Receiving Surface in calculations.
+Surface=B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 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=6E2347F3-CB34-4BD4-B7E0-90FA881924E0 is not used as Receiving Surface in calculations.
+Surface=A4BBE0E0-AC85-41F6-BAE0-458ACD59E93C 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=783FEDBD-3A04-4545-B9B4-8AE7C4EAC526 is not used as Receiving Surface in calculations.
+Surface=2389DAE8-0F83-4E21-8250-4E7DC4FE3025 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=8706C343-9590-4BD1-8B85-1CAB22E3B38A is used as Receiving Surface in calculations and is convex.
+Surface=D3620589-F605-42A2-8A8A-5A76A2147B39 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=10
-..Surface=5CE34BFC-24D0-4CB6-91E7-8652D7354F39
-..Surface=BF1F1F37-241C-42E3-B054-B0FF550F8635
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
+..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
Number of back surfaces=0
Number of receiving sub surfaces=0
==================================
-Surface=1E8DA8FA-960F-48EA-BAE6-C96886703FEB is used as Receiving Surface in calculations and is convex.
+Surface=DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=3
-..Surface=642D4A50-D5E3-48C1-8CF3-C2CF24830304
-..Surface=51F929D1-6F74-4810-94B9-0B8F70D66803
-..Surface=62DCE0A4-304F-4E6C-9A57-D00E4334928B
+..Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733
+..Surface=3EB30793-160D-41D4-AD8A-36E1CFF208C6
+..Surface=531634DB-2C61-44A3-80D9-94A5852E16AB
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=1E8DA8FA-960F-48EA-BAE6-C96886703FEB WINDOW
+....Surface=DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8 WINDOW
==================================
-Surface=1E8DA8FA-960F-48EA-BAE6-C96886703FEB WINDOW is not used as Receiving Surface in calculations.
+Surface=DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8 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=F1DD5477-48D5-4CB9-98B6-3905972D8ED6 is not used as Receiving Surface in calculations.
+Surface=EFAC6C0B-D77A-473F-BC48-BDD80EC20B23 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=9A857E9E-0A4F-4341-86DB-93C15D7327BF is used as Receiving Surface in calculations and is convex.
+Surface=E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=10
-..Surface=150A344C-F603-48B4-951F-96EB17D23D60
-..Surface=E4461C89-D956-48D0-9146-F19E8660F0A5
-..Surface=9F31F68D-49DB-487B-ACD5-6C5A0ED86612
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=04ABB7BF-01B2-47C2-853A-397C11F9AEB3
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=9A857E9E-0A4F-4341-86DB-93C15D7327BF WINDOW
+....Surface=E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 WINDOW
==================================
-Surface=9A857E9E-0A4F-4341-86DB-93C15D7327BF WINDOW is not used as Receiving Surface in calculations.
+Surface=E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 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=6CA1B622-F6AC-46AE-AFA6-F77F52CCDB9B is not used as Receiving Surface in calculations.
+Surface=DF3E69B8-FC69-416B-9D2C-1D745DF31EFD 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=4A42EC2A-0326-4C00-B654-E47B54C6B560 is not used as Receiving Surface in calculations.
+Surface=BDEE1547-D4C7-40C6-9996-7530EF5A1A75 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=C6167CE0-8BDB-4E2C-BCFB-02A8E11213FA is used as Receiving Surface in calculations and is convex.
+Surface=A4840188-8DF8-4EAA-B5F2-EA27AD8DA333 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=10
-..Surface=E4461C89-D956-48D0-9146-F19E8660F0A5
-..Surface=9F31F68D-49DB-487B-ACD5-6C5A0ED86612
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=8333827C-64D9-4384-908C-A52B523E0F4E
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
+..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
Number of back surfaces=0
Number of receiving sub surfaces=0
==================================
-Surface=058D5268-0E0E-47DE-90BA-FD670EAFBE04 is used as Receiving Surface in calculations and is convex.
+Surface=869A399D-0DA3-4CDE-AD63-60BFDAC22071 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=4
-..Surface=642D4A50-D5E3-48C1-8CF3-C2CF24830304
-..Surface=51F929D1-6F74-4810-94B9-0B8F70D66803
-..Surface=78EAEFA8-107D-43DB-8DBE-8E4F65EA1AB4
-..Surface=62DCE0A4-304F-4E6C-9A57-D00E4334928B
+..Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733
+..Surface=3EB30793-160D-41D4-AD8A-36E1CFF208C6
+..Surface=6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F
+..Surface=531634DB-2C61-44A3-80D9-94A5852E16AB
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=058D5268-0E0E-47DE-90BA-FD670EAFBE04 WINDOW
+....Surface=869A399D-0DA3-4CDE-AD63-60BFDAC22071 WINDOW
==================================
-Surface=058D5268-0E0E-47DE-90BA-FD670EAFBE04 WINDOW is not used as Receiving Surface in calculations.
+Surface=869A399D-0DA3-4CDE-AD63-60BFDAC22071 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=964C9D07-AB26-44D1-A193-DCDFE9E34BED is not used as Receiving Surface in calculations.
+Surface=D9827025-1B3E-4617-9371-9B0E29A8780B 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=04ABB7BF-01B2-47C2-853A-397C11F9AEB3 is used as Receiving Surface in calculations and is convex.
+Surface=6ED55F0D-F5CD-49C2-8F09-54D704A502FA is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=10
-..Surface=150A344C-F603-48B4-951F-96EB17D23D60
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=9A857E9E-0A4F-4341-86DB-93C15D7327BF
-..Surface=FF2A5ADF-5DA5-4533-A9D5-099FF8C65DED
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=04ABB7BF-01B2-47C2-853A-397C11F9AEB3 WINDOW
+....Surface=6ED55F0D-F5CD-49C2-8F09-54D704A502FA WINDOW
==================================
-Surface=04ABB7BF-01B2-47C2-853A-397C11F9AEB3 WINDOW is not used as Receiving Surface in calculations.
+Surface=6ED55F0D-F5CD-49C2-8F09-54D704A502FA 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=5A472962-FD05-4257-ADCC-5B11C96EC905 is used as Receiving Surface in calculations and is convex.
+Surface=DBABEAFE-8C2D-40EF-A157-12F9BA741B94 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=8
-..Surface=3C075050-1588-4E73-A4A8-6A042DBC0278
-..Surface=150A344C-F603-48B4-951F-96EB17D23D60
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=5A472962-FD05-4257-ADCC-5B11C96EC905 WINDOW
+....Surface=DBABEAFE-8C2D-40EF-A157-12F9BA741B94 WINDOW
==================================
-Surface=5A472962-FD05-4257-ADCC-5B11C96EC905 WINDOW is not used as Receiving Surface in calculations.
+Surface=DBABEAFE-8C2D-40EF-A157-12F9BA741B94 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=9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504 is used as Receiving Surface in calculations and is convex.
+Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=14
-..Surface=D2694CC9-3DBE-4717-9750-66D7408F584C
-..Surface=C9344243-BB60-434B-BBAE-00A55242DE52
-..Surface=59B89D19-7A3A-44A2-B16C-0F06DDD49440
-..Surface=3C075050-1588-4E73-A4A8-6A042DBC0278
-..Surface=150A344C-F603-48B4-951F-96EB17D23D60
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504 WINDOW
+....Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 WINDOW
==================================
-Surface=9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504 WINDOW is not used as Receiving Surface in calculations.
+Surface=690A4F44-19B1-4DE4-9442-7B0128C1D064 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=48AC80C6-B175-45E1-97E2-5BCF75C7D5DA is not used as Receiving Surface in calculations.
+Surface=DB7435CB-E409-4E62-8B46-061B84825686 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=6A43D3BF-4E99-4F40-B4E1-8237E6990E4F is used as Receiving Surface in calculations and is convex.
+Surface=1642787D-CDB7-40B1-96DE-A28B6B1A6568 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=10
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97
-..Surface=8333827C-64D9-4384-908C-A52B523E0F4E
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
+..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
Number of back surfaces=0
Number of receiving sub surfaces=0
==================================
-Surface=78EAEFA8-107D-43DB-8DBE-8E4F65EA1AB4 is used as Receiving Surface in calculations and is convex.
+Surface=6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=2
-..Surface=642D4A50-D5E3-48C1-8CF3-C2CF24830304
-..Surface=058D5268-0E0E-47DE-90BA-FD670EAFBE04
+..Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733
+..Surface=869A399D-0DA3-4CDE-AD63-60BFDAC22071
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=78EAEFA8-107D-43DB-8DBE-8E4F65EA1AB4 WINDOW
+....Surface=6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F WINDOW
==================================
-Surface=78EAEFA8-107D-43DB-8DBE-8E4F65EA1AB4 WINDOW is not used as Receiving Surface in calculations.
+Surface=6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F 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=A4727B73-BFCC-4ED1-8B57-D61BE82393E6 is not used as Receiving Surface in calculations.
+Surface=A4693CFB-6E07-41DD-A6DF-8D7D0F6BA3DF 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=FF2A5ADF-5DA5-4533-A9D5-099FF8C65DED is used as Receiving Surface in calculations and is convex.
+Surface=6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=10
-..Surface=150A344C-F603-48B4-951F-96EB17D23D60
-..Surface=9F31F68D-49DB-487B-ACD5-6C5A0ED86612
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
-..Surface=04ABB7BF-01B2-47C2-853A-397C11F9AEB3
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=FF2A5ADF-5DA5-4533-A9D5-099FF8C65DED WINDOW
+....Surface=6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 WINDOW
==================================
-Surface=FF2A5ADF-5DA5-4533-A9D5-099FF8C65DED WINDOW is not used as Receiving Surface in calculations.
+Surface=6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 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=626A04E5-2AE7-49E1-8CE8-6ED71F2B9A25 is not used as Receiving Surface in calculations.
+Surface=B5A2B9C9-8D44-4989-BE67-67A10674D72D 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=19B32DF5-BD49-4F37-8737-C8B35C4D2E6F is not used as Receiving Surface in calculations.
+Surface=667683E9-4698-4804-B300-2FE5E1E6E939 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=93C039B0-F217-4BEE-86DF-8F876AE8B18E is used as Receiving Surface in calculations and is convex.
+Surface=DB7DB81A-75B9-413D-B49C-B589478D35E6 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=11
-..Surface=9F31F68D-49DB-487B-ACD5-6C5A0ED86612
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=CFFCC56F-2539-471F-86AC-5B1FB59D5864
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97
-..Surface=8333827C-64D9-4384-908C-A52B523E0F4E
+..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
Number of back surfaces=0
Number of receiving sub surfaces=0
==================================
-Surface=62DCE0A4-304F-4E6C-9A57-D00E4334928B is used as Receiving Surface in calculations and is convex.
+Surface=531634DB-2C61-44A3-80D9-94A5852E16AB is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=3
-..Surface=642D4A50-D5E3-48C1-8CF3-C2CF24830304
-..Surface=1E8DA8FA-960F-48EA-BAE6-C96886703FEB
-..Surface=058D5268-0E0E-47DE-90BA-FD670EAFBE04
+..Surface=BF81A09D-7EB2-443C-9DBE-7CCF41E9E733
+..Surface=DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8
+..Surface=869A399D-0DA3-4CDE-AD63-60BFDAC22071
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=62DCE0A4-304F-4E6C-9A57-D00E4334928B WINDOW
+....Surface=531634DB-2C61-44A3-80D9-94A5852E16AB WINDOW
==================================
-Surface=62DCE0A4-304F-4E6C-9A57-D00E4334928B WINDOW is not used as Receiving Surface in calculations.
+Surface=531634DB-2C61-44A3-80D9-94A5852E16AB 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=2D86181D-B6D0-4963-B805-B062AF09ED4D is not used as Receiving Surface in calculations.
+Surface=C851CA53-49E9-4A43-9F95-215079B2D5D7 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=B9A54D53-0695-468C-8E3C-E0D957C0FEF6 is used as Receiving Surface in calculations and is convex.
+Surface=5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13 is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=9
-..Surface=150A344C-F603-48B4-951F-96EB17D23D60
-..Surface=E4461C89-D956-48D0-9146-F19E8660F0A5
-..Surface=9F31F68D-49DB-487B-ACD5-6C5A0ED86612
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
+..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
Number of back surfaces=0
Number of receiving sub surfaces=1
-....Surface=B9A54D53-0695-468C-8E3C-E0D957C0FEF6 WINDOW
+....Surface=5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13 WINDOW
==================================
-Surface=B9A54D53-0695-468C-8E3C-E0D957C0FEF6 WINDOW is not used as Receiving Surface in calculations.
+Surface=5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13 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=9A2F2953-76F5-4861-A4C8-DA901D39C5AA is not used as Receiving Surface in calculations.
+Surface=1F386A70-23F0-46A2-AEB6-322BED09B91F 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=FD51B87C-F1BA-41D8-A992-25F6C9517A81 is not used as Receiving Surface in calculations.
+Surface=A6172439-540E-4D31-A8BC-32DD402924E1 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=7693E158-2471-4832-ADD0-A7D14C5CD21B is used as Receiving Surface in calculations and is convex.
+Surface=4A849183-D5E9-40D6-8A77-38B11B46433E is used as Receiving Surface in calculations and is convex.
Number of general casting surfaces=9
-..Surface=E4461C89-D956-48D0-9146-F19E8660F0A5
-..Surface=9F31F68D-49DB-487B-ACD5-6C5A0ED86612
-..Surface=D997FCD7-8889-44D4-9CD4-9B562516CED9
-..Surface=3F1DAF72-41A2-4969-A152-EA48AEF4DAE2
-..Surface=A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA
-..Surface=19C12E03-DBAB-463E-8E67-561987F1BEE2
-..Surface=3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE
-..Surface=59390046-7599-4186-A026-5C3A7DDE88F5
-..Surface=9DCC0E5D-D352-4F9D-AAC7-ED1F95857686
+..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
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 69823129..16e56173 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 18:51
+Program Version:,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22
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 18:51
+,Program Version and Build,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22
,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
-,D2694CC9-3DBE-4717-9750-66D7408F584C,1981_1990_6,0.40,0.644,0.713,57.41,47.08,90.32,90.00,E
-,12650E00-DBA9-4EC4-9C20-53D86D021A6D,1981_1990_6,0.40,0.644,0.713,57.41,47.08,269.70,90.00,W
-,672466A2-FD8B-48E2-A12B-2B6D13DC46EF,1981_1990_6,0.40,0.639,0.713,88.46,88.46,0.14,180.00,
-,29AECAA4-5B2C-4250-9DCF-F072A6F957E9,1981_1990_6,0.40,0.649,0.713,88.46,88.46,0.14,0.00,
-,C9344243-BB60-434B-BBAE-00A55242DE52,1981_1990_6,0.40,0.644,0.713,51.38,42.13,90.32,90.00,E
-,59B89D19-7A3A-44A2-B16C-0F06DDD49440,1981_1990_6,0.40,0.644,0.713,9.77,8.01,89.91,90.00,E
-,3C075050-1588-4E73-A4A8-6A042DBC0278,1981_1990_6,0.40,0.644,0.713,120.90,99.13,0.06,90.00,N
-,150A344C-F603-48B4-951F-96EB17D23D60,1981_1990_6,0.40,0.644,0.713,4.80,3.93,359.13,90.00,N
-,8634DC17-B8D8-4B49-989E-8079C194833B,1981_1990_6,0.40,0.644,0.713,60.89,49.93,269.70,90.00,W
-,0207BA60-C2FB-4BC0-AE4D-423BBA669056,1981_1990_6,0.40,0.639,0.713,94.56,94.56,270.32,180.00,
-,01D13815-2EF5-4939-87D0-6EB66A6EEF74,1981_1990_6,0.40,0.649,0.713,94.56,94.56,89.91,0.00,
-,3E41BF94-7CF6-4888-8967-25B24F9DC668,1981_1990_6,0.40,0.644,0.713,269.34,220.85,270.37,90.00,W
-,E4461C89-D956-48D0-9146-F19E8660F0A5,1981_1990_6,0.40,0.644,0.713,42.68,35.00,0.73,90.00,N
-,4D0A880D-084D-4A1D-A39F-9F5FA319A6EA,1981_1990_6,0.40,0.644,0.713,50.71,41.58,269.95,90.00,W
-,9F31F68D-49DB-487B-ACD5-6C5A0ED86612,1981_1990_6,0.40,0.644,0.713,33.05,27.10,0.68,90.00,N
-,67679EF7-4689-4D8E-A167-1D714F76E1A3,1981_1990_6,0.40,0.644,0.713,330.80,271.25,270.63,90.00,W
-,44B08664-F1C8-4296-99DB-7BE2E02C8254,1981_1990_6,0.40,0.644,0.713,8.84,7.25,271.07,90.00,W
-,5CE34BFC-24D0-4CB6-91E7-8652D7354F39,1981_1990_6,0.40,0.644,0.713,37.21,30.51,180.88,90.00,S
-,FF8E2017-074C-4F16-AF3A-311410837EED,1981_1990_6,0.40,0.644,0.713,48.45,39.73,270.81,90.00,W
-,BF1F1F37-241C-42E3-B054-B0FF550F8635,1981_1990_6,0.40,0.644,0.713,50.23,41.19,180.83,90.00,S
-,31CDD59B-48E0-406D-BEE1-6046D43751B7,1981_1990_6,0.40,0.644,0.713,264.28,216.70,270.81,90.00,W
-,2AC4CA0B-4DBE-4166-9C39-FCDAB475F3C0,1981_1990_6,0.40,0.644,0.713,547.94,449.30,180.80,90.00,S
-,F67C279F-5341-4F00-A38A-CD4F391AADC1,1981_1990_6,0.40,0.644,0.713,8.10,6.64,181.90,90.00,S
-,D997FCD7-8889-44D4-9CD4-9B562516CED9,1981_1990_6,0.40,0.644,0.713,16.36,13.41,90.30,90.00,E
-,2B08C63B-0380-4D2A-8604-7FBA958F3869,1981_1990_6,0.40,0.644,0.713,71.03,58.24,180.36,90.00,S
-,3F1DAF72-41A2-4969-A152-EA48AEF4DAE2,1981_1990_6,0.40,0.644,0.713,332.92,272.99,90.35,90.00,E
-,A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA,1981_1990_6,0.40,0.644,0.713,438.53,359.59,0.36,90.00,N
-,19C12E03-DBAB-463E-8E67-561987F1BEE2,1981_1990_6,0.40,0.644,0.713,282.91,231.98,90.36,90.00,E
-,CFFCC56F-2539-471F-86AC-5B1FB59D5864,1981_1990_6,0.40,0.644,0.713,432.84,354.92,180.36,90.00,S
-,3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE,1981_1990_6,0.40,0.644,0.713,344.94,282.84,90.36,90.00,E
-,46864059-27D4-44AC-A655-C4CB8A693393,1981_1990_6,0.40,0.644,0.713,629.18,515.91,0.35,90.00,N
-,8B189C8C-9C0F-4D6F-B370-DB1B3364DC14,1981_1990_6,0.40,0.639,0.713,2308.92,2308.92,0.36,180.00,
-,0E6A4045-A150-4949-A4EC-C4EF53E324DA,1981_1990_6,0.40,0.649,0.713,2308.92,2308.92,0.36,0.00,
-,59390046-7599-4186-A026-5C3A7DDE88F5,1981_1990_6,0.40,0.644,0.713,5.62,4.61,358.71,90.00,N
-,4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97,1981_1990_6,0.40,0.644,0.713,4.45,3.65,90.31,90.00,E
-,F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029,1981_1990_6,0.40,0.644,0.713,65.43,53.65,269.70,90.00,W
-,9B94C26B-39F3-4336-9E7A-AC254D30D6AC,1981_1990_6,0.40,0.644,0.713,143.18,117.41,179.68,90.00,S
-,69D98CE1-163A-4688-BDD8-620D9E324AA0,1981_1990_6,0.40,0.644,0.713,59.97,49.18,89.74,90.00,E
-,D30F611A-272A-4CD3-B953-311557F2C325,1981_1990_6,0.40,0.639,0.713,92.64,92.64,359.68,180.00,
-,816C595D-F720-47AC-A04C-114371D74F98,1981_1990_6,0.40,0.649,0.713,92.64,92.64,358.71,0.00,
-,8333827C-64D9-4384-908C-A52B523E0F4E,1981_1990_6,0.40,0.644,0.713,67.25,55.14,90.03,90.00,E
-,9DCC0E5D-D352-4F9D-AAC7-ED1F95857686,1981_1990_6,0.40,0.644,0.713,144.70,118.65,359.95,90.00,N
-,5A47FB83-CC5E-4E41-A966-473A78AA3D5A,1981_1990_6,0.40,0.644,0.713,66.78,54.75,270.04,90.00,W
-,A7F9A836-6648-4972-9A3D-CADF02C08396,1981_1990_6,0.40,0.644,0.713,144.71,118.66,180.13,90.00,S
-,E6615A35-5D23-4A84-954C-4F36AFFA9A82,1981_1990_6,0.40,0.639,0.713,96.97,96.97,0.13,180.00,
-,A8B26E1F-5CA1-4D6B-8813-7FD1AC23040A,1981_1990_6,0.40,0.649,0.713,96.97,96.97,359.95,0.00,
-,642D4A50-D5E3-48C1-8CF3-C2CF24830304,1981_1990_6,0.40,0.644,0.713,4.42,3.62,90.22,90.00,E
-,F84E0874-B44E-4FF2-BC04-CB9797175003,1981_1990_6,0.40,0.644,0.713,118.69,97.33,359.45,90.00,N
-,D7715FC0-FFF0-49E8-BBF2-B214FB7657BD,1981_1990_6,0.40,0.644,0.713,5.25,4.31,0.34,90.00,N
-,15BE4F13-5041-40DA-828A-AA96F6A79F83,1981_1990_6,0.40,0.644,0.713,62.29,51.08,270.10,90.00,W
-,51F929D1-6F74-4810-94B9-0B8F70D66803,1981_1990_6,0.40,0.644,0.713,59.29,48.62,89.40,90.00,E
-,B773B0FF-C402-4155-9D39-50317B682A7D,1981_1990_6,0.40,0.639,0.713,96.59,96.59,269.40,180.00,
-,31854275-1131-465E-9F08-8B4BA45C944C,1981_1990_6,0.40,0.649,0.713,96.59,96.59,90.22,0.00,
-,2BCD823F-1C3E-4F9C-B84E-D718D5082F2C,1981_1990_6,0.40,0.644,0.713,57.41,47.08,90.32,90.00,E
-,FA9C545C-E963-48BE-B73F-0908F95DC1A8,1981_1990_6,0.40,0.644,0.713,57.41,47.08,269.70,90.00,W
-,783FEDBD-3A04-4545-B9B4-8AE7C4EAC526,1981_1990_6,0.40,0.639,0.713,88.02,88.02,0.14,180.00,
-,8706C343-9590-4BD1-8B85-1CAB22E3B38A,1981_1990_6,0.40,0.649,0.713,88.02,88.02,0.14,0.00,
-,1E8DA8FA-960F-48EA-BAE6-C96886703FEB,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E
-,9A857E9E-0A4F-4341-86DB-93C15D7327BF,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W
-,4A42EC2A-0326-4C00-B654-E47B54C6B560,1981_1990_6,0.40,0.639,0.713,89.11,89.11,0.14,180.00,
-,C6167CE0-8BDB-4E2C-BCFB-02A8E11213FA,1981_1990_6,0.40,0.649,0.713,89.11,89.11,0.14,0.00,
-,058D5268-0E0E-47DE-90BA-FD670EAFBE04,1981_1990_6,0.40,0.644,0.713,62.03,50.86,89.40,90.00,E
-,04ABB7BF-01B2-47C2-853A-397C11F9AEB3,1981_1990_6,0.40,0.644,0.713,62.29,51.08,270.10,90.00,W
-,5A472962-FD05-4257-ADCC-5B11C96EC905,1981_1990_6,0.40,0.644,0.713,123.20,101.02,180.04,90.00,S
-,9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504,1981_1990_6,0.40,0.644,0.713,4.34,3.55,179.52,90.00,S
-,48AC80C6-B175-45E1-97E2-5BCF75C7D5DA,1981_1990_6,0.40,0.639,0.713,97.60,97.60,359.52,180.00,
-,6A43D3BF-4E99-4F40-B4E1-8237E6990E4F,1981_1990_6,0.40,0.649,0.713,97.60,97.60,0.14,0.00,
-,78EAEFA8-107D-43DB-8DBE-8E4F65EA1AB4,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E
-,FF2A5ADF-5DA5-4533-A9D5-099FF8C65DED,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W
-,19B32DF5-BD49-4F37-8737-C8B35C4D2E6F,1981_1990_6,0.40,0.639,0.713,89.61,89.61,0.14,180.00,
-,93C039B0-F217-4BEE-86DF-8F876AE8B18E,1981_1990_6,0.40,0.649,0.713,89.61,89.61,0.14,0.00,
-,62DCE0A4-304F-4E6C-9A57-D00E4334928B,1981_1990_6,0.40,0.644,0.713,57.42,47.08,89.40,90.00,E
-,B9A54D53-0695-468C-8E3C-E0D957C0FEF6,1981_1990_6,0.40,0.644,0.713,57.41,47.08,270.10,90.00,W
-,FD51B87C-F1BA-41D8-A992-25F6C9517A81,1981_1990_6,0.40,0.639,0.713,88.61,88.61,0.14,180.00,
-,7693E158-2471-4832-ADD0-A7D14C5CD21B,1981_1990_6,0.40,0.649,0.713,88.61,88.61,0.14,0.00,
+,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,
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
-,A6A2AA11-EBBD-43A9-B252-6FC4397E8081,1981_1990_6,0.40,0.609,0.713,125.11,125.11,0.14,90.00,N
-,06385373-1CAD-49CF-B6C5-4941976DF31E,1981_1990_6,0.40,0.609,0.713,124.50,124.50,180.14,90.00,S
-,06FF86F4-0A29-4F47-871C-773F4FC12A85,1981_1990_6,0.40,0.609,0.713,125.11,125.11,180.14,90.00,S
-,0176C6E0-DB9E-45CE-BB96-F4C7305D3006,1981_1990_6,0.40,0.609,0.713,137.65,137.65,0.14,90.00,N
-,CF1FFFE1-0D40-458A-9FAB-42BC6EFEF9E9,1981_1990_6,0.40,0.609,0.713,124.66,124.66,180.14,90.00,S
-,E107ACD3-80A3-46C8-AB22-6303CE6B830F,1981_1990_6,0.40,0.609,0.713,124.50,124.50,0.14,90.00,N
-,6E2347F3-CB34-4BD4-B7E0-90FA881924E0,1981_1990_6,0.40,0.609,0.713,123.89,123.89,180.14,90.00,S
-,F1DD5477-48D5-4CB9-98B6-3905972D8ED6,1981_1990_6,0.40,0.609,0.713,125.36,125.36,0.14,90.00,N
-,6CA1B622-F6AC-46AE-AFA6-F77F52CCDB9B,1981_1990_6,0.40,0.609,0.713,126.07,126.07,180.14,90.00,S
-,964C9D07-AB26-44D1-A193-DCDFE9E34BED,1981_1990_6,0.40,0.609,0.713,126.77,126.77,0.14,90.00,N
-,A4727B73-BFCC-4ED1-8B57-D61BE82393E6,1981_1990_6,0.40,0.609,0.713,126.07,126.07,0.14,90.00,N
-,626A04E5-2AE7-49E1-8CE8-6ED71F2B9A25,1981_1990_6,0.40,0.609,0.713,126.77,126.77,180.14,90.00,S
-,2D86181D-B6D0-4963-B805-B062AF09ED4D,1981_1990_6,0.40,0.609,0.713,124.66,124.66,0.14,90.00,N
-,9A2F2953-76F5-4861-A4C8-DA901D39C5AA,1981_1990_6,0.40,0.609,0.713,125.36,125.36,180.14,90.00,S
+,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
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
-,D2694CC9-3DBE-4717-9750-66D7408F584C WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,D2694CC9-3DBE-4717-9750-66D7408F584C,90.32,90.00,E
-,12650E00-DBA9-4EC4-9C20-53D86D021A6D WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,12650E00-DBA9-4EC4-9C20-53D86D021A6D,269.70,90.00,W
-,C9344243-BB60-434B-BBAE-00A55242DE52 WINDOW,WINDOW_CONSTRUCTION_1,9.25,0.00,0.00,9.25,9.25,2.954,0.391,0.305,,,No,C9344243-BB60-434B-BBAE-00A55242DE52,90.32,90.00,E
-,59B89D19-7A3A-44A2-B16C-0F06DDD49440 WINDOW,WINDOW_CONSTRUCTION_1,1.76,0.00,0.00,1.76,1.76,2.954,0.391,0.305,,,No,59B89D19-7A3A-44A2-B16C-0F06DDD49440,89.91,90.00,E
-,3C075050-1588-4E73-A4A8-6A042DBC0278 WINDOW,WINDOW_CONSTRUCTION_1,21.76,0.00,0.00,21.76,21.76,2.954,0.391,0.305,,,No,3C075050-1588-4E73-A4A8-6A042DBC0278,0.06,90.00,N
-,150A344C-F603-48B4-951F-96EB17D23D60 WINDOW,WINDOW_CONSTRUCTION_1,0.86,0.00,0.00,0.86,0.86,2.954,0.391,0.305,,,No,150A344C-F603-48B4-951F-96EB17D23D60,359.13,90.00,N
-,8634DC17-B8D8-4B49-989E-8079C194833B WINDOW,WINDOW_CONSTRUCTION_1,10.96,0.00,0.00,10.96,10.96,2.954,0.391,0.305,,,No,8634DC17-B8D8-4B49-989E-8079C194833B,269.70,90.00,W
-,3E41BF94-7CF6-4888-8967-25B24F9DC668 WINDOW,WINDOW_CONSTRUCTION_1,48.49,0.00,0.00,48.49,48.49,2.954,0.391,0.305,,,No,3E41BF94-7CF6-4888-8967-25B24F9DC668,270.37,90.00,W
-,E4461C89-D956-48D0-9146-F19E8660F0A5 WINDOW,WINDOW_CONSTRUCTION_1,7.68,0.00,0.00,7.68,7.68,2.954,0.391,0.305,,,No,E4461C89-D956-48D0-9146-F19E8660F0A5,0.73,90.00,N
-,4D0A880D-084D-4A1D-A39F-9F5FA319A6EA WINDOW,WINDOW_CONSTRUCTION_1,9.13,0.00,0.00,9.13,9.13,2.954,0.391,0.305,,,No,4D0A880D-084D-4A1D-A39F-9F5FA319A6EA,269.95,90.00,W
-,9F31F68D-49DB-487B-ACD5-6C5A0ED86612 WINDOW,WINDOW_CONSTRUCTION_1,5.95,0.00,0.00,5.95,5.95,2.954,0.391,0.305,,,No,9F31F68D-49DB-487B-ACD5-6C5A0ED86612,0.68,90.00,N
-,67679EF7-4689-4D8E-A167-1D714F76E1A3 WINDOW,WINDOW_CONSTRUCTION_1,59.55,0.00,0.00,59.55,59.55,2.954,0.391,0.305,,,No,67679EF7-4689-4D8E-A167-1D714F76E1A3,270.63,90.00,W
-,44B08664-F1C8-4296-99DB-7BE2E02C8254 WINDOW,WINDOW_CONSTRUCTION_1,1.59,0.00,0.00,1.59,1.59,2.954,0.391,0.305,,,No,44B08664-F1C8-4296-99DB-7BE2E02C8254,271.07,90.00,W
-,5CE34BFC-24D0-4CB6-91E7-8652D7354F39 WINDOW,WINDOW_CONSTRUCTION_1,6.70,0.00,0.00,6.70,6.70,2.954,0.391,0.305,,,No,5CE34BFC-24D0-4CB6-91E7-8652D7354F39,180.88,90.00,S
-,FF8E2017-074C-4F16-AF3A-311410837EED WINDOW,WINDOW_CONSTRUCTION_1,8.72,0.00,0.00,8.72,8.72,2.954,0.391,0.305,,,No,FF8E2017-074C-4F16-AF3A-311410837EED,270.81,90.00,W
-,BF1F1F37-241C-42E3-B054-B0FF550F8635 WINDOW,WINDOW_CONSTRUCTION_1,9.04,0.00,0.00,9.04,9.04,2.954,0.391,0.305,,,No,BF1F1F37-241C-42E3-B054-B0FF550F8635,180.83,90.00,S
-,31CDD59B-48E0-406D-BEE1-6046D43751B7 WINDOW,WINDOW_CONSTRUCTION_1,47.57,0.00,0.00,47.57,47.57,2.954,0.391,0.305,,,No,31CDD59B-48E0-406D-BEE1-6046D43751B7,270.81,90.00,W
-,2AC4CA0B-4DBE-4166-9C39-FCDAB475F3C0 WINDOW,WINDOW_CONSTRUCTION_1,98.64,0.00,0.00,98.64,98.64,2.954,0.391,0.305,,,No,2AC4CA0B-4DBE-4166-9C39-FCDAB475F3C0,180.80,90.00,S
-,F67C279F-5341-4F00-A38A-CD4F391AADC1 WINDOW,WINDOW_CONSTRUCTION_1,1.46,0.00,0.00,1.46,1.46,2.954,0.391,0.305,,,No,F67C279F-5341-4F00-A38A-CD4F391AADC1,181.90,90.00,S
-,D997FCD7-8889-44D4-9CD4-9B562516CED9 WINDOW,WINDOW_CONSTRUCTION_1,2.94,0.00,0.00,2.94,2.94,2.954,0.391,0.305,,,No,D997FCD7-8889-44D4-9CD4-9B562516CED9,90.30,90.00,E
-,2B08C63B-0380-4D2A-8604-7FBA958F3869 WINDOW,WINDOW_CONSTRUCTION_1,12.79,0.00,0.00,12.79,12.79,2.954,0.391,0.305,,,No,2B08C63B-0380-4D2A-8604-7FBA958F3869,180.36,90.00,S
-,3F1DAF72-41A2-4969-A152-EA48AEF4DAE2 WINDOW,WINDOW_CONSTRUCTION_1,59.93,0.00,0.00,59.93,59.93,2.954,0.391,0.305,,,No,3F1DAF72-41A2-4969-A152-EA48AEF4DAE2,90.35,90.00,E
-,A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA WINDOW,WINDOW_CONSTRUCTION_1,78.94,0.00,0.00,78.94,78.94,2.954,0.391,0.305,,,No,A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA,0.36,90.00,N
-,19C12E03-DBAB-463E-8E67-561987F1BEE2 WINDOW,WINDOW_CONSTRUCTION_1,50.93,0.00,0.00,50.93,50.93,2.954,0.391,0.305,,,No,19C12E03-DBAB-463E-8E67-561987F1BEE2,90.36,90.00,E
-,CFFCC56F-2539-471F-86AC-5B1FB59D5864 WINDOW,WINDOW_CONSTRUCTION_1,77.92,0.00,0.00,77.92,77.92,2.954,0.391,0.305,,,No,CFFCC56F-2539-471F-86AC-5B1FB59D5864,180.36,90.00,S
-,3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE WINDOW,WINDOW_CONSTRUCTION_1,62.10,0.00,0.00,62.10,62.10,2.954,0.391,0.305,,,No,3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE,90.36,90.00,E
-,46864059-27D4-44AC-A655-C4CB8A693393 WINDOW,WINDOW_CONSTRUCTION_1,113.26,0.00,0.00,113.26,113.26,2.954,0.391,0.305,,,No,46864059-27D4-44AC-A655-C4CB8A693393,0.35,90.00,N
-,59390046-7599-4186-A026-5C3A7DDE88F5 WINDOW,WINDOW_CONSTRUCTION_1,1.01,0.00,0.00,1.01,1.01,2.954,0.391,0.305,,,No,59390046-7599-4186-A026-5C3A7DDE88F5,358.71,90.00,N
-,4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97 WINDOW,WINDOW_CONSTRUCTION_1,0.80,0.00,0.00,0.80,0.80,2.954,0.391,0.305,,,No,4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97,90.31,90.00,E
-,F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029 WINDOW,WINDOW_CONSTRUCTION_1,11.78,0.00,0.00,11.78,11.78,2.954,0.391,0.305,,,No,F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029,269.70,90.00,W
-,9B94C26B-39F3-4336-9E7A-AC254D30D6AC WINDOW,WINDOW_CONSTRUCTION_1,25.78,0.00,0.00,25.78,25.78,2.954,0.391,0.305,,,No,9B94C26B-39F3-4336-9E7A-AC254D30D6AC,179.68,90.00,S
-,69D98CE1-163A-4688-BDD8-620D9E324AA0 WINDOW,WINDOW_CONSTRUCTION_1,10.80,0.00,0.00,10.80,10.80,2.954,0.391,0.305,,,No,69D98CE1-163A-4688-BDD8-620D9E324AA0,89.74,90.00,E
-,8333827C-64D9-4384-908C-A52B523E0F4E WINDOW,WINDOW_CONSTRUCTION_1,12.11,0.00,0.00,12.11,12.11,2.954,0.391,0.305,,,No,8333827C-64D9-4384-908C-A52B523E0F4E,90.03,90.00,E
-,9DCC0E5D-D352-4F9D-AAC7-ED1F95857686 WINDOW,WINDOW_CONSTRUCTION_1,26.05,0.00,0.00,26.05,26.05,2.954,0.391,0.305,,,No,9DCC0E5D-D352-4F9D-AAC7-ED1F95857686,359.95,90.00,N
-,5A47FB83-CC5E-4E41-A966-473A78AA3D5A WINDOW,WINDOW_CONSTRUCTION_1,12.02,0.00,0.00,12.02,12.02,2.954,0.391,0.305,,,No,5A47FB83-CC5E-4E41-A966-473A78AA3D5A,270.04,90.00,W
-,A7F9A836-6648-4972-9A3D-CADF02C08396 WINDOW,WINDOW_CONSTRUCTION_1,26.05,0.00,0.00,26.05,26.05,2.954,0.391,0.305,,,No,A7F9A836-6648-4972-9A3D-CADF02C08396,180.13,90.00,S
-,642D4A50-D5E3-48C1-8CF3-C2CF24830304 WINDOW,WINDOW_CONSTRUCTION_1,0.80,0.00,0.00,0.80,0.80,2.954,0.391,0.305,,,No,642D4A50-D5E3-48C1-8CF3-C2CF24830304,90.22,90.00,E
-,F84E0874-B44E-4FF2-BC04-CB9797175003 WINDOW,WINDOW_CONSTRUCTION_1,21.37,0.00,0.00,21.37,21.37,2.954,0.391,0.305,,,No,F84E0874-B44E-4FF2-BC04-CB9797175003,359.45,90.00,N
-,D7715FC0-FFF0-49E8-BBF2-B214FB7657BD WINDOW,WINDOW_CONSTRUCTION_1,0.95,0.00,0.00,0.95,0.95,2.954,0.391,0.305,,,No,D7715FC0-FFF0-49E8-BBF2-B214FB7657BD,0.34,90.00,N
-,15BE4F13-5041-40DA-828A-AA96F6A79F83 WINDOW,WINDOW_CONSTRUCTION_1,11.21,0.00,0.00,11.21,11.21,2.954,0.391,0.305,,,No,15BE4F13-5041-40DA-828A-AA96F6A79F83,270.10,90.00,W
-,51F929D1-6F74-4810-94B9-0B8F70D66803 WINDOW,WINDOW_CONSTRUCTION_1,10.67,0.00,0.00,10.67,10.67,2.954,0.391,0.305,,,No,51F929D1-6F74-4810-94B9-0B8F70D66803,89.40,90.00,E
-,2BCD823F-1C3E-4F9C-B84E-D718D5082F2C WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,2BCD823F-1C3E-4F9C-B84E-D718D5082F2C,90.32,90.00,E
-,FA9C545C-E963-48BE-B73F-0908F95DC1A8 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,FA9C545C-E963-48BE-B73F-0908F95DC1A8,269.70,90.00,W
-,1E8DA8FA-960F-48EA-BAE6-C96886703FEB WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,1E8DA8FA-960F-48EA-BAE6-C96886703FEB,89.40,90.00,E
-,9A857E9E-0A4F-4341-86DB-93C15D7327BF WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,9A857E9E-0A4F-4341-86DB-93C15D7327BF,270.10,90.00,W
-,058D5268-0E0E-47DE-90BA-FD670EAFBE04 WINDOW,WINDOW_CONSTRUCTION_1,11.17,0.00,0.00,11.17,11.17,2.954,0.391,0.305,,,No,058D5268-0E0E-47DE-90BA-FD670EAFBE04,89.40,90.00,E
-,04ABB7BF-01B2-47C2-853A-397C11F9AEB3 WINDOW,WINDOW_CONSTRUCTION_1,11.21,0.00,0.00,11.21,11.21,2.954,0.391,0.305,,,No,04ABB7BF-01B2-47C2-853A-397C11F9AEB3,270.10,90.00,W
-,5A472962-FD05-4257-ADCC-5B11C96EC905 WINDOW,WINDOW_CONSTRUCTION_1,22.18,0.00,0.00,22.18,22.18,2.954,0.391,0.305,,,No,5A472962-FD05-4257-ADCC-5B11C96EC905,180.04,90.00,S
-,9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504 WINDOW,WINDOW_CONSTRUCTION_1,0.78,0.00,0.00,0.78,0.78,2.954,0.391,0.305,,,No,9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504,179.52,90.00,S
-,78EAEFA8-107D-43DB-8DBE-8E4F65EA1AB4 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,78EAEFA8-107D-43DB-8DBE-8E4F65EA1AB4,89.40,90.00,E
-,FF2A5ADF-5DA5-4533-A9D5-099FF8C65DED WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,FF2A5ADF-5DA5-4533-A9D5-099FF8C65DED,270.10,90.00,W
-,62DCE0A4-304F-4E6C-9A57-D00E4334928B WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,62DCE0A4-304F-4E6C-9A57-D00E4334928B,89.40,90.00,E
-,B9A54D53-0695-468C-8E3C-E0D957C0FEF6 WINDOW,WINDOW_CONSTRUCTION_1,10.34,0.00,0.00,10.34,10.34,2.954,0.391,0.305,,,No,B9A54D53-0695-468C-8E3C-E0D957C0FEF6,270.10,90.00,W
+,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
,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 1f138b75..9e5fd969 100644
--- a/out_files/Montreal_tbl.htm
+++ b/out_files/Montreal_tbl.htm
@@ -3,26 +3,26 @@
Buildings in b'Montreal' RUN PERIOD 1 ** Montreal Int'l PQ CAN WYEC2-B-94792 WMO#=716270
2023-12-28
- 18:51:39
+ 20:22:29
- EnergyPlus
Table of Contents
-Program Version:EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 18:51
+Program Version:EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22
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
- 18:51:39
+ 20:22:29
Table of Contents
Report: Annual Building Utility Performance Summary
For: Entire Facility
Timestamp: 2023-12-28
- 18:51:39
+ 20:22:29
Values gathered over 8760.00 hours
Site and Source Energy
@@ -1612,7 +1612,7 @@ 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
- 18:51:39
+ 20:22:29
General
@@ -1621,7 +1621,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
Program Version and Build |
- EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 18:51 |
+ EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2023.12.28 20:22 |
RunPeriod |
@@ -2037,7 +2037,7 @@ 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
- 18:51:39
+ 20:22:29
End Uses
@@ -3105,14 +3105,14 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
Report: Component Sizing Summary
For: Entire Facility
Timestamp: 2023-12-28
- 18:51:39
+ 20:22:29
Table of Contents
Report: Adaptive Comfort Summary
For: Entire Facility
Timestamp: 2023-12-28
- 18:51:39
+ 20:22:29
Time Not Meeting the Adaptive Comfort Models during Occupied Hours
@@ -3131,7 +3131,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
Report: Climatic Data Summary
For: Entire Facility
Timestamp: 2023-12-28
- 18:51:39
+ 20:22:29
SizingPeriod:DesignDay
@@ -3172,7 +3172,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
Report: Envelope Summary
For: Entire Facility
Timestamp: 2023-12-28
- 18:51:39
+ 20:22:29
Opaque Exterior
@@ -3188,7 +3188,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
Cardinal Direction |
- D2694CC9-3DBE-4717-9750-66D7408F584C |
+ E9A776D7-C08A-4903-BDDE-33A1B75C006F |
1981_1990_6 |
0.40 |
0.644 |
@@ -3200,7 +3200,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- 12650E00-DBA9-4EC4-9C20-53D86D021A6D |
+ 06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3212,7 +3212,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- 672466A2-FD8B-48E2-A12B-2B6D13DC46EF |
+ 49A6A0D1-21FA-4174-A2E8-6E59F41BE8B9 |
1981_1990_6 |
0.40 |
0.639 |
@@ -3224,7 +3224,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 29AECAA4-5B2C-4250-9DCF-F072A6F957E9 |
+ 6714F8CE-FBE1-41FA-8146-152344E45E89 |
1981_1990_6 |
0.40 |
0.649 |
@@ -3236,7 +3236,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- C9344243-BB60-434B-BBAE-00A55242DE52 |
+ A0CC674E-7FF5-4E87-8D8B-D2879920F518 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3248,7 +3248,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- 59B89D19-7A3A-44A2-B16C-0F06DDD49440 |
+ 6894AE2C-4DE8-4004-B743-24810745043C |
1981_1990_6 |
0.40 |
0.644 |
@@ -3260,7 +3260,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- 3C075050-1588-4E73-A4A8-6A042DBC0278 |
+ 8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3272,7 +3272,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- 150A344C-F603-48B4-951F-96EB17D23D60 |
+ 3476659A-7777-4217-879B-EC7411A9F8F4 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3284,7 +3284,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- 8634DC17-B8D8-4B49-989E-8079C194833B |
+ A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3296,7 +3296,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- 0207BA60-C2FB-4BC0-AE4D-423BBA669056 |
+ D6F1DC5C-00EA-4F85-AAA6-4D2C54BFA8A8 |
1981_1990_6 |
0.40 |
0.639 |
@@ -3308,7 +3308,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 01D13815-2EF5-4939-87D0-6EB66A6EEF74 |
+ A804AC39-E991-4FA7-8EBD-6E9DE27C6449 |
1981_1990_6 |
0.40 |
0.649 |
@@ -3320,7 +3320,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 3E41BF94-7CF6-4888-8967-25B24F9DC668 |
+ D29ED729-A377-4D42-8E37-86D29FAA692B |
1981_1990_6 |
0.40 |
0.644 |
@@ -3332,7 +3332,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- E4461C89-D956-48D0-9146-F19E8660F0A5 |
+ 1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF |
1981_1990_6 |
0.40 |
0.644 |
@@ -3344,7 +3344,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- 4D0A880D-084D-4A1D-A39F-9F5FA319A6EA |
+ 9027AB96-D388-4204-9515-8638E09E0D23 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3356,7 +3356,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- 9F31F68D-49DB-487B-ACD5-6C5A0ED86612 |
+ D80E753D-3A26-4EDA-90B8-B445FDD923B1 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3368,7 +3368,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- 67679EF7-4689-4D8E-A167-1D714F76E1A3 |
+ D2676432-8B98-4881-B152-C2993D54E04B |
1981_1990_6 |
0.40 |
0.644 |
@@ -3380,7 +3380,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- 44B08664-F1C8-4296-99DB-7BE2E02C8254 |
+ CABC4BC7-A75C-4989-AEDA-0753936A5DEE |
1981_1990_6 |
0.40 |
0.644 |
@@ -3392,7 +3392,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- 5CE34BFC-24D0-4CB6-91E7-8652D7354F39 |
+ 7C52C57C-7025-415D-A9B8-F5AAF8F58535 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3404,7 +3404,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- FF8E2017-074C-4F16-AF3A-311410837EED |
+ 9DE3270A-551D-407E-A8B2-0639AE103505 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3416,7 +3416,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- BF1F1F37-241C-42E3-B054-B0FF550F8635 |
+ 197A0D24-9F0A-416B-AB79-18597F66C1AC |
1981_1990_6 |
0.40 |
0.644 |
@@ -3428,7 +3428,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- 31CDD59B-48E0-406D-BEE1-6046D43751B7 |
+ FA41C2ED-457A-4E6B-9607-BDA10B64A2EE |
1981_1990_6 |
0.40 |
0.644 |
@@ -3440,7 +3440,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- 2AC4CA0B-4DBE-4166-9C39-FCDAB475F3C0 |
+ 6138DF36-E729-49F2-B62F-4870FC39C64F |
1981_1990_6 |
0.40 |
0.644 |
@@ -3452,7 +3452,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- F67C279F-5341-4F00-A38A-CD4F391AADC1 |
+ B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3464,7 +3464,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- D997FCD7-8889-44D4-9CD4-9B562516CED9 |
+ 7B0DA88C-0B47-4D1A-B84E-AEB70E93020C |
1981_1990_6 |
0.40 |
0.644 |
@@ -3476,7 +3476,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- 2B08C63B-0380-4D2A-8604-7FBA958F3869 |
+ DD970E33-A623-4CE7-AAFB-8ED198B8CA1C |
1981_1990_6 |
0.40 |
0.644 |
@@ -3488,7 +3488,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- 3F1DAF72-41A2-4969-A152-EA48AEF4DAE2 |
+ 02CDC36C-704D-47B9-AFEC-41F43222D0F4 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3500,7 +3500,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA |
+ 2142EBB0-161E-43EE-B6DE-A5DAD97612CC |
1981_1990_6 |
0.40 |
0.644 |
@@ -3512,7 +3512,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- 19C12E03-DBAB-463E-8E67-561987F1BEE2 |
+ BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3524,7 +3524,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- CFFCC56F-2539-471F-86AC-5B1FB59D5864 |
+ 1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3536,7 +3536,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- 3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE |
+ B227DDA2-BC10-42A6-BFEB-B934B789F695 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3548,7 +3548,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- 46864059-27D4-44AC-A655-C4CB8A693393 |
+ D86FC62F-269C-45DE-84ED-D5A196E2095E |
1981_1990_6 |
0.40 |
0.644 |
@@ -3560,7 +3560,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- 8B189C8C-9C0F-4D6F-B370-DB1B3364DC14 |
+ 95977B63-DA57-40D5-A214-4D2FABCA5347 |
1981_1990_6 |
0.40 |
0.639 |
@@ -3572,7 +3572,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 0E6A4045-A150-4949-A4EC-C4EF53E324DA |
+ D6A7ED84-8E6C-4CB5-835C-1ADA1608F8DE |
1981_1990_6 |
0.40 |
0.649 |
@@ -3584,7 +3584,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 59390046-7599-4186-A026-5C3A7DDE88F5 |
+ CDB601E5-0866-416B-89EB-D048E5859786 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3596,7 +3596,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- 4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97 |
+ C0C8C17C-FC22-4B92-A946-702E972AA329 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3608,7 +3608,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029 |
+ D280607F-5351-4A50-81CD-D03DF7A28C0D |
1981_1990_6 |
0.40 |
0.644 |
@@ -3620,7 +3620,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- 9B94C26B-39F3-4336-9E7A-AC254D30D6AC |
+ BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3632,7 +3632,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- 69D98CE1-163A-4688-BDD8-620D9E324AA0 |
+ BEF1B1AB-759C-483F-939C-BFCA5B2118EF |
1981_1990_6 |
0.40 |
0.644 |
@@ -3644,7 +3644,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- D30F611A-272A-4CD3-B953-311557F2C325 |
+ 8C214F58-37B7-4E41-AFEB-B048BCA834AE |
1981_1990_6 |
0.40 |
0.639 |
@@ -3656,7 +3656,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 816C595D-F720-47AC-A04C-114371D74F98 |
+ 37756D72-403D-46F2-9CDE-4E412064828F |
1981_1990_6 |
0.40 |
0.649 |
@@ -3668,7 +3668,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 8333827C-64D9-4384-908C-A52B523E0F4E |
+ BEF3D9A2-B25F-44E4-B611-E021B6179865 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3680,7 +3680,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- 9DCC0E5D-D352-4F9D-AAC7-ED1F95857686 |
+ EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3692,7 +3692,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- 5A47FB83-CC5E-4E41-A966-473A78AA3D5A |
+ 955BDC8B-FADC-4DC9-9146-015E44F6D0F9 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3704,7 +3704,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- A7F9A836-6648-4972-9A3D-CADF02C08396 |
+ 74146306-5CC3-4DF9-B2DD-4E2FE410DA48 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3716,7 +3716,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- E6615A35-5D23-4A84-954C-4F36AFFA9A82 |
+ E562FE09-B0C0-4242-8049-66A78D056BB6 |
1981_1990_6 |
0.40 |
0.639 |
@@ -3728,7 +3728,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- A8B26E1F-5CA1-4D6B-8813-7FD1AC23040A |
+ 13DA738A-2538-4FBE-A6AC-9E17A5A66381 |
1981_1990_6 |
0.40 |
0.649 |
@@ -3740,7 +3740,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 642D4A50-D5E3-48C1-8CF3-C2CF24830304 |
+ BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3752,7 +3752,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- F84E0874-B44E-4FF2-BC04-CB9797175003 |
+ 910EC237-D19C-44D2-A0AF-53394D66BADB |
1981_1990_6 |
0.40 |
0.644 |
@@ -3764,7 +3764,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- D7715FC0-FFF0-49E8-BBF2-B214FB7657BD |
+ DC8B7A69-B843-43F8-810C-AF6503E94ABF |
1981_1990_6 |
0.40 |
0.644 |
@@ -3776,7 +3776,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- 15BE4F13-5041-40DA-828A-AA96F6A79F83 |
+ DD09FB31-D077-415A-8A35-D4B8E4105F74 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3788,7 +3788,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- 51F929D1-6F74-4810-94B9-0B8F70D66803 |
+ 3EB30793-160D-41D4-AD8A-36E1CFF208C6 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3800,7 +3800,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- B773B0FF-C402-4155-9D39-50317B682A7D |
+ 61BE9590-EE2C-4510-A65E-9D9707059D72 |
1981_1990_6 |
0.40 |
0.639 |
@@ -3812,7 +3812,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 31854275-1131-465E-9F08-8B4BA45C944C |
+ 29AA4E15-EC14-45B9-BE01-3968B1F66BA3 |
1981_1990_6 |
0.40 |
0.649 |
@@ -3824,7 +3824,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 2BCD823F-1C3E-4F9C-B84E-D718D5082F2C |
+ 74CA1532-4928-42E1-AE6C-111556837B7E |
1981_1990_6 |
0.40 |
0.644 |
@@ -3836,7 +3836,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- FA9C545C-E963-48BE-B73F-0908F95DC1A8 |
+ B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3848,7 +3848,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- 783FEDBD-3A04-4545-B9B4-8AE7C4EAC526 |
+ 2389DAE8-0F83-4E21-8250-4E7DC4FE3025 |
1981_1990_6 |
0.40 |
0.639 |
@@ -3860,7 +3860,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 8706C343-9590-4BD1-8B85-1CAB22E3B38A |
+ D3620589-F605-42A2-8A8A-5A76A2147B39 |
1981_1990_6 |
0.40 |
0.649 |
@@ -3872,7 +3872,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 1E8DA8FA-960F-48EA-BAE6-C96886703FEB |
+ DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3884,7 +3884,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- 9A857E9E-0A4F-4341-86DB-93C15D7327BF |
+ E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3896,7 +3896,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- 4A42EC2A-0326-4C00-B654-E47B54C6B560 |
+ BDEE1547-D4C7-40C6-9996-7530EF5A1A75 |
1981_1990_6 |
0.40 |
0.639 |
@@ -3908,7 +3908,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- C6167CE0-8BDB-4E2C-BCFB-02A8E11213FA |
+ A4840188-8DF8-4EAA-B5F2-EA27AD8DA333 |
1981_1990_6 |
0.40 |
0.649 |
@@ -3920,7 +3920,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 058D5268-0E0E-47DE-90BA-FD670EAFBE04 |
+ 869A399D-0DA3-4CDE-AD63-60BFDAC22071 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3932,7 +3932,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- 04ABB7BF-01B2-47C2-853A-397C11F9AEB3 |
+ 6ED55F0D-F5CD-49C2-8F09-54D704A502FA |
1981_1990_6 |
0.40 |
0.644 |
@@ -3944,7 +3944,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- 5A472962-FD05-4257-ADCC-5B11C96EC905 |
+ DBABEAFE-8C2D-40EF-A157-12F9BA741B94 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3956,7 +3956,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- 9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504 |
+ 690A4F44-19B1-4DE4-9442-7B0128C1D064 |
1981_1990_6 |
0.40 |
0.644 |
@@ -3968,7 +3968,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- 48AC80C6-B175-45E1-97E2-5BCF75C7D5DA |
+ DB7435CB-E409-4E62-8B46-061B84825686 |
1981_1990_6 |
0.40 |
0.639 |
@@ -3980,7 +3980,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 6A43D3BF-4E99-4F40-B4E1-8237E6990E4F |
+ 1642787D-CDB7-40B1-96DE-A28B6B1A6568 |
1981_1990_6 |
0.40 |
0.649 |
@@ -3992,7 +3992,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 78EAEFA8-107D-43DB-8DBE-8E4F65EA1AB4 |
+ 6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F |
1981_1990_6 |
0.40 |
0.644 |
@@ -4004,7 +4004,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- FF2A5ADF-5DA5-4533-A9D5-099FF8C65DED |
+ 6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 |
1981_1990_6 |
0.40 |
0.644 |
@@ -4016,7 +4016,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- 19B32DF5-BD49-4F37-8737-C8B35C4D2E6F |
+ 667683E9-4698-4804-B300-2FE5E1E6E939 |
1981_1990_6 |
0.40 |
0.639 |
@@ -4028,7 +4028,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 93C039B0-F217-4BEE-86DF-8F876AE8B18E |
+ DB7DB81A-75B9-413D-B49C-B589478D35E6 |
1981_1990_6 |
0.40 |
0.649 |
@@ -4040,7 +4040,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 62DCE0A4-304F-4E6C-9A57-D00E4334928B |
+ 531634DB-2C61-44A3-80D9-94A5852E16AB |
1981_1990_6 |
0.40 |
0.644 |
@@ -4052,7 +4052,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
E |
- B9A54D53-0695-468C-8E3C-E0D957C0FEF6 |
+ 5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13 |
1981_1990_6 |
0.40 |
0.644 |
@@ -4064,7 +4064,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
W |
- FD51B87C-F1BA-41D8-A992-25F6C9517A81 |
+ A6172439-540E-4D31-A8BC-32DD402924E1 |
1981_1990_6 |
0.40 |
0.639 |
@@ -4076,7 +4076,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
- 7693E158-2471-4832-ADD0-A7D14C5CD21B |
+ 4A849183-D5E9-40D6-8A77-38B11B46433E |
1981_1990_6 |
0.40 |
0.649 |
@@ -4104,7 +4104,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
Cardinal Direction |
- A6A2AA11-EBBD-43A9-B252-6FC4397E8081 |
+ F4521949-B172-4B21-BF0B-6432AA6135A1 |
1981_1990_6 |
0.40 |
0.609 |
@@ -4116,7 +4116,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- 06385373-1CAD-49CF-B6C5-4941976DF31E |
+ E8BF2A49-1558-41BC-96CB-123915D688BF |
1981_1990_6 |
0.40 |
0.609 |
@@ -4128,7 +4128,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- 06FF86F4-0A29-4F47-871C-773F4FC12A85 |
+ DEB2FACA-865F-4594-9474-DBC514C3E015 |
1981_1990_6 |
0.40 |
0.609 |
@@ -4140,7 +4140,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- 0176C6E0-DB9E-45CE-BB96-F4C7305D3006 |
+ 1B24CA94-8734-4D2B-B6FD-E88558AED682 |
1981_1990_6 |
0.40 |
0.609 |
@@ -4152,7 +4152,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- CF1FFFE1-0D40-458A-9FAB-42BC6EFEF9E9 |
+ EE425A30-D8EE-49AE-A2B1-23E47576E76C |
1981_1990_6 |
0.40 |
0.609 |
@@ -4164,7 +4164,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- E107ACD3-80A3-46C8-AB22-6303CE6B830F |
+ 2BA28A3D-41A2-4142-8333-FF3F43829C37 |
1981_1990_6 |
0.40 |
0.609 |
@@ -4176,7 +4176,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- 6E2347F3-CB34-4BD4-B7E0-90FA881924E0 |
+ A4BBE0E0-AC85-41F6-BAE0-458ACD59E93C |
1981_1990_6 |
0.40 |
0.609 |
@@ -4188,7 +4188,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- F1DD5477-48D5-4CB9-98B6-3905972D8ED6 |
+ EFAC6C0B-D77A-473F-BC48-BDD80EC20B23 |
1981_1990_6 |
0.40 |
0.609 |
@@ -4200,7 +4200,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- 6CA1B622-F6AC-46AE-AFA6-F77F52CCDB9B |
+ DF3E69B8-FC69-416B-9D2C-1D745DF31EFD |
1981_1990_6 |
0.40 |
0.609 |
@@ -4212,7 +4212,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- 964C9D07-AB26-44D1-A193-DCDFE9E34BED |
+ D9827025-1B3E-4617-9371-9B0E29A8780B |
1981_1990_6 |
0.40 |
0.609 |
@@ -4224,7 +4224,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- A4727B73-BFCC-4ED1-8B57-D61BE82393E6 |
+ A4693CFB-6E07-41DD-A6DF-8D7D0F6BA3DF |
1981_1990_6 |
0.40 |
0.609 |
@@ -4236,7 +4236,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- 626A04E5-2AE7-49E1-8CE8-6ED71F2B9A25 |
+ B5A2B9C9-8D44-4989-BE67-67A10674D72D |
1981_1990_6 |
0.40 |
0.609 |
@@ -4248,7 +4248,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
S |
- 2D86181D-B6D0-4963-B805-B062AF09ED4D |
+ C851CA53-49E9-4A43-9F95-215079B2D5D7 |
1981_1990_6 |
0.40 |
0.609 |
@@ -4260,7 +4260,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
N |
- 9A2F2953-76F5-4861-A4C8-DA901D39C5AA |
+ 1F386A70-23F0-46A2-AEB6-322BED09B91F |
1981_1990_6 |
0.40 |
0.609 |
@@ -4295,7 +4295,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
Cardinal Direction |
- D2694CC9-3DBE-4717-9750-66D7408F584C WINDOW |
+ E9A776D7-C08A-4903-BDDE-33A1B75C006F WINDOW |
WINDOW_CONSTRUCTION_1 |
10.34 |
0.00 |
@@ -4308,13 +4308,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- D2694CC9-3DBE-4717-9750-66D7408F584C |
+ E9A776D7-C08A-4903-BDDE-33A1B75C006F |
90.32 |
90.00 |
E |
- 12650E00-DBA9-4EC4-9C20-53D86D021A6D WINDOW |
+ 06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 WINDOW |
WINDOW_CONSTRUCTION_1 |
10.34 |
0.00 |
@@ -4327,13 +4327,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 12650E00-DBA9-4EC4-9C20-53D86D021A6D |
+ 06E83EFC-71D1-45FE-85EA-E7EE9A7664B1 |
269.70 |
90.00 |
W |
- C9344243-BB60-434B-BBAE-00A55242DE52 WINDOW |
+ A0CC674E-7FF5-4E87-8D8B-D2879920F518 WINDOW |
WINDOW_CONSTRUCTION_1 |
9.25 |
0.00 |
@@ -4346,13 +4346,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- C9344243-BB60-434B-BBAE-00A55242DE52 |
+ A0CC674E-7FF5-4E87-8D8B-D2879920F518 |
90.32 |
90.00 |
E |
- 59B89D19-7A3A-44A2-B16C-0F06DDD49440 WINDOW |
+ 6894AE2C-4DE8-4004-B743-24810745043C WINDOW |
WINDOW_CONSTRUCTION_1 |
1.76 |
0.00 |
@@ -4365,13 +4365,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 59B89D19-7A3A-44A2-B16C-0F06DDD49440 |
+ 6894AE2C-4DE8-4004-B743-24810745043C |
89.91 |
90.00 |
E |
- 3C075050-1588-4E73-A4A8-6A042DBC0278 WINDOW |
+ 8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 WINDOW |
WINDOW_CONSTRUCTION_1 |
21.76 |
0.00 |
@@ -4384,13 +4384,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 3C075050-1588-4E73-A4A8-6A042DBC0278 |
+ 8A44DCD0-5EAF-4EA2-83D6-E10CC7697FC1 |
0.06 |
90.00 |
N |
- 150A344C-F603-48B4-951F-96EB17D23D60 WINDOW |
+ 3476659A-7777-4217-879B-EC7411A9F8F4 WINDOW |
WINDOW_CONSTRUCTION_1 |
0.86 |
0.00 |
@@ -4403,13 +4403,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 150A344C-F603-48B4-951F-96EB17D23D60 |
+ 3476659A-7777-4217-879B-EC7411A9F8F4 |
359.13 |
90.00 |
N |
- 8634DC17-B8D8-4B49-989E-8079C194833B WINDOW |
+ A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 WINDOW |
WINDOW_CONSTRUCTION_1 |
10.96 |
0.00 |
@@ -4422,13 +4422,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 8634DC17-B8D8-4B49-989E-8079C194833B |
+ A987C29F-99C1-411A-9CC3-0AFBB35D9AB2 |
269.70 |
90.00 |
W |
- 3E41BF94-7CF6-4888-8967-25B24F9DC668 WINDOW |
+ D29ED729-A377-4D42-8E37-86D29FAA692B WINDOW |
WINDOW_CONSTRUCTION_1 |
48.49 |
0.00 |
@@ -4441,13 +4441,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 3E41BF94-7CF6-4888-8967-25B24F9DC668 |
+ D29ED729-A377-4D42-8E37-86D29FAA692B |
270.37 |
90.00 |
W |
- E4461C89-D956-48D0-9146-F19E8660F0A5 WINDOW |
+ 1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF WINDOW |
WINDOW_CONSTRUCTION_1 |
7.68 |
0.00 |
@@ -4460,13 +4460,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- E4461C89-D956-48D0-9146-F19E8660F0A5 |
+ 1D1DBDBF-A442-426B-ABA9-A6644EC6CCAF |
0.73 |
90.00 |
N |
- 4D0A880D-084D-4A1D-A39F-9F5FA319A6EA WINDOW |
+ 9027AB96-D388-4204-9515-8638E09E0D23 WINDOW |
WINDOW_CONSTRUCTION_1 |
9.13 |
0.00 |
@@ -4479,13 +4479,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 4D0A880D-084D-4A1D-A39F-9F5FA319A6EA |
+ 9027AB96-D388-4204-9515-8638E09E0D23 |
269.95 |
90.00 |
W |
- 9F31F68D-49DB-487B-ACD5-6C5A0ED86612 WINDOW |
+ D80E753D-3A26-4EDA-90B8-B445FDD923B1 WINDOW |
WINDOW_CONSTRUCTION_1 |
5.95 |
0.00 |
@@ -4498,13 +4498,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 9F31F68D-49DB-487B-ACD5-6C5A0ED86612 |
+ D80E753D-3A26-4EDA-90B8-B445FDD923B1 |
0.68 |
90.00 |
N |
- 67679EF7-4689-4D8E-A167-1D714F76E1A3 WINDOW |
+ D2676432-8B98-4881-B152-C2993D54E04B WINDOW |
WINDOW_CONSTRUCTION_1 |
59.55 |
0.00 |
@@ -4517,13 +4517,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 67679EF7-4689-4D8E-A167-1D714F76E1A3 |
+ D2676432-8B98-4881-B152-C2993D54E04B |
270.63 |
90.00 |
W |
- 44B08664-F1C8-4296-99DB-7BE2E02C8254 WINDOW |
+ CABC4BC7-A75C-4989-AEDA-0753936A5DEE WINDOW |
WINDOW_CONSTRUCTION_1 |
1.59 |
0.00 |
@@ -4536,13 +4536,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 44B08664-F1C8-4296-99DB-7BE2E02C8254 |
+ CABC4BC7-A75C-4989-AEDA-0753936A5DEE |
271.07 |
90.00 |
W |
- 5CE34BFC-24D0-4CB6-91E7-8652D7354F39 WINDOW |
+ 7C52C57C-7025-415D-A9B8-F5AAF8F58535 WINDOW |
WINDOW_CONSTRUCTION_1 |
6.70 |
0.00 |
@@ -4555,13 +4555,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 5CE34BFC-24D0-4CB6-91E7-8652D7354F39 |
+ 7C52C57C-7025-415D-A9B8-F5AAF8F58535 |
180.88 |
90.00 |
S |
- FF8E2017-074C-4F16-AF3A-311410837EED WINDOW |
+ 9DE3270A-551D-407E-A8B2-0639AE103505 WINDOW |
WINDOW_CONSTRUCTION_1 |
8.72 |
0.00 |
@@ -4574,13 +4574,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- FF8E2017-074C-4F16-AF3A-311410837EED |
+ 9DE3270A-551D-407E-A8B2-0639AE103505 |
270.81 |
90.00 |
W |
- BF1F1F37-241C-42E3-B054-B0FF550F8635 WINDOW |
+ 197A0D24-9F0A-416B-AB79-18597F66C1AC WINDOW |
WINDOW_CONSTRUCTION_1 |
9.04 |
0.00 |
@@ -4593,13 +4593,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- BF1F1F37-241C-42E3-B054-B0FF550F8635 |
+ 197A0D24-9F0A-416B-AB79-18597F66C1AC |
180.83 |
90.00 |
S |
- 31CDD59B-48E0-406D-BEE1-6046D43751B7 WINDOW |
+ FA41C2ED-457A-4E6B-9607-BDA10B64A2EE WINDOW |
WINDOW_CONSTRUCTION_1 |
47.57 |
0.00 |
@@ -4612,13 +4612,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 31CDD59B-48E0-406D-BEE1-6046D43751B7 |
+ FA41C2ED-457A-4E6B-9607-BDA10B64A2EE |
270.81 |
90.00 |
W |
- 2AC4CA0B-4DBE-4166-9C39-FCDAB475F3C0 WINDOW |
+ 6138DF36-E729-49F2-B62F-4870FC39C64F WINDOW |
WINDOW_CONSTRUCTION_1 |
98.64 |
0.00 |
@@ -4631,13 +4631,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 2AC4CA0B-4DBE-4166-9C39-FCDAB475F3C0 |
+ 6138DF36-E729-49F2-B62F-4870FC39C64F |
180.80 |
90.00 |
S |
- F67C279F-5341-4F00-A38A-CD4F391AADC1 WINDOW |
+ B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 WINDOW |
WINDOW_CONSTRUCTION_1 |
1.46 |
0.00 |
@@ -4650,13 +4650,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- F67C279F-5341-4F00-A38A-CD4F391AADC1 |
+ B1DB9AE1-C1A3-41AB-9591-E8BD85E6E624 |
181.90 |
90.00 |
S |
- D997FCD7-8889-44D4-9CD4-9B562516CED9 WINDOW |
+ 7B0DA88C-0B47-4D1A-B84E-AEB70E93020C WINDOW |
WINDOW_CONSTRUCTION_1 |
2.94 |
0.00 |
@@ -4669,13 +4669,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- D997FCD7-8889-44D4-9CD4-9B562516CED9 |
+ 7B0DA88C-0B47-4D1A-B84E-AEB70E93020C |
90.30 |
90.00 |
E |
- 2B08C63B-0380-4D2A-8604-7FBA958F3869 WINDOW |
+ DD970E33-A623-4CE7-AAFB-8ED198B8CA1C WINDOW |
WINDOW_CONSTRUCTION_1 |
12.79 |
0.00 |
@@ -4688,13 +4688,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 2B08C63B-0380-4D2A-8604-7FBA958F3869 |
+ DD970E33-A623-4CE7-AAFB-8ED198B8CA1C |
180.36 |
90.00 |
S |
- 3F1DAF72-41A2-4969-A152-EA48AEF4DAE2 WINDOW |
+ 02CDC36C-704D-47B9-AFEC-41F43222D0F4 WINDOW |
WINDOW_CONSTRUCTION_1 |
59.93 |
0.00 |
@@ -4707,13 +4707,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 3F1DAF72-41A2-4969-A152-EA48AEF4DAE2 |
+ 02CDC36C-704D-47B9-AFEC-41F43222D0F4 |
90.35 |
90.00 |
E |
- A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA WINDOW |
+ 2142EBB0-161E-43EE-B6DE-A5DAD97612CC WINDOW |
WINDOW_CONSTRUCTION_1 |
78.94 |
0.00 |
@@ -4726,13 +4726,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- A5F9C8E4-E0BD-4126-9F54-BA9A44FBA8EA |
+ 2142EBB0-161E-43EE-B6DE-A5DAD97612CC |
0.36 |
90.00 |
N |
- 19C12E03-DBAB-463E-8E67-561987F1BEE2 WINDOW |
+ BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 WINDOW |
WINDOW_CONSTRUCTION_1 |
50.93 |
0.00 |
@@ -4745,13 +4745,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 19C12E03-DBAB-463E-8E67-561987F1BEE2 |
+ BF2A5A5A-2C66-46BB-9F00-08702FF2CEA2 |
90.36 |
90.00 |
E |
- CFFCC56F-2539-471F-86AC-5B1FB59D5864 WINDOW |
+ 1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 WINDOW |
WINDOW_CONSTRUCTION_1 |
77.92 |
0.00 |
@@ -4764,13 +4764,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- CFFCC56F-2539-471F-86AC-5B1FB59D5864 |
+ 1DA28FD9-438E-44B3-8AB1-D14CD1DCD738 |
180.36 |
90.00 |
S |
- 3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE WINDOW |
+ B227DDA2-BC10-42A6-BFEB-B934B789F695 WINDOW |
WINDOW_CONSTRUCTION_1 |
62.10 |
0.00 |
@@ -4783,13 +4783,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 3BEF2BFE-91B4-4660-B7D3-4CAC5D9D97AE |
+ B227DDA2-BC10-42A6-BFEB-B934B789F695 |
90.36 |
90.00 |
E |
- 46864059-27D4-44AC-A655-C4CB8A693393 WINDOW |
+ D86FC62F-269C-45DE-84ED-D5A196E2095E WINDOW |
WINDOW_CONSTRUCTION_1 |
113.26 |
0.00 |
@@ -4802,13 +4802,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 46864059-27D4-44AC-A655-C4CB8A693393 |
+ D86FC62F-269C-45DE-84ED-D5A196E2095E |
0.35 |
90.00 |
N |
- 59390046-7599-4186-A026-5C3A7DDE88F5 WINDOW |
+ CDB601E5-0866-416B-89EB-D048E5859786 WINDOW |
WINDOW_CONSTRUCTION_1 |
1.01 |
0.00 |
@@ -4821,13 +4821,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 59390046-7599-4186-A026-5C3A7DDE88F5 |
+ CDB601E5-0866-416B-89EB-D048E5859786 |
358.71 |
90.00 |
N |
- 4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97 WINDOW |
+ C0C8C17C-FC22-4B92-A946-702E972AA329 WINDOW |
WINDOW_CONSTRUCTION_1 |
0.80 |
0.00 |
@@ -4840,13 +4840,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 4CDDF35C-0CB9-43BD-B14F-A274AC5E2E97 |
+ C0C8C17C-FC22-4B92-A946-702E972AA329 |
90.31 |
90.00 |
E |
- F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029 WINDOW |
+ D280607F-5351-4A50-81CD-D03DF7A28C0D WINDOW |
WINDOW_CONSTRUCTION_1 |
11.78 |
0.00 |
@@ -4859,13 +4859,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- F8BF4FC4-F1AC-4BED-A1DC-DE3A22D5D029 |
+ D280607F-5351-4A50-81CD-D03DF7A28C0D |
269.70 |
90.00 |
W |
- 9B94C26B-39F3-4336-9E7A-AC254D30D6AC WINDOW |
+ BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113 WINDOW |
WINDOW_CONSTRUCTION_1 |
25.78 |
0.00 |
@@ -4878,13 +4878,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 9B94C26B-39F3-4336-9E7A-AC254D30D6AC |
+ BEFA0F66-ABF7-4E7A-A02C-0B31BABEA113 |
179.68 |
90.00 |
S |
- 69D98CE1-163A-4688-BDD8-620D9E324AA0 WINDOW |
+ BEF1B1AB-759C-483F-939C-BFCA5B2118EF WINDOW |
WINDOW_CONSTRUCTION_1 |
10.80 |
0.00 |
@@ -4897,13 +4897,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 69D98CE1-163A-4688-BDD8-620D9E324AA0 |
+ BEF1B1AB-759C-483F-939C-BFCA5B2118EF |
89.74 |
90.00 |
E |
- 8333827C-64D9-4384-908C-A52B523E0F4E WINDOW |
+ BEF3D9A2-B25F-44E4-B611-E021B6179865 WINDOW |
WINDOW_CONSTRUCTION_1 |
12.11 |
0.00 |
@@ -4916,13 +4916,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 8333827C-64D9-4384-908C-A52B523E0F4E |
+ BEF3D9A2-B25F-44E4-B611-E021B6179865 |
90.03 |
90.00 |
E |
- 9DCC0E5D-D352-4F9D-AAC7-ED1F95857686 WINDOW |
+ EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 WINDOW |
WINDOW_CONSTRUCTION_1 |
26.05 |
0.00 |
@@ -4935,13 +4935,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 9DCC0E5D-D352-4F9D-AAC7-ED1F95857686 |
+ EC306A3C-7B56-44D5-A4DE-2E6D6C180DF8 |
359.95 |
90.00 |
N |
- 5A47FB83-CC5E-4E41-A966-473A78AA3D5A WINDOW |
+ 955BDC8B-FADC-4DC9-9146-015E44F6D0F9 WINDOW |
WINDOW_CONSTRUCTION_1 |
12.02 |
0.00 |
@@ -4954,13 +4954,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 5A47FB83-CC5E-4E41-A966-473A78AA3D5A |
+ 955BDC8B-FADC-4DC9-9146-015E44F6D0F9 |
270.04 |
90.00 |
W |
- A7F9A836-6648-4972-9A3D-CADF02C08396 WINDOW |
+ 74146306-5CC3-4DF9-B2DD-4E2FE410DA48 WINDOW |
WINDOW_CONSTRUCTION_1 |
26.05 |
0.00 |
@@ -4973,13 +4973,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- A7F9A836-6648-4972-9A3D-CADF02C08396 |
+ 74146306-5CC3-4DF9-B2DD-4E2FE410DA48 |
180.13 |
90.00 |
S |
- 642D4A50-D5E3-48C1-8CF3-C2CF24830304 WINDOW |
+ BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 WINDOW |
WINDOW_CONSTRUCTION_1 |
0.80 |
0.00 |
@@ -4992,13 +4992,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 642D4A50-D5E3-48C1-8CF3-C2CF24830304 |
+ BF81A09D-7EB2-443C-9DBE-7CCF41E9E733 |
90.22 |
90.00 |
E |
- F84E0874-B44E-4FF2-BC04-CB9797175003 WINDOW |
+ 910EC237-D19C-44D2-A0AF-53394D66BADB WINDOW |
WINDOW_CONSTRUCTION_1 |
21.37 |
0.00 |
@@ -5011,13 +5011,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- F84E0874-B44E-4FF2-BC04-CB9797175003 |
+ 910EC237-D19C-44D2-A0AF-53394D66BADB |
359.45 |
90.00 |
N |
- D7715FC0-FFF0-49E8-BBF2-B214FB7657BD WINDOW |
+ DC8B7A69-B843-43F8-810C-AF6503E94ABF WINDOW |
WINDOW_CONSTRUCTION_1 |
0.95 |
0.00 |
@@ -5030,13 +5030,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- D7715FC0-FFF0-49E8-BBF2-B214FB7657BD |
+ DC8B7A69-B843-43F8-810C-AF6503E94ABF |
0.34 |
90.00 |
N |
- 15BE4F13-5041-40DA-828A-AA96F6A79F83 WINDOW |
+ DD09FB31-D077-415A-8A35-D4B8E4105F74 WINDOW |
WINDOW_CONSTRUCTION_1 |
11.21 |
0.00 |
@@ -5049,13 +5049,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 15BE4F13-5041-40DA-828A-AA96F6A79F83 |
+ DD09FB31-D077-415A-8A35-D4B8E4105F74 |
270.10 |
90.00 |
W |
- 51F929D1-6F74-4810-94B9-0B8F70D66803 WINDOW |
+ 3EB30793-160D-41D4-AD8A-36E1CFF208C6 WINDOW |
WINDOW_CONSTRUCTION_1 |
10.67 |
0.00 |
@@ -5068,13 +5068,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 51F929D1-6F74-4810-94B9-0B8F70D66803 |
+ 3EB30793-160D-41D4-AD8A-36E1CFF208C6 |
89.40 |
90.00 |
E |
- 2BCD823F-1C3E-4F9C-B84E-D718D5082F2C WINDOW |
+ 74CA1532-4928-42E1-AE6C-111556837B7E WINDOW |
WINDOW_CONSTRUCTION_1 |
10.34 |
0.00 |
@@ -5087,13 +5087,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 2BCD823F-1C3E-4F9C-B84E-D718D5082F2C |
+ 74CA1532-4928-42E1-AE6C-111556837B7E |
90.32 |
90.00 |
E |
- FA9C545C-E963-48BE-B73F-0908F95DC1A8 WINDOW |
+ B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 WINDOW |
WINDOW_CONSTRUCTION_1 |
10.34 |
0.00 |
@@ -5106,13 +5106,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- FA9C545C-E963-48BE-B73F-0908F95DC1A8 |
+ B9BE6C6F-0AFA-49AD-B01F-B622A8D5AB55 |
269.70 |
90.00 |
W |
- 1E8DA8FA-960F-48EA-BAE6-C96886703FEB WINDOW |
+ DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8 WINDOW |
WINDOW_CONSTRUCTION_1 |
10.34 |
0.00 |
@@ -5125,13 +5125,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 1E8DA8FA-960F-48EA-BAE6-C96886703FEB |
+ DDCF0603-5DA2-4BC2-8CD9-9C786EF507F8 |
89.40 |
90.00 |
E |
- 9A857E9E-0A4F-4341-86DB-93C15D7327BF WINDOW |
+ E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 WINDOW |
WINDOW_CONSTRUCTION_1 |
10.34 |
0.00 |
@@ -5144,13 +5144,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 9A857E9E-0A4F-4341-86DB-93C15D7327BF |
+ E5A6337E-9CDC-41FB-BCE3-BF0E99836FB9 |
270.10 |
90.00 |
W |
- 058D5268-0E0E-47DE-90BA-FD670EAFBE04 WINDOW |
+ 869A399D-0DA3-4CDE-AD63-60BFDAC22071 WINDOW |
WINDOW_CONSTRUCTION_1 |
11.17 |
0.00 |
@@ -5163,13 +5163,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 058D5268-0E0E-47DE-90BA-FD670EAFBE04 |
+ 869A399D-0DA3-4CDE-AD63-60BFDAC22071 |
89.40 |
90.00 |
E |
- 04ABB7BF-01B2-47C2-853A-397C11F9AEB3 WINDOW |
+ 6ED55F0D-F5CD-49C2-8F09-54D704A502FA WINDOW |
WINDOW_CONSTRUCTION_1 |
11.21 |
0.00 |
@@ -5182,13 +5182,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 04ABB7BF-01B2-47C2-853A-397C11F9AEB3 |
+ 6ED55F0D-F5CD-49C2-8F09-54D704A502FA |
270.10 |
90.00 |
W |
- 5A472962-FD05-4257-ADCC-5B11C96EC905 WINDOW |
+ DBABEAFE-8C2D-40EF-A157-12F9BA741B94 WINDOW |
WINDOW_CONSTRUCTION_1 |
22.18 |
0.00 |
@@ -5201,13 +5201,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 5A472962-FD05-4257-ADCC-5B11C96EC905 |
+ DBABEAFE-8C2D-40EF-A157-12F9BA741B94 |
180.04 |
90.00 |
S |
- 9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504 WINDOW |
+ 690A4F44-19B1-4DE4-9442-7B0128C1D064 WINDOW |
WINDOW_CONSTRUCTION_1 |
0.78 |
0.00 |
@@ -5220,13 +5220,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 9EA75E4A-DBD8-4CB4-BF7F-E2B86A814504 |
+ 690A4F44-19B1-4DE4-9442-7B0128C1D064 |
179.52 |
90.00 |
S |
- 78EAEFA8-107D-43DB-8DBE-8E4F65EA1AB4 WINDOW |
+ 6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F WINDOW |
WINDOW_CONSTRUCTION_1 |
10.34 |
0.00 |
@@ -5239,13 +5239,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 78EAEFA8-107D-43DB-8DBE-8E4F65EA1AB4 |
+ 6A9B97E1-4DF2-40CF-989E-DA7DCCB0C37F |
89.40 |
90.00 |
E |
- FF2A5ADF-5DA5-4533-A9D5-099FF8C65DED WINDOW |
+ 6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 WINDOW |
WINDOW_CONSTRUCTION_1 |
10.34 |
0.00 |
@@ -5258,13 +5258,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- FF2A5ADF-5DA5-4533-A9D5-099FF8C65DED |
+ 6E8C6AAC-226B-4C91-952C-B33EF4DC8CE0 |
270.10 |
90.00 |
W |
- 62DCE0A4-304F-4E6C-9A57-D00E4334928B WINDOW |
+ 531634DB-2C61-44A3-80D9-94A5852E16AB WINDOW |
WINDOW_CONSTRUCTION_1 |
10.34 |
0.00 |
@@ -5277,13 +5277,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- 62DCE0A4-304F-4E6C-9A57-D00E4334928B |
+ 531634DB-2C61-44A3-80D9-94A5852E16AB |
89.40 |
90.00 |
E |
- B9A54D53-0695-468C-8E3C-E0D957C0FEF6 WINDOW |
+ 5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13 WINDOW |
WINDOW_CONSTRUCTION_1 |
10.34 |
0.00 |
@@ -5296,7 +5296,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
|
No |
- B9A54D53-0695-468C-8E3C-E0D957C0FEF6 |
+ 5B3D56A5-F20B-4D2B-8F09-4A79F3BA9A13 |
270.10 |
90.00 |
W |
@@ -5430,7 +5430,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
Report: Lighting Summary
For: Entire Facility
Timestamp: 2023-12-28
- 18:51:39
+ 20:22:29
Interior Lighting
@@ -5684,7 +5684,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
Report: Equipment Summary
For: Entire Facility
Timestamp: 2023-12-28
- 18:51:39
+ 20:22:29
Central Plant
@@ -5909,7 +5909,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
Report: HVAC Sizing Summary
For: Entire Facility
Timestamp: 2023-12-28
- 18:51:39
+ 20:22:29
Zone Sensible Cooling
@@ -6122,7 +6122,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
Report: System Summary
For: Entire Facility
Timestamp: 2023-12-28
- 18:51:39
+ 20:22:29
Economizer
@@ -6362,7 +6362,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
Report: Outdoor Air Summary
For: Entire Facility
Timestamp: 2023-12-28
- 18:51:39
+ 20:22:29
Average Outdoor Air During Occupied Hours
@@ -6619,7 +6619,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
Report: Object Count Summary
For: Entire Facility
Timestamp: 2023-12-28
- 18:51:39
+ 20:22:29
Surfaces by Class
@@ -6769,7 +6769,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
Report: Sensible Heat Gain Summary
For: Entire Facility
Timestamp: 2023-12-28
- 18:51:39
+ 20:22:29
Annual Building Sensible Heat Gain Components