From 491cee92da5aa8477fac573eae4b1dfd95859621 Mon Sep 17 00:00:00 2001 From: Pilar Date: Mon, 13 Feb 2023 07:55:25 -0500 Subject: [PATCH 01/27] implementing shared_surfaces method --- hub/city_model_structure/attributes/plane.py | 3 --- hub/city_model_structure/building_demand/surface.py | 1 - 2 files changed, 4 deletions(-) diff --git a/hub/city_model_structure/attributes/plane.py b/hub/city_model_structure/attributes/plane.py index 25a4ec3f..700be8fb 100644 --- a/hub/city_model_structure/attributes/plane.py +++ b/hub/city_model_structure/attributes/plane.py @@ -17,9 +17,6 @@ class Plane: """ def __init__(self, origin, normal): - # todo: other options to define the plane: - # by two lines - # by three points self._origin = origin self._normal = normal self._equation = None diff --git a/hub/city_model_structure/building_demand/surface.py b/hub/city_model_structure/building_demand/surface.py index dc392160..285393e3 100644 --- a/hub/city_model_structure/building_demand/surface.py +++ b/hub/city_model_structure/building_demand/surface.py @@ -287,7 +287,6 @@ class Surface: """ Raises not implemented error """ - # todo: check https://trimsh.org/trimesh.collision.html as an option to implement this method raise NotImplementedError def divide(self, z): From b280949451a1d0c91b56be51d1a84f151c86ce50 Mon Sep 17 00:00:00 2001 From: guille Date: Mon, 20 Feb 2023 07:24:27 -0500 Subject: [PATCH 02/27] Add nrcan archetypes --- hub/data/construction/nrcan.xml | 76 - hub/data/construction/nrcan_archetypes.json | 24004 ++++++++++++++++ .../construction/nrcan_constructions.json | 4388 +++ hub/imports/geometry/geojson.py | 10 +- hub/persistence/configuration.py | 8 +- setup.py | 2 +- 6 files changed, 28406 insertions(+), 82 deletions(-) delete mode 100644 hub/data/construction/nrcan.xml create mode 100644 hub/data/construction/nrcan_archetypes.json create mode 100644 hub/data/construction/nrcan_constructions.json diff --git a/hub/data/construction/nrcan.xml b/hub/data/construction/nrcan.xml deleted file mode 100644 index 0a366273..00000000 --- a/hub/data/construction/nrcan.xml +++ /dev/null @@ -1,76 +0,0 @@ - - - - - BTAPPRE1980/data/surface_thermal_transmittance.json - BTAPPRE1980/data/window_characteristics.json - - - BTAP1980TO2010/data/surface_thermal_transmittance.json - BTAP1980TO2010/data/window_characteristics.json - - - NECB2011/data/surface_thermal_transmittance.json - BTAP1980TO2010/data/window_characteristics.json - - - NECB2017/data/surface_thermal_transmittance.json - BTAP1980TO2010/data/window_characteristics.json - - - NECB2020/data/surface_thermal_transmittance.json - BTAP1980TO2010/data/window_characteristics.json - - - - - FullServiceRestaurant/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/8414706d-3ba9-4d70-ad3c-4db62d865e1b-os-report.html - - - HighriseApartment/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/83ab3764-046e-48a8-85cd-a3c0ac761efa-os-report.html - - - Hospital/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/210dac7e-2d51-40a9-bc78-ad0bc1c57a89-os-report.html - - - LargeHotel/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/d0185276-7fe0-4da9-bb5d-8c8a7c13c405-os-report.html - - - LargeOffice/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/2da33707-50a7-4554-91ed-c5fdbc1ce3b9-os-report.html - - - MediumOffice/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/65d97bf8-8749-410b-b53d-5a9c60e0227c-os-report.html - - - MidriseApartment/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/19518153-9c28-4e40-8bbd-98ef949c1bdb-os-report.html - - - Outpatient/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/deab93c7-d086-432d-bb90-33c8c4e1fab3-os-report.html - - - PrimarySchool/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/87f45397-5ef4-4df9-be41-d33c4b6d2fb7-os-report.html - - - QuickServiceRestaurant/CAN_PQ_Montreal.Intl.AP.716270_CWEC/ 0bc55858-a81b-4d07-9923-1d84e8a23194-os-report.html - - - RetailStandalone/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/a3643bcb-0eea-47d4-b6b9-253ed188ec0c-os-report.html - - - RetailStripmall/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/ebaf5a16-00af-49de-9672-6b373fc825be-os-report.html - - - SecondarySchool/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/3a4f105f-93ed-4b8b-9eb3-c8ca40c5de6e-os-report.html - - - SmallHotel/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/dff0a3fc-d9e5-4866-9e6a-dee9a0da60b2-os-report.html - - - SmallOffice/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/a9a3669d-beb8-4951-aa11-c27dbc61a344-os-report.html - - - Warehouse/CAN_PQ_Montreal.Intl.AP.716270_CWEC/os_report/569ec649-8017-4a3c-bd0a-337eba3ec488-os-report.html - - - diff --git a/hub/data/construction/nrcan_archetypes.json b/hub/data/construction/nrcan_archetypes.json new file mode 100644 index 00000000..2faed330 --- /dev/null +++ b/hub/data/construction/nrcan_archetypes.json @@ -0,0 +1,24004 @@ +{ + "archetypes": [ + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "FullServiceRestaurant", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.0, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.0, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.0, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.0, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.0, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.0, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "HighriseApartment", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "Hospital", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "LargeHotel", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "LargeOffice", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "MediumOffice", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.0, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.0, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.0, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.0, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.0, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.0, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "MidriseApartment", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.0, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "Outpatient", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "PrimarySchool", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "QuickServiceRestaurant", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "RetailStandalone", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "RetailStripmall", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "SecondarySchool", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "SmallHotel", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "SmallOffice", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Window_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_4" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_4" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Window_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_5" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_5" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Window_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_6" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_6" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Window_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7A" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Window_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_7B" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 300, + "extra_loses_due_thermal_bridges": 0.1, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.8, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Window_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundWall": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1000_1979_8" + }, + "GroundFloor": { + "opaque_surface_name": "1000_1979_8" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Window_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_4" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_4" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Window_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_5" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_5" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Window_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_6" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_6" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Window_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7A" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7A" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Window_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_7B" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_7B" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 1.0, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Window_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundWall": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "1980_2010_8" + }, + "GroundFloor": { + "opaque_surface_name": "1980_2010_8" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Window_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_4" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_4" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Window_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_5" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_5" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Window_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_6" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_6" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Window_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7A" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Window_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_7B" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Window_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundWall": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2011_2016_8" + }, + "GroundFloor": { + "opaque_surface_name": "2011_2016_8" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Window_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_4" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_4" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Window_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_5" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_5" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Window_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_6" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_6" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Window_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7A" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Window_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_7B" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Window_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundWall": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2017_2019_8" + }, + "GroundFloor": { + "opaque_surface_name": "2017_2019_8" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Window_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_4", + "transparent_surface_name": "Skylight_2020_3000_4", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_4" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_4" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Window_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_5", + "transparent_surface_name": "Skylight_2020_3000_5", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_5" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_5" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Window_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_6", + "transparent_surface_name": "Skylight_2020_3000_6", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_6" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_6" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Window_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7A", + "transparent_surface_name": "Skylight_2020_3000_7A", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7A" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7A" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Window_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_7B", + "transparent_surface_name": "Skylight_2020_3000_7B", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_7B" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_7B" + } + } + } + }, + { + "archetype": { + "function": "Warehouse", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "average_storey_height": 3.5, + "thermal_capacity": 200, + "extra_loses_due_thermal_bridges": 0.05, + "infiltration_rate_for_ventilation_system_on": 0, + "infiltration_rate_for_ventilation_system_off": 0.3, + "constructions": { + "OutdoorsWall": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Window_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2020_3000_8", + "transparent_surface_name": "Skylight_2020_3000_8", + "transparent_ratio": { + "transparent_ratio": { + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" + } + } + }, + "OutdoorsFloor": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundWall": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundRoofCeiling": { + "opaque_surface_name": "2020_3000_8" + }, + "GroundFloor": { + "opaque_surface_name": "2020_3000_8" + } + } + } + } + ] +} \ No newline at end of file diff --git a/hub/data/construction/nrcan_constructions.json b/hub/data/construction/nrcan_constructions.json new file mode 100644 index 00000000..2f1e9b51 --- /dev/null +++ b/hub/data/construction/nrcan_constructions.json @@ -0,0 +1,4388 @@ +{ + "transparent_surfaces": [ + { + "transparent_surface": { + "name": "Window_1000_1979_4", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 4.09 + } + }, + { + "transparent_surface": { + "name": "Window_1000_1979_5", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 3.35 + } + }, + { + "transparent_surface": { + "name": "Window_1000_1979_6", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "transparent_surface": { + "name": "Window_1000_1979_7A", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "transparent_surface": { + "name": "Window_1000_1979_7B", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "transparent_surface": { + "name": "Window_1000_1979_8", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "shgc": 0.41, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "transparent_surface": { + "name": "Window_1980_2010_4", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 4.09 + } + }, + { + "transparent_surface": { + "name": "Window_1980_2010_5", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 3.35 + } + }, + { + "transparent_surface": { + "name": "Window_1980_2010_6", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "transparent_surface": { + "name": "Window_1980_2010_7A", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "transparent_surface": { + "name": "Window_1980_2010_7B", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "transparent_surface": { + "name": "Window_1980_2010_8", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "shgc": 0.41, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "transparent_surface": { + "name": "Window_2011_2016_4", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.4 + } + }, + { + "transparent_surface": { + "name": "Window_2011_2016_5", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.2 + } + }, + { + "transparent_surface": { + "name": "Window_2011_2016_6", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.2 + } + }, + { + "transparent_surface": { + "name": "Window_2011_2016_7A", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.2 + } + }, + { + "transparent_surface": { + "name": "Window_2011_2016_7B", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.2 + } + }, + { + "transparent_surface": { + "name": "Window_2011_2016_8", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "shgc": 0.41, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.6 + } + }, + { + "transparent_surface": { + "name": "Window_2017_2019_4", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.1 + } + }, + { + "transparent_surface": { + "name": "Window_2017_2019_5", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.9 + } + }, + { + "transparent_surface": { + "name": "Window_2017_2019_6", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.9 + } + }, + { + "transparent_surface": { + "name": "Window_2017_2019_7A", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.9 + } + }, + { + "transparent_surface": { + "name": "Window_2017_2019_7B", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.9 + } + }, + { + "transparent_surface": { + "name": "Window_2017_2019_8", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "shgc": 0.41, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.4 + } + }, + { + "transparent_surface": { + "name": "Window_2020_3000_4", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.9 + } + }, + { + "transparent_surface": { + "name": "Skylight_2020_3000_4", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "shgc": 0.39, + "type": "Skylight", + "frame_ratio": 0, + "u_value": 2.69 + } + }, + { + "transparent_surface": { + "name": "Window_2020_3000_5", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.9 + } + }, + { + "transparent_surface": { + "name": "Skylight_2020_3000_5", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "shgc": 0.39, + "type": "Skylight", + "frame_ratio": 0, + "u_value": 2.69 + } + }, + { + "transparent_surface": { + "name": "Window_2020_3000_6", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.73 + } + }, + { + "transparent_surface": { + "name": "Skylight_2020_3000_6", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "shgc": 0.39, + "type": "Skylight", + "frame_ratio": 0, + "u_value": 2.41 + } + }, + { + "transparent_surface": { + "name": "Window_2020_3000_7A", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.73 + } + }, + { + "transparent_surface": { + "name": "Skylight_2020_3000_7A", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "shgc": 0.49, + "type": "Skylight", + "frame_ratio": 0, + "u_value": 2.41 + } + }, + { + "transparent_surface": { + "name": "Window_2020_3000_7B", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.44 + } + }, + { + "transparent_surface": { + "name": "Skylight_2020_3000_7B", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "shgc": 0.49, + "type": "Skylight", + "frame_ratio": 0, + "u_value": 2.01 + } + }, + { + "transparent_surface": { + "name": "Window_2020_3000_8", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "shgc": 0.41, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.44 + } + }, + { + "transparent_surface": { + "name": "Skylight_2020_3000_8", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "shgc": 0.41, + "type": "Skylight", + "frame_ratio": 0, + "u_value": 2.01 + } + } + ], + "opaque_surfaces": [ + { + "opaque_surface": { + "name": "1000_1979_4", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.994, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_0": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_4", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.363, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_1": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_4", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_2": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_4", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_3": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_4", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_4": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_4", + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_5": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_5", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.9, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_6": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_5", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.296, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_7": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_5", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_8": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_5", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_9": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_5", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_10": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_5", + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_11": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_6", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.823, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_12": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_6", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.267, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_13": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_6", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_14": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_6", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_15": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_6", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_16": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_6", + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_17": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_7A", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.772, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_18": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_7A", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_19": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_7A", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_20": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_7A", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_21": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_7A", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_22": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_7A", + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_23": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_7B", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.772, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_24": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_7B", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_25": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_7B", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_26": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_7B", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_27": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_7B", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_28": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_7B", + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_29": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_8", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.71, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_30": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_8", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.176, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_31": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_8", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_32": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_8", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_33": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_8", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_34": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1000_1979_8", + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_35": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_4", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.568, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_36": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_4", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.363, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_37": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_4", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_38": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_4", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.606, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_39": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_4", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_40": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_4", + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_41": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_5", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.682, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_42": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_5", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.296, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_43": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_5", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_44": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_5", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.547, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_45": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_5", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_46": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_5", + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_47": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_6", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.426, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_48": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_6", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.267, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_49": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_6", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_50": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_6", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.459, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_51": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_6", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_52": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_6", + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_53": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_7A", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.346, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_54": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_7A", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_55": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_7A", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_56": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_7A", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.425, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_57": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_7A", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_58": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_7A", + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_59": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_7B", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.346, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_60": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_7B", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_61": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_7B", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_62": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_7B", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.425, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_63": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_7B", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_64": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_7B", + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_65": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_8", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.267, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_66": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_8", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.176, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_67": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_8", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_68": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_8", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.347, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_69": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_8", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_70": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "1980_2010_8", + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_71": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_4", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.315, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_72": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_4", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_73": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_4", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 0.227, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_74": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_4", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.568, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_75": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_4", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.568, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_76": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_4", + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_77": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_5", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.278, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_78": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_5", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.183, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_79": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_5", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 0.183, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_80": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_5", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.379, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_81": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_5", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.379, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_82": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_5", + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_83": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_6", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.247, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_84": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_6", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.183, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_85": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_6", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 0.183, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_86": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_6", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_87": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_6", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_88": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_6", + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_89": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_7A", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_90": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_7A", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.162, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_91": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_7A", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 0.162, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_92": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_7A", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_93": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_7A", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_94": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_7A", + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_95": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_7B", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_96": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_7B", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.162, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_97": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_7B", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 0.162, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_98": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_7B", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_99": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_7B", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_100": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_7B", + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_101": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_8", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.183, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_102": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_8", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.142, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_103": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_8", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 0.142, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_104": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_8", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_105": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_8", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.21, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_106": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2011_2016_8", + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.379, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_107": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_4", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.315, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_108": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_4", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.193, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_109": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_4", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 0.227, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_110": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_4", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.568, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_111": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_4", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.568, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_112": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_4", + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_113": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_5", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.278, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_114": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_5", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.156, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_115": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_5", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 0.183, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_116": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_5", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.379, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_117": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_5", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.379, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_118": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_5", + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_119": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_6", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.247, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_120": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_6", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.156, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_121": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_6", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 0.183, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_122": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_6", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_123": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_6", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_124": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_6", + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_125": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_7A", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_126": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_7A", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.138, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_127": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_7A", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 0.162, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_128": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_7A", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_129": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_7A", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_130": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_7A", + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_131": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_7B", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_132": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_7B", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.138, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_133": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_7B", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 0.162, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_134": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_7B", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_135": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_7B", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_136": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_7B", + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_137": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_8", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.183, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_138": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_8", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.121, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_139": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_8", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 0.142, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_140": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_8", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_141": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_8", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.21, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_142": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2017_2019_8", + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.379, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_143": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_4", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.29, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_144": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_4", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.164, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_145": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_4", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 0.193, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_146": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_4", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.568, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_147": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_4", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.568, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_148": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_4", + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_149": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_5", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.265, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_150": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_5", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.156, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_151": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_5", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 0.175, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_152": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_5", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.379, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_153": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_5", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.379, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_154": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_5", + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_155": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_6", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.24, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_156": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_6", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.138, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_157": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_6", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 0.156, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_158": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_6", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_159": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_6", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_160": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_6", + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_161": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_7A", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.215, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_162": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_7A", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.121, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_163": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_7A", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 0.138, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_164": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_7A", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_165": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_7A", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_166": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_7A", + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_167": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_7B", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.19, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_168": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_7B", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.117, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_169": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_7B", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 0.121, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_170": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_7B", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_171": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_7B", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_172": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_7B", + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_173": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_8", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.165, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_174": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_8", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.11, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_175": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_8", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 0.117, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_176": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_8", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_177": 0, + "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, + "Gypsum Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_8", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.21, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_178": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "opaque_surface": { + "name": "2020_3000_8", + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.379, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_179": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + } + ], + "materials": [ + { + "Urea Formaldehyde Foam": { + "no_mass": false, + "conductivity": 0.04, + "density": 10, + "specific_heat": 1400, + "thermal_emittance": 0.9, + "solar_absorptance": 0.6, + "visible_absorptance": 0.6 + } + }, + { + "Cast Concrete": { + "no_mass": false, + "conductivity": 1.13, + "density": 2000, + "specific_heat": 1000, + "thermal_emittance": 0.9, + "solar_absorptance": 0.6, + "visible_absorptance": 0.6 + } + }, + { + "Floor/Roof Screed": { + "no_mass": false, + "conductivity": 0.41, + "density": 1200, + "specific_heat": 840, + "thermal_emittance": 0.9, + "solar_absorptance": 0.73, + "visible_absorptance": 0.73 + } + }, + { + "Timber Flooring": { + "no_mass": false, + "conductivity": 0.14, + "density": 650, + "specific_heat": 1200, + "thermal_emittance": 0.9, + "solar_absorptance": 0.78, + "visible_absorptance": 0.78 + } + }, + { + "Asphalt 1": { + "no_mass": false, + "conductivity": 0.7, + "density": 2100, + "specific_heat": 1000, + "thermal_emittance": 0.9, + "solar_absorptance": 0.85, + "visible_absorptance": 0.9 + } + }, + { + "MW Glass Wool (rolls)": { + "no_mass": false, + "conductivity": 0.04, + "density": 12, + "specific_heat": 840, + "thermal_emittance": 0.9, + "solar_absorptance": 0.6, + "visible_absorptance": 0.6 + } + }, + { + "Plasterboard": { + "no_mass": false, + "conductivity": 0.25, + "density": 2800, + "specific_heat": 896, + "thermal_emittance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 + } + }, + { + "Brickwork Outer": { + "no_mass": false, + "conductivity": 0.84, + "density": 1700, + "specific_heat": 800, + "thermal_emittance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 + } + }, + { + "XPS Extruded Polystyrene- CO2 Blowing": { + "no_mass": false, + "conductivity": 0.034, + "density": 35, + "specific_heat": 1400, + "thermal_emittance": 0.9, + "solar_absorptance": 0.6, + "visible_absorptance": 0.6 + } + }, + { + "Concrete Block (Medium)": { + "no_mass": false, + "conductivity": 0.51, + "density": 1400, + "specific_heat": 1000, + "thermal_emittance": 0.9, + "solar_absorptance": 0.6, + "visible_absorptance": 0.6 + } + }, + { + "Gypsum Plastering": { + "no_mass": false, + "conductivity": 0.4, + "density": 1000, + "specific_heat": 1000, + "thermal_emittance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 + } + }, + { + "Lightweight Metallic Cladding": { + "no_mass": false, + "conductivity": 0.29, + "density": 1250, + "specific_heat": 1000, + "thermal_emittance": 0.9, + "solar_absorptance": 0.4, + "visible_absorptance": 0.4 + } + }, + { + "virtual_no_mass_0": { + "no_mass": true, + "thermal_resistance": 0.5638863573598453 + } + }, + { + "virtual_no_mass_1": { + "no_mass": true, + "thermal_resistance": 0.18853522235340447 + } + }, + { + "virtual_no_mass_2": { + "no_mass": true, + "thermal_resistance": -2.711869878038051 + } + }, + { + "virtual_no_mass_3": { + "no_mass": true, + "thermal_resistance": 1.032776393743338 + } + }, + { + "virtual_no_mass_4": { + "no_mass": true, + "thermal_resistance": -1.0913594605983987 + } + }, + { + "virtual_no_mass_5": { + "no_mass": true, + "thermal_resistance": -1.4985867431367113 + } + }, + { + "virtual_no_mass_6": { + "no_mass": true, + "thermal_resistance": 0.6689612511671336 + } + }, + { + "virtual_no_mass_7": { + "no_mass": true, + "thermal_resistance": 0.8120926640926642 + } + }, + { + "virtual_no_mass_8": { + "no_mass": true, + "thermal_resistance": -2.711869878038051 + } + }, + { + "virtual_no_mass_9": { + "no_mass": true, + "thermal_resistance": 1.032776393743338 + } + }, + { + "virtual_no_mass_10": { + "no_mass": true, + "thermal_resistance": -1.0913594605983987 + } + }, + { + "virtual_no_mass_11": { + "no_mass": true, + "thermal_resistance": -1.4985867431367113 + } + }, + { + "virtual_no_mass_12": { + "no_mass": true, + "thermal_resistance": 0.7729169687315997 + } + }, + { + "virtual_no_mass_13": { + "no_mass": true, + "thermal_resistance": 1.1790326377742106 + } + }, + { + "virtual_no_mass_14": { + "no_mass": true, + "thermal_resistance": -2.711869878038051 + } + }, + { + "virtual_no_mass_15": { + "no_mass": true, + "thermal_resistance": 1.032776393743338 + } + }, + { + "virtual_no_mass_16": { + "no_mass": true, + "thermal_resistance": -1.0913594605983987 + } + }, + { + "virtual_no_mass_17": { + "no_mass": true, + "thermal_resistance": -1.4985867431367113 + } + }, + { + "virtual_no_mass_18": { + "no_mass": true, + "thermal_resistance": 0.8531869276207892 + } + }, + { + "virtual_no_mass_19": { + "no_mass": true, + "thermal_resistance": 1.8390006293266201 + } + }, + { + "virtual_no_mass_20": { + "no_mass": true, + "thermal_resistance": -2.711869878038051 + } + }, + { + "virtual_no_mass_21": { + "no_mass": true, + "thermal_resistance": 1.032776393743338 + } + }, + { + "virtual_no_mass_22": { + "no_mass": true, + "thermal_resistance": -1.0913594605983987 + } + }, + { + "virtual_no_mass_23": { + "no_mass": true, + "thermal_resistance": -1.4985867431367113 + } + }, + { + "virtual_no_mass_24": { + "no_mass": true, + "thermal_resistance": 0.8531869276207892 + } + }, + { + "virtual_no_mass_25": { + "no_mass": true, + "thermal_resistance": 1.8390006293266201 + } + }, + { + "virtual_no_mass_26": { + "no_mass": true, + "thermal_resistance": -2.711869878038051 + } + }, + { + "virtual_no_mass_27": { + "no_mass": true, + "thermal_resistance": 1.032776393743338 + } + }, + { + "virtual_no_mass_28": { + "no_mass": true, + "thermal_resistance": -1.0913594605983987 + } + }, + { + "virtual_no_mass_29": { + "no_mass": true, + "thermal_resistance": -1.4985867431367113 + } + }, + { + "virtual_no_mass_30": { + "no_mass": true, + "thermal_resistance": 0.9663008442813746 + } + }, + { + "virtual_no_mass_31": { + "no_mass": true, + "thermal_resistance": 3.1155324675324683 + } + }, + { + "virtual_no_mass_32": { + "no_mass": true, + "thermal_resistance": -2.711869878038051 + } + }, + { + "virtual_no_mass_33": { + "no_mass": true, + "thermal_resistance": 1.032776393743338 + } + }, + { + "virtual_no_mass_34": { + "no_mass": true, + "thermal_resistance": -1.0913594605983987 + } + }, + { + "virtual_no_mass_35": { + "no_mass": true, + "thermal_resistance": -1.4985867431367113 + } + }, + { + "virtual_no_mass_36": { + "no_mass": true, + "thermal_resistance": 1.3926323457989316 + } + }, + { + "virtual_no_mass_37": { + "no_mass": true, + "thermal_resistance": 0.18853522235340447 + } + }, + { + "virtual_no_mass_38": { + "no_mass": true, + "thermal_resistance": -2.711869878038051 + } + }, + { + "virtual_no_mass_39": { + "no_mass": true, + "thermal_resistance": 1.2822339820188915 + } + }, + { + "virtual_no_mass_40": { + "no_mass": true, + "thermal_resistance": -1.0913594605983987 + } + }, + { + "virtual_no_mass_41": { + "no_mass": true, + "thermal_resistance": -1.4985867431367113 + } + }, + { + "virtual_no_mass_42": { + "no_mass": true, + "thermal_resistance": 1.098344625341288 + } + }, + { + "virtual_no_mass_43": { + "no_mass": true, + "thermal_resistance": 0.8120926640926642 + } + }, + { + "virtual_no_mass_44": { + "no_mass": true, + "thermal_resistance": -2.711869878038051 + } + }, + { + "virtual_no_mass_45": { + "no_mass": true, + "thermal_resistance": 1.4602225304166927 + } + }, + { + "virtual_no_mass_46": { + "no_mass": true, + "thermal_resistance": -1.0913594605983987 + } + }, + { + "virtual_no_mass_47": { + "no_mass": true, + "thermal_resistance": -1.4985867431367113 + } + }, + { + "virtual_no_mass_48": { + "no_mass": true, + "thermal_resistance": 1.9794868058928283 + } + }, + { + "virtual_no_mass_49": { + "no_mass": true, + "thermal_resistance": 1.1790326377742106 + } + }, + { + "virtual_no_mass_50": { + "no_mass": true, + "thermal_resistance": -2.711869878038051 + } + }, + { + "virtual_no_mass_51": { + "no_mass": true, + "thermal_resistance": 1.8107182029900082 + } + }, + { + "virtual_no_mass_52": { + "no_mass": true, + "thermal_resistance": -1.0913594605983987 + } + }, + { + "virtual_no_mass_53": { + "no_mass": true, + "thermal_resistance": -1.4985867431367113 + } + }, + { + "virtual_no_mass_54": { + "no_mass": true, + "thermal_resistance": 2.522242375921866 + } + }, + { + "virtual_no_mass_55": { + "no_mass": true, + "thermal_resistance": 1.8390006293266201 + } + }, + { + "virtual_no_mass_56": { + "no_mass": true, + "thermal_resistance": -2.711869878038051 + } + }, + { + "virtual_no_mass_57": { + "no_mass": true, + "thermal_resistance": 1.9850101419878297 + } + }, + { + "virtual_no_mass_58": { + "no_mass": true, + "thermal_resistance": -1.0913594605983987 + } + }, + { + "virtual_no_mass_59": { + "no_mass": true, + "thermal_resistance": -1.4985867431367113 + } + }, + { + "virtual_no_mass_60": { + "no_mass": true, + "thermal_resistance": 2.522242375921866 + } + }, + { + "virtual_no_mass_61": { + "no_mass": true, + "thermal_resistance": 1.8390006293266201 + } + }, + { + "virtual_no_mass_62": { + "no_mass": true, + "thermal_resistance": -2.711869878038051 + } + }, + { + "virtual_no_mass_63": { + "no_mass": true, + "thermal_resistance": 1.9850101419878297 + } + }, + { + "virtual_no_mass_64": { + "no_mass": true, + "thermal_resistance": -1.0913594605983987 + } + }, + { + "virtual_no_mass_65": { + "no_mass": true, + "thermal_resistance": -1.4985867431367113 + } + }, + { + "virtual_no_mass_66": { + "no_mass": true, + "thermal_resistance": 3.3773873175771665 + } + }, + { + "virtual_no_mass_67": { + "no_mass": true, + "thermal_resistance": 3.1155324675324683 + } + }, + { + "virtual_no_mass_68": { + "no_mass": true, + "thermal_resistance": -2.711869878038051 + } + }, + { + "virtual_no_mass_69": { + "no_mass": true, + "thermal_resistance": 2.5139133459207 + } + }, + { + "virtual_no_mass_70": { + "no_mass": true, + "thermal_resistance": -1.0913594605983987 + } + }, + { + "virtual_no_mass_71": { + "no_mass": true, + "thermal_resistance": -1.4985867431367113 + } + }, + { + "virtual_no_mass_72": { + "no_mass": true, + "thermal_resistance": 2.806672140120416 + } + }, + { + "virtual_no_mass_73": { + "no_mass": true, + "thermal_resistance": 1.8390006293266201 + } + }, + { + "virtual_no_mass_74": { + "no_mass": true, + "thermal_resistance": 1.4317733467883076 + } + }, + { + "virtual_no_mass_75": { + "no_mass": true, + "thermal_resistance": 1.3926323457989316 + } + }, + { + "virtual_no_mass_76": { + "no_mass": true, + "thermal_resistance": -0.805722334004024 + } + }, + { + "virtual_no_mass_77": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_78": { + "no_mass": true, + "thermal_resistance": 3.229191267675515 + } + }, + { + "virtual_no_mass_79": { + "no_mass": true, + "thermal_resistance": 2.8981951600312255 + } + }, + { + "virtual_no_mass_80": { + "no_mass": true, + "thermal_resistance": 2.490967877492913 + } + }, + { + "virtual_no_mass_81": { + "no_mass": true, + "thermal_resistance": 2.2705913929578747 + } + }, + { + "virtual_no_mass_82": { + "no_mass": true, + "thermal_resistance": 0.07223671315491886 + } + }, + { + "virtual_no_mass_83": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_84": { + "no_mass": true, + "thermal_resistance": 3.6806519614686586 + } + }, + { + "virtual_no_mass_85": { + "no_mass": true, + "thermal_resistance": 2.8981951600312255 + } + }, + { + "virtual_no_mass_86": { + "no_mass": true, + "thermal_resistance": 2.490967877492913 + } + }, + { + "virtual_no_mass_87": { + "no_mass": true, + "thermal_resistance": 3.153195726080622 + } + }, + { + "virtual_no_mass_88": { + "no_mass": true, + "thermal_resistance": 0.9548410462776662 + } + }, + { + "virtual_no_mass_89": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_90": { + "no_mass": true, + "thermal_resistance": 4.393973727422003 + } + }, + { + "virtual_no_mass_91": { + "no_mass": true, + "thermal_resistance": 3.606553791887125 + } + }, + { + "virtual_no_mass_92": { + "no_mass": true, + "thermal_resistance": 3.1993265093488126 + } + }, + { + "virtual_no_mass_93": { + "no_mass": true, + "thermal_resistance": 3.153195726080622 + } + }, + { + "virtual_no_mass_94": { + "no_mass": true, + "thermal_resistance": 0.9548410462776662 + } + }, + { + "virtual_no_mass_95": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_96": { + "no_mass": true, + "thermal_resistance": 4.393973727422003 + } + }, + { + "virtual_no_mass_97": { + "no_mass": true, + "thermal_resistance": 3.606553791887125 + } + }, + { + "virtual_no_mass_98": { + "no_mass": true, + "thermal_resistance": 3.1993265093488126 + } + }, + { + "virtual_no_mass_99": { + "no_mass": true, + "thermal_resistance": 3.153195726080622 + } + }, + { + "virtual_no_mass_100": { + "no_mass": true, + "thermal_resistance": 0.9548410462776662 + } + }, + { + "virtual_no_mass_101": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_102": { + "no_mass": true, + "thermal_resistance": 5.096549839834181 + } + }, + { + "virtual_no_mass_103": { + "no_mass": true, + "thermal_resistance": 4.475967806841046 + } + }, + { + "virtual_no_mass_104": { + "no_mass": true, + "thermal_resistance": 4.068740524302735 + } + }, + { + "virtual_no_mass_105": { + "no_mass": true, + "thermal_resistance": 4.393973727422003 + } + }, + { + "virtual_no_mass_106": { + "no_mass": true, + "thermal_resistance": 2.1956190476190476 + } + }, + { + "virtual_no_mass_107": { + "no_mass": true, + "thermal_resistance": -0.33499056938339367 + } + }, + { + "virtual_no_mass_108": { + "no_mass": true, + "thermal_resistance": 2.806672140120416 + } + }, + { + "virtual_no_mass_109": { + "no_mass": true, + "thermal_resistance": 2.615061435973353 + } + }, + { + "virtual_no_mass_110": { + "no_mass": true, + "thermal_resistance": 1.4317733467883076 + } + }, + { + "virtual_no_mass_111": { + "no_mass": true, + "thermal_resistance": 1.3926323457989316 + } + }, + { + "virtual_no_mass_112": { + "no_mass": true, + "thermal_resistance": -0.805722334004024 + } + }, + { + "virtual_no_mass_113": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_114": { + "no_mass": true, + "thermal_resistance": 3.229191267675515 + } + }, + { + "virtual_no_mass_115": { + "no_mass": true, + "thermal_resistance": 3.8439706959706963 + } + }, + { + "virtual_no_mass_116": { + "no_mass": true, + "thermal_resistance": 2.490967877492913 + } + }, + { + "virtual_no_mass_117": { + "no_mass": true, + "thermal_resistance": 2.2705913929578747 + } + }, + { + "virtual_no_mass_118": { + "no_mass": true, + "thermal_resistance": 0.07223671315491886 + } + }, + { + "virtual_no_mass_119": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_120": { + "no_mass": true, + "thermal_resistance": 3.6806519614686586 + } + }, + { + "virtual_no_mass_121": { + "no_mass": true, + "thermal_resistance": 3.8439706959706963 + } + }, + { + "virtual_no_mass_122": { + "no_mass": true, + "thermal_resistance": 2.490967877492913 + } + }, + { + "virtual_no_mass_123": { + "no_mass": true, + "thermal_resistance": 3.153195726080622 + } + }, + { + "virtual_no_mass_124": { + "no_mass": true, + "thermal_resistance": 0.9548410462776662 + } + }, + { + "virtual_no_mass_125": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_126": { + "no_mass": true, + "thermal_resistance": 4.393973727422003 + } + }, + { + "virtual_no_mass_127": { + "no_mass": true, + "thermal_resistance": 4.6800910973084875 + } + }, + { + "virtual_no_mass_128": { + "no_mass": true, + "thermal_resistance": 3.1993265093488126 + } + }, + { + "virtual_no_mass_129": { + "no_mass": true, + "thermal_resistance": 3.153195726080622 + } + }, + { + "virtual_no_mass_130": { + "no_mass": true, + "thermal_resistance": 0.9548410462776662 + } + }, + { + "virtual_no_mass_131": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_132": { + "no_mass": true, + "thermal_resistance": 4.393973727422003 + } + }, + { + "virtual_no_mass_133": { + "no_mass": true, + "thermal_resistance": 4.6800910973084875 + } + }, + { + "virtual_no_mass_134": { + "no_mass": true, + "thermal_resistance": 3.1993265093488126 + } + }, + { + "virtual_no_mass_135": { + "no_mass": true, + "thermal_resistance": 3.153195726080622 + } + }, + { + "virtual_no_mass_136": { + "no_mass": true, + "thermal_resistance": 0.9548410462776662 + } + }, + { + "virtual_no_mass_137": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_138": { + "no_mass": true, + "thermal_resistance": 5.096549839834181 + } + }, + { + "virtual_no_mass_139": { + "no_mass": true, + "thermal_resistance": 5.698177095631642 + } + }, + { + "virtual_no_mass_140": { + "no_mass": true, + "thermal_resistance": 4.068740524302735 + } + }, + { + "virtual_no_mass_141": { + "no_mass": true, + "thermal_resistance": 4.393973727422003 + } + }, + { + "virtual_no_mass_142": { + "no_mass": true, + "thermal_resistance": 2.1956190476190476 + } + }, + { + "virtual_no_mass_143": { + "no_mass": true, + "thermal_resistance": -0.33499056938339367 + } + }, + { + "virtual_no_mass_144": { + "no_mass": true, + "thermal_resistance": 3.0803448275862073 + } + }, + { + "virtual_no_mass_145": { + "no_mass": true, + "thermal_resistance": 3.531275261324042 + } + }, + { + "virtual_no_mass_146": { + "no_mass": true, + "thermal_resistance": 2.2078341534350403 + } + }, + { + "virtual_no_mass_147": { + "no_mass": true, + "thermal_resistance": 1.3926323457989316 + } + }, + { + "virtual_no_mass_148": { + "no_mass": true, + "thermal_resistance": -0.805722334004024 + } + }, + { + "virtual_no_mass_149": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_150": { + "no_mass": true, + "thermal_resistance": 3.4056538711776185 + } + }, + { + "virtual_no_mass_151": { + "no_mass": true, + "thermal_resistance": 3.8439706959706963 + } + }, + { + "virtual_no_mass_152": { + "no_mass": true, + "thermal_resistance": 2.7407727174616876 + } + }, + { + "virtual_no_mass_153": { + "no_mass": true, + "thermal_resistance": 2.2705913929578747 + } + }, + { + "virtual_no_mass_154": { + "no_mass": true, + "thermal_resistance": 0.07223671315491886 + } + }, + { + "virtual_no_mass_155": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_156": { + "no_mass": true, + "thermal_resistance": 3.7987356321839085 + } + }, + { + "virtual_no_mass_157": { + "no_mass": true, + "thermal_resistance": 4.6800910973084875 + } + }, + { + "virtual_no_mass_158": { + "no_mass": true, + "thermal_resistance": 3.4367434134323838 + } + }, + { + "virtual_no_mass_159": { + "no_mass": true, + "thermal_resistance": 3.153195726080622 + } + }, + { + "virtual_no_mass_160": { + "no_mass": true, + "thermal_resistance": 0.9548410462776662 + } + }, + { + "virtual_no_mass_161": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_162": { + "no_mass": true, + "thermal_resistance": 4.283231756214916 + } + }, + { + "virtual_no_mass_163": { + "no_mass": true, + "thermal_resistance": 5.698177095631642 + } + }, + { + "virtual_no_mass_164": { + "no_mass": true, + "thermal_resistance": 4.272863814770176 + } + }, + { + "virtual_no_mass_165": { + "no_mass": true, + "thermal_resistance": 3.153195726080622 + } + }, + { + "virtual_no_mass_166": { + "no_mass": true, + "thermal_resistance": 0.9548410462776662 + } + }, + { + "virtual_no_mass_167": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_168": { + "no_mass": true, + "thermal_resistance": 4.895226860254084 + } + }, + { + "virtual_no_mass_169": { + "no_mass": true, + "thermal_resistance": 5.980722832722833 + } + }, + { + "virtual_no_mass_170": { + "no_mass": true, + "thermal_resistance": 5.290949813093329 + } + }, + { + "virtual_no_mass_171": { + "no_mass": true, + "thermal_resistance": 3.153195726080622 + } + }, + { + "virtual_no_mass_172": { + "no_mass": true, + "thermal_resistance": 0.9548410462776662 + } + }, + { + "virtual_no_mass_173": { + "no_mass": true, + "thermal_resistance": -1.6525090338121378 + } + }, + { + "virtual_no_mass_174": { + "no_mass": true, + "thermal_resistance": 5.692675026123302 + } + }, + { + "virtual_no_mass_175": { + "no_mass": true, + "thermal_resistance": 6.524623376623378 + } + }, + { + "virtual_no_mass_176": { + "no_mass": true, + "thermal_resistance": 5.57349555018452 + } + }, + { + "virtual_no_mass_177": { + "no_mass": true, + "thermal_resistance": 4.393973727422003 + } + }, + { + "virtual_no_mass_178": { + "no_mass": true, + "thermal_resistance": 2.1956190476190476 + } + }, + { + "virtual_no_mass_179": { + "no_mass": true, + "thermal_resistance": -0.33499056938339367 + } + } + ] +} \ No newline at end of file diff --git a/hub/imports/geometry/geojson.py b/hub/imports/geometry/geojson.py index 0f240e2e..58f3949d 100644 --- a/hub/imports/geometry/geojson.py +++ b/hub/imports/geometry/geojson.py @@ -112,6 +112,7 @@ class Geojson: Get city out of a Geojson file """ if self._city is None: + missing_functions = [] buildings = [] building_id = 0 for feature in self._geojson['features']: @@ -126,7 +127,12 @@ class Geojson: function = feature['properties'][self._function_field] if self._function_to_hub is not None: # use the transformation dictionary to retrieve the proper function - function = self._function_to_hub[function] + if function in self._function_to_hub: + function = self._function_to_hub[function] + else: + if function not in missing_functions: + missing_functions.append(function) + function = function geometry = feature['geometry'] if 'id' in feature: building_name = feature['id'] @@ -157,4 +163,6 @@ class Geojson: for building in buildings: self._city.add_city_object(building) self._city.level_of_detail.geometry = lod + if len(missing_functions > 0): + print(f'There are unknown functions {missing_functions}') return self._city diff --git a/hub/persistence/configuration.py b/hub/persistence/configuration.py index c3afdc77..a48b2c91 100644 --- a/hub/persistence/configuration.py +++ b/hub/persistence/configuration.py @@ -19,10 +19,10 @@ class Configuration: def __init__(self, db_name: str, dotenv_path: str, app_env='TEST'): """ - :param db_name: database name - :param app_env: application environment, test or production - :param dotenv_path: the absolute path to dotenv file - """ + :param db_name: database name + :param app_env: application environment, test or production + :param dotenv_path: the absolute path to dotenv file + """ try: # load environmental variables load_dotenv(dotenv_path=dotenv_path) diff --git a/setup.py b/setup.py index ba917de2..c65667e9 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ setup( ('hub', glob.glob('hub/requirements.txt')), ('hub/config', glob.glob('hub/config/*.ini')), ('hub/catalog_factories/greenery/ecore_greenery', glob.glob('hub/catalog_factories/greenery/ecore_greenery/*.ecore')), - ('hub/data/construction.', glob.glob('hub/data/construction/*.xml')), + ('hub/data/construction.', glob.glob('hub/data/construction/*')), ('hub/data/customized_imports/', glob.glob('hub/data/customized_imports/*.xml')), ('hub/data/energy_systems/', glob.glob('hub/data/energy_systems/*.xml')), ('hub/data/energy_systems/', glob.glob('hub/data/energy_systems/*.insel')), From 9209cf624a1daf94035a7294015d45b6c7496e69 Mon Sep 17 00:00:00 2001 From: KoaCWells Date: Mon, 20 Feb 2023 22:12:01 -0500 Subject: [PATCH 03/27] Fix import/export user factories, update repository/user.py for proper StartSession API call, fix setup.py --- hub/exports/user_factory.py | 5 ++-- hub/imports/user_factory.py | 4 ++-- hub/persistence/repositories/user.py | 5 ++-- setup.py | 36 ++++++++++++++-------------- 4 files changed, 25 insertions(+), 25 deletions(-) diff --git a/hub/exports/user_factory.py b/hub/exports/user_factory.py index 0c932418..68a3324d 100644 --- a/hub/exports/user_factory.py +++ b/hub/exports/user_factory.py @@ -4,8 +4,7 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2022 Concordia CERC group Project CoderPeter Yefi peteryefi@gmail.com """ -from hub.persistence import UserRepo - +from hub.persistence import User class UserFactory: """ @@ -13,7 +12,7 @@ class UserFactory: """ def __init__(self, db_name, app_env, dotenv_path): - self._user_repo = UserRepo(db_name=db_name, app_env=app_env, dotenv_path=dotenv_path) + self._user_repo = User(db_name=db_name, app_env=app_env, dotenv_path=dotenv_path) def login_user(self, email: str, password: str): """ diff --git a/hub/imports/user_factory.py b/hub/imports/user_factory.py index 3d900c1f..f4954189 100644 --- a/hub/imports/user_factory.py +++ b/hub/imports/user_factory.py @@ -4,7 +4,7 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2022 Concordia CERC group Project CoderPeter Yefi peteryefi@gmail.com """ -from hub.persistence import UserRepo +from hub.persistence import User from hub.persistence import UserRoles @@ -14,7 +14,7 @@ class UserFactory: """ def __init__(self, db_name, app_env, dotenv_path): - self._user_repo = UserRepo(db_name=db_name, app_env=app_env, dotenv_path=dotenv_path) + self._user_repo = User(db_name=db_name, app_env=app_env, dotenv_path=dotenv_path) def create_user(self, name: str, email: str, password: str, role: UserRoles): """ diff --git a/hub/persistence/repositories/user.py b/hub/persistence/repositories/user.py index dfa797d6..9504cc6c 100644 --- a/hub/persistence/repositories/user.py +++ b/hub/persistence/repositories/user.py @@ -114,7 +114,8 @@ class User(Repository): ).first() if user: if Auth.check_password(password, user[0].password): - return user[0] - return {'message': 'invalid login information'} + #return user[0] + return True + return False except SQLAlchemyError as err: logger.error(f'Error while fetching user by email: {err}') diff --git a/setup.py b/setup.py index c65667e9..615adc67 100644 --- a/setup.py +++ b/setup.py @@ -67,7 +67,7 @@ setup( 'hub.imports', 'hub.imports.construction', 'hub.imports.construction.helpers', - 'hub.imports.construction.data_classes', + #'hub.imports.construction.data_classes', 'hub.imports.energy_systems', 'hub.imports.geometry', 'hub.imports.geometry.citygml_classes', @@ -87,23 +87,23 @@ setup( ('hub/config', glob.glob('hub/config/*.ini')), ('hub/catalog_factories/greenery/ecore_greenery', glob.glob('hub/catalog_factories/greenery/ecore_greenery/*.ecore')), ('hub/data/construction.', glob.glob('hub/data/construction/*')), - ('hub/data/customized_imports/', glob.glob('hub/data/customized_imports/*.xml')), - ('hub/data/energy_systems/', glob.glob('hub/data/energy_systems/*.xml')), - ('hub/data/energy_systems/', glob.glob('hub/data/energy_systems/*.insel')), - ('hub/data/energy_systems/', glob.glob('hub/data/energy_systems/*.xlsx')), - ('hub/data/energy_systems/*', glob.glob('hub/data/energy_systems/*.txt')), - ('hub/data/energy_systems/*', glob.glob('hub/data/energy_systems/*.yaml')), - ('hub/data/greenery/', glob.glob('hub/data/greenery/*.xml')), - ('hub/data/life_cycle_assessment/', glob.glob('hub/data/life_cycle_assessment/*.xml')), - ('hub/data/schedules/', glob.glob('hub/data/schedules/*.xml')), - ('hub/data/schedules/', glob.glob('hub/data/schedules/*.xlsx')), - ('hub/data/schedules/idf_files/', glob.glob('hub/data/schedules/idf_files/*.idf')), - ('hub/data/sensors/', glob.glob('hub/data/sensors/*.json')), - ('hub/data/usage/', glob.glob('hub/data/usage/*.xml')), - ('hub/data/usage/', glob.glob('hub/data/usage/*.xlsx')), - ('hub/data/weather/', glob.glob('hub/data/weather/*.dat')), - ('hub/data/weather/epw/', glob.glob('hub/data/weather/epw/*.epw')), - ('hub/data/weather/', glob.glob('hub/data/weather/*.dat')), + ('hub/data/customized_imports', glob.glob('hub/data/customized_imports/*.xml')), + ('hub/data/energy_systems', glob.glob('hub/data/energy_systems/*.xml')), + ('hub/data/energy_systems', glob.glob('hub/data/energy_systems/*.insel')), + ('hub/data/energy_systems', glob.glob('hub/data/energy_systems/*.xlsx')), + ('hub/data/energy_systems', glob.glob('hub/data/energy_systems/*.txt')), + ('hub/data/energy_systems', glob.glob('hub/data/energy_systems/*.yaml')), + ('hub/data/greenery', glob.glob('hub/data/greenery/*.xml')), + ('hub/data/life_cycle_assessment', glob.glob('hub/data/life_cycle_assessment/*.xml')), + ('hub/data/schedules', glob.glob('hub/data/schedules/*.xml')), + ('hub/data/schedules', glob.glob('hub/data/schedules/*.xlsx')), + ('hub/data/schedules/idf_files', glob.glob('hub/data/schedules/idf_files/*.idf')), + ('hub/data/sensors', glob.glob('hub/data/sensors/*.json')), + ('hub/data/usage', glob.glob('hub/data/usage/*.xml')), + ('hub/data/usage', glob.glob('hub/data/usage/*.xlsx')), + ('hub/data/weather', glob.glob('hub/data/weather/*.dat')), + ('hub/data/weather/epw', glob.glob('hub/data/weather/epw/*.epw')), + ('hub/data/weather', glob.glob('hub/data/weather/*.dat')), ('hub/exports/building_energy/idf_files', glob.glob('hub/exports/building_energy/idf_files/*.idf')), ('hub/exports/building_energy/idf_files', glob.glob('hub/exports/building_energy/idf_files/*.idd')), ('hub/helpers/data', glob.glob('hub/helpers/data/quebec_to_hub.json')) From 580ff5c63c297cfed75e13aa30fa374c333b13ae Mon Sep 17 00:00:00 2001 From: guille Date: Tue, 21 Feb 2023 09:41:26 -0500 Subject: [PATCH 04/27] user_login method and bug fix - Now the geojson missing functions will not crah - Now a user can login directly with application_uuid, user and password --- hub/exports/db_factory.py | 5 +- .../data/montreal_function_to_hub_function.py | 202 ++++++++++++++---- hub/imports/geometry/geojson.py | 2 +- hub/persistence/repositories/user.py | 22 +- 4 files changed, 185 insertions(+), 46 deletions(-) diff --git a/hub/exports/db_factory.py b/hub/exports/db_factory.py index 32906fde..c4c7cf7f 100644 --- a/hub/exports/db_factory.py +++ b/hub/exports/db_factory.py @@ -46,7 +46,10 @@ class DBFactory: return self._application.get_by_uuid(application_uuid) def user_info(self, name, password, application_id): - return self._user.get_by_name_application_and_password(name, password, application_id) + return self._user.get_by_name_application_id_and_password(name, password, application_id) + + def user_login(self, name, password, application_uuid): + return self._user.get_by_name_application_uuid_and_password(name, password, application_uuid) def building_info(self, name, city_id): return self._city_object.get_by_name_and_city(name, city_id) diff --git a/hub/helpers/data/montreal_function_to_hub_function.py b/hub/helpers/data/montreal_function_to_hub_function.py index 1f8e88ce..5b107196 100644 --- a/hub/helpers/data/montreal_function_to_hub_function.py +++ b/hub/helpers/data/montreal_function_to_hub_function.py @@ -10,11 +10,10 @@ import hub.helpers.constants as cte class MontrealFunctionToHubFunction: - # Todo: "office" "Mausolée" and "hotel/motel" need to be replaced for a constant value. def __init__(self): self._dictionary = { - "Administration publique municipale et régionale": "Office", - "Administration publique provinciale": "Office", + "Administration publique municipale et régionale": cte.MEDIUM_OFFICE, + "Administration publique provinciale": cte.MEDIUM_OFFICE, "Agence de voyages ou d'expéditions": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, "Aiguillage et cour de triage de chemins de fer": cte.WAREHOUSE, "Amphithéâtre et auditorium": cte.EVENT_LOCATION, @@ -52,7 +51,7 @@ class MontrealFunctionToHubFunction: "Autres bases et réserves militaires": cte.WAREHOUSE, "Autres centres de recherche": cte.SECONDARY_SCHOOL, "Autres centres de services sociaux ou bureaux de travailleurs sociaux": cte.OFFICE_AND_ADMINISTRATION, - "Autres centres et réseaux de télévision et de radiodiffusion (système combiné)": "Office", + "Autres centres et réseaux de télévision et de radiodiffusion (système combiné)": cte.MEDIUM_OFFICE, "Autres entreposages": cte.WAREHOUSE, "Autres espaces de plancher inoccupé": cte.WAREHOUSE, "Autres espaces de terrain et étendues d'eau inexploités": cte.WAREHOUSE, @@ -99,11 +98,11 @@ class MontrealFunctionToHubFunction: "Autres maisons et locaux fraternels": cte.OFFICE_AND_ADMINISTRATION, "Autres maisons pour personnes retraitées": cte.OFFICE_AND_ADMINISTRATION, "Autres parcs": cte.WAREHOUSE, - "Autres routes et voies publiques": "Office", - "Autres résidences d'étudiants": "Office", - "Autres résidences provisoires": "Office", + "Autres routes et voies publiques": cte.WAREHOUSE, + "Autres résidences d'étudiants": cte.DORMITORY, + "Autres résidences provisoires": cte.DORMITORY, "Autres services connexes aux valeurs mobilières et aux marchandises": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Autres services d'affaires": "Office", + "Autres services d'affaires": cte.MEDIUM_OFFICE, "Autres services d'aqueduc et d'irrigation": cte.WAREHOUSE, "Autres services de construction de bâtiments": cte.WAREHOUSE, "Autres services de génie civil (entrepreneur général)": cte.WAREHOUSE, @@ -149,7 +148,7 @@ class MontrealFunctionToHubFunction: "Centre commercial super régional (200 magasins et plus)": cte.STRIP_MALL, "Centre communautaire ou de quartier (inclus Centre diocésain)": cte.OFFICE_AND_ADMINISTRATION, "Centre d'accueil ou établissement curatif (inclus centre de réadaptation pour handicapés physiques et mentaux)": cte.OUT_PATIENT_HEALTH_CARE, - "Centre d'appels téléphoniques": "Office", + "Centre d'appels téléphoniques": cte.MEDIUM_OFFICE, "Centre d'entraide et de ressources communautaires (inclus ressources d'hébergement de meubles et d'alimentation)": cte.OUT_PATIENT_HEALTH_CARE, "Centre d'entreposage de produits pétroliers (pétrole brutgaz pétrole liquéfiémazout domestique et autres produits raffinés)": cte.WAREHOUSE, "Centre d'entreposage du gaz (avant distrib.aux consommateurs)": cte.WAREHOUSE, @@ -200,13 +199,13 @@ class MontrealFunctionToHubFunction: "Gare de chemins de fer": cte.WAREHOUSE, "Gymnase et formation athlétique": cte.SPORTS_LOCATION, "Hangar à avion": cte.WAREHOUSE, - "Hôtel (incluant les hôtels-motels)": "Hotel/Motel", - "Hôtel résidentiel": "Hotel/Motel", + "Hôtel (incluant les hôtels-motels)": cte.SMALL_HOTEL, + "Hôtel résidentiel": cte.SMALL_HOTEL, "Immeuble commercial": cte.STAND_ALONE_RETAIL, - "Immeuble non résidentiel en construction": "Office", + "Immeuble non résidentiel en construction": cte.NON_HEATED, "Immeuble résidentiel en construction": cte.RESIDENTIAL, - "Immeuble à bureaux": "Office", - "Immeuble à temps partagé («time share») Propriété ou copropriété ou groupe d'usufruitier ont chacun droit de jouissancepériodique et successif.": "Office", + "Immeuble à bureaux": cte.MEDIUM_OFFICE, + "Immeuble à temps partagé («time share») Propriété ou copropriété ou groupe d'usufruitier ont chacun droit de jouissancepériodique et successif.": cte.MEDIUM_OFFICE, "Incinérateur": cte.INDUSTRY, "Industrie d'accessoires vestimentaires et d'autres vêtements": cte.INDUSTRY, "Industrie d'alcools destinés à la consommation (distillerie)": cte.INDUSTRY, @@ -308,27 +307,27 @@ class MontrealFunctionToHubFunction: "Installation portuaire en général": cte.WAREHOUSE, "Jardin botanique": cte.WAREHOUSE, "Ligne de l'oléoduc": cte.WAREHOUSE, - "Local pour les associations fraternelles": "Office", + "Local pour les associations fraternelles": cte.EVENT_LOCATION, "Logement": cte.RESIDENTIAL, "Logement vacant dans un bâtiment comportant plusieurs logements ou autres locaux": cte.RESIDENTIAL, - "Loisir et autres activités culturelles": "Office", - "Maison d'agentsde courtiers et de services d'administration des biens-fonds": "Office", - "Maison d'étudiants (collège et université)": "Office", - "Maison de chambres et pension": "Office", - "Maison de chambres pour personnes ayant une déficience intellectuelle": "Office", - "Maison de courtiers et de négociants de marchandises": "Office", - "Maison de réhabilitation": "Office", - "Maison des jeunes": "Office", - "Maison pour personnes en difficulté (séjours périodes limitées)": "Office", + "Loisir et autres activités culturelles": cte.HALL, + "Maison d'agents de courtiers et de services d'administration des biens-fonds": cte.MEDIUM_OFFICE, + "Maison d'étudiants (collège et université)": cte.DORMITORY, + "Maison de chambres et pension": cte.DORMITORY, + "Maison de chambres pour personnes ayant une déficience intellectuelle": cte.DORMITORY, + "Maison de courtiers et de négociants de marchandises": cte.MEDIUM_OFFICE, + "Maison de réhabilitation": cte.HOSPITAL, + "Maison des jeunes": cte.HALL, + "Maison pour personnes en difficulté (séjours périodes limitées)": cte.HOSPITAL, "Maison pour personnes retraitées autonomes": cte.DORMITORY, "Maison pour personnes retraitées non autonomes (inclus les CHLSD)": cte.DORMITORY, "Marché public": cte.STRIP_MALL, - "Meunerie et minoterie": "Office", + "Meunerie et minoterie": cte.MEDIUM_OFFICE, "Monastère": cte.DORMITORY, "Monument et site historique": cte.EVENT_LOCATION, - "Motel": "hotel/Motel", + "Motel": cte.SMALL_HOTEL, "Musée": cte.EVENT_LOCATION, - "Organisme international et autres organismes extraterritoriaux": "Office", + "Organisme international et autres organismes extraterritoriaux": cte.MEDIUM_OFFICE, "Parc d'amusement (extérieur)": cte.NON_HEATED, "Parc de maisons mobiles (fonds de terre seulement)": cte.NON_HEATED, "Parc pour la récréation en général": cte.NON_HEATED, @@ -354,7 +353,7 @@ class MontrealFunctionToHubFunction: "Réparation et entretien des avions": cte.WAREHOUSE, "Réserve pour la protection de la faune": cte.NON_HEATED, "Réservoir d'eau (installation d'emmagasinage de l'eau par retenue et réservoirs)": cte.NON_HEATED, - "Résidence de tourismeappartement maison ou chalet (meublé et équipé pour repas)": "hotel/Motel", + "Résidence de tourismeappartement maison ou chalet (meublé et équipé pour repas)": cte.SMALL_HOTEL, "Salle d'exposition": cte.EVENT_LOCATION, "Salle et terrain de squash de racquetball et de tennis": cte.SPORTS_LOCATION, "Salle ou salon de quilles": cte.NON_HEATED, @@ -391,23 +390,23 @@ class MontrealFunctionToHubFunction: "Service de location de boites postales (sauf le publipostage) et centre de courrier privé": cte.OFFICE_AND_ADMINISTRATION, "Service de location de camions de remorques utilitaires et de véhicules de plaisance": cte.WAREHOUSE, "Service de maçonnerie (entrepreneur spécialisé)": cte.INDUSTRY, - "Service de messagers": "Office", - "Service de notaires": "Office", + "Service de messagers": cte.MEDIUM_OFFICE, + "Service de notaires": cte.MEDIUM_OFFICE, "Service de paysagement ou de déneigement": cte.WAREHOUSE, "Service de petite menuiserie et de finition (entrepreneur spécialisé)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, "Service de plomberie de chauffagede climatisation et de ventilation (entrepreneur spécialisé)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, "Service de police fédérale et activités connexes": cte.OFFICE_AND_ADMINISTRATION, "Service de police municipale et activités connexes": cte.OFFICE_AND_ADMINISTRATION, "Service de pose de portesde fenêtres et de panneaux de verre": cte.WAREHOUSE, - "Service de publicité en général": "Office", + "Service de publicité en général": cte.MEDIUM_OFFICE, "Service de recherche de développement et d'essais": cte.SECONDARY_SCHOOL, "Service de remplacement de pièces et d'accessoires d'automobiles (amortisseurs silencieux toits ouvrants glacespare-brises...)": cte.WAREHOUSE, "Service de revêtement en asphalte et en bitume": cte.WAREHOUSE, "Service de réparation d'automobiles (garage) sans pompes à essence(5531)": cte.WAREHOUSE, "Service de réparation d'autres véhicules légers": cte.WAREHOUSE, "Service de réparation de véhicules légers motorisés (motocyclettemotoneige véhicule tout terrain)": cte.WAREHOUSE, - "Service de réparation et d'entretien de machines et de matériel d'usage commercial et industriel": "Office", - "Service de réparation et d'entretien de matériel informatique": "Office", + "Service de réparation et d'entretien de machines et de matériel d'usage commercial et industriel": cte.WAREHOUSE, + "Service de réparation et d'entretien de matériel informatique": cte.COMMERCIAL, "Service de réparation et d'entretien de systèmes de plomberieschauffageventilation et climatisation.(entrepreneur spécialisé)": cte.WAREHOUSE, "Service de réparation et d'entretien de véhicules lourds": cte.WAREHOUSE, "Service de réparation et de rembourrage de meubles": cte.WAREHOUSE, @@ -421,8 +420,8 @@ class MontrealFunctionToHubFunction: "Service de vétérinaires et d'hôpital pour animaux de ferme": cte.OUT_PATIENT_HEALTH_CARE, "Service dentaire (inclus chirurgie et hygiène)": cte.OUT_PATIENT_HEALTH_CARE, "Service en santé mentale (cabinet) (comprend tous services professionnelspsychiatre psychologuepsychanalyste)": cte.OUT_PATIENT_HEALTH_CARE, - "Service en travaux de fondation et de structures en béton (entrepreneur spécialisé)": "Office", - "Service informatique (location ou utilisation partagée services auxiliaires programmation planification et analyse de système)": "Office", + "Service en travaux de fondation et de structures en béton (entrepreneur spécialisé)": cte.WAREHOUSE, + "Service informatique (location ou utilisation partagée services auxiliaires programmation planification et analyse de système)": cte.MEDIUM_OFFICE, "Service médical (cabinet de médecins et chirurgiens spécialisés)": cte.OUT_PATIENT_HEALTH_CARE, "Service photographique (incluant les services commerciaux)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, "Service pour l'entretien ménager": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, @@ -439,10 +438,10 @@ class MontrealFunctionToHubFunction: "Stationnement extérieur (condo)": cte.NON_HEATED, "Stationnement intérieur ( condo non résidentiel)": cte.WAREHOUSE, "Stationnement intérieur (condo)": cte.WAREHOUSE, - "Studio d'enregistrement du son (disque cassette et disque compact)": "Office", - "Studio de production de filmsde vidéos ou de publicités (ne comprends pas le laboratoire de production)": "Office", - "Studio de télévision (sans public)": "Office", - "Syndicat et organisation similaire": "Office", + "Studio d'enregistrement du son (disque cassette et disque compact)": cte.MEDIUM_OFFICE, + "Studio de production de filmsde vidéos ou de publicités (ne comprends pas le laboratoire de production)": cte.MEDIUM_OFFICE, + "Studio de télévision (sans public)": cte.MEDIUM_OFFICE, + "Syndicat et organisation similaire": cte.MEDIUM_OFFICE, "Terminus maritime (passagers) incluant les gares de traversiers": cte.WAREHOUSE, "Terrain de golf (avec chalet et autres aménagements sportifs)": cte.NON_HEATED, "Terrain de sport (jeux et pistes pour compétitions et sportgradins)": cte.NON_HEATED, @@ -546,10 +545,129 @@ class MontrealFunctionToHubFunction: "Mausolée": cte.NON_HEATED, "Auberge ou gîte touristique (Hôtel à caractère familial, d'au plus 3 étages en hauteur de bâtiment)": cte.HOTEL, "Service de garderie (prématernelle, moins de 50 % de poupons)": cte.PRIMARY_SCHOOL, - "Église, synagogue, mosquée et temple": cte.CONVENTION_CENTER - - + "Église, synagogue, mosquée et temple": cte.CONVENTION_CENTER, + "Station libre-service, ou avec service et dépanneur sans réparation de véhicules automobiles": cte.WAREHOUSE, + "Service de buanderie, de nettoyage à sec et de teinture (sauf les tapis)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Service bancaire (dépôts et prêts, incluant banque à charte)": cte.COMMERCIAL, + "Restaurant et établissement avec service complet (avec terrasse) - Établissements avec permis alcool, inclus pub,café et brasserie": cte.FULL_SERVICE_RESTAURANT, + "Restaurant et établissement avec service complet (sans terrasse) -Établissements avec permis alcool, inclus pub,café et brasserie": cte.FULL_SERVICE_RESTAURANT, + "Autres services immobiliers, financiers et d'assurance": cte.COMMERCIAL, + "Résidence de tourisme, appartement, maison ou chalet (meublé et équipé pour repas)": cte.RESIDENTIAL, + "Salon de beauté (maquillage, manucure, etc..)": cte.COMMERCIAL, + "Service de buanderie et de nettoyage à sec (libre-service)": cte.COMMERCIAL, + "Association civique, sociale et fraternelle": cte.COMMERCIAL, + "Vente en gros d'automobiles et autres véhicules automobiles neufs ou d'occasions, incluent VR)": cte.WAREHOUSE, + "Autres services de soutien aux entreprises": cte.COMMERCIAL, + "Vente au détail de vêtements pour toute la famille": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Vente au détail de bijoux": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Service d'avocats": cte.MEDIUM_OFFICE, + "Service informatique (location ou utilisation partagée, services auxiliaires programmation planification et analyse de système)": cte.MEDIUM_OFFICE, + "Centre d'entraide et de ressources communautaires (inclus ressources d'hébergement, de meubles et d'alimentation)": cte.COMMERCIAL, + "Service de comptabilité, de vérification et de tenue de livre": cte.MEDIUM_OFFICE, + "Autres transports, communications et services publics (infrastructure)": cte.WAREHOUSE, + "Autres institutions de formation spécialisée (inclus écoles de langues, de couture, d'arts martiaux, de combats et autres)": cte.SECONDARY_SCHOOL, + "Chemin de fer (sauf train touristique, aiguillage et cour de triage)": cte.WAREHOUSE, + "Service d'agence de placement": cte.COMMERCIAL, + "Espace de plancher inoccupé dont l'usage serait la vente au détail": cte.NON_HEATED, + "Industrie de produits en plastique stratifié, sous pression ou renforcé": cte.INDUSTRY, + "Studio de production de films, de vidéos ou de publicités (ne comprends pas le laboratoire de production)": cte.MOTION_PICTURE_THEATRE, + "Industrie de la fabrication de supports d'enregistrement, de la reproduction du son et des instruments de musique": cte.INDUSTRY, + "Vente au détail du café, du thé, d'épices et d'aromates": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Station libre-service, ou avec service sans réparation de véhicules automobiles": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Vente au détail de produits de la boulangerie et de la pâtisserie (non manufacturés sur place)": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + "Vente au détail de serrures, de clés et d'accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Autres activités de vente au détail de vêtements, comme les accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Vente en gros d'équipements et de pièces pour la réfrigération, ventilation, la climatisation et le chauffage (système combiné)": cte.WAREHOUSE, + "Service de réparation de véhicules légers motorisés (motocyclette, motoneige, véhicule tout terrain)": cte.WAREHOUSE, + "Service de location de camions, de remorques utilitaires et de véhicules de plaisance": cte.WAREHOUSE, + "Vente au détail d'autres articles de ferme": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + "Salon d'esthétique (épilation, traitement de la peau)": cte.COMMERCIAL, + "Service de location de films, de jeux vidéos et de matériel audiovisuel": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + "Vente en gros de vêtements, de lingerie, de bas et d'accessoires": cte.WAREHOUSE, + "Service d'entretien de chaussures et d'articles de cuir (cordonnerie)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Vente au détail de lingerie pour enfants": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Vente au détail, magasin à rayons": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Vente au détail de vêtements et d'articles usagés, friperies (sauf le marché aux puces)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Entreposage du mobilier et d'appareils ménagers, incluant les mini-entrepôts": cte.WAREHOUSE, + "Service de construction non résidentielle, industrielle (entrepreneur général)": cte.WAREHOUSE, + "Immeuble à temps partagé («time share») Propriété ou copropriété ou groupe d'usufruitier ont chacun droit de jouissance, périodique et successif.": cte.COMMERCIAL, + "Autres activités récréatives": cte.EVENT_LOCATION, + "Industrie de produits de boulangerie commerciale, de produits de boulangerie congelés et de pâtisseries": cte.INDUSTRY, + "Studio d'enregistrement du son (disque, cassette et disque compact)": cte.COMMERCIAL, + "Autres services de soins paramédicaux": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + "Studio de radiodiffusion (sans public)": cte.COMMERCIAL, + "Autres présentations d'objets ou d'animaux": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Autres étendues d'eau": cte.WAREHOUSE, + "Maison d'agents, de courtiers et de services d'administration des biens-fonds": cte.MEDIUM_OFFICE, + "Industrie de l'édition du livre": cte.INDUSTRY, + "Vente au détail ou location d'articles,d'accessoires de scène et de costumes": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "École de beaux-arts et de musique (exclus arts publicitaires, arts graphiques et photographie publicitaire)": cte.SECONDARY_SCHOOL, + "Vente au détail de peinture, de verre et de papier tenture": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Agence et courtier d'assurances": cte.MEDIUM_OFFICE, + "Centre de santé (inclus saunas, spas et bains thérapeutiques ou turcs)": cte.HEALTH_CARE, + "Établissement dont l'activité principale est la danse (discothèque avec service alcool, boite de nuit) sans alcool code 7397": cte.QUICK_SERVICE_RESTAURANT, + "Vente au détail de pneus, de batteries et d'accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Salle et terrain de squash, de racquetball et de tennis": cte.WAREHOUSE, + "Service de télécommunication sans fil (appareil mobile, sauf par Internet)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Centre de recherche en science physique et chimique (inclus science optique)": cte.UNIVERSITY, + "Association, union ou coop d'épargne et de prêt (inclus caisses populaires locales)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Industrie du meuble et d'articles d'ameublement pour hôtels, restaurants et institutions": cte.INDUSTRY, + "Service d'affichage à l'extérieur": cte.NON_HEATED, + "Service de traitement pour automobiles (antirouille, etc.)": cte.INDUSTRY, + "Vente au détail de revêtements de planchers et de murs (bois franc, plancher flottant, carreaux céramiques, tapisserie)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Vente au détail de livres et de journaux": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Autres industries du laminage, du moulage et de l'extrusion de métaux non-ferreux": cte.INDUSTRY, + "Vente au détail d'appareils ménagers": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Service de plomberie, de chauffage, de climatisation et de ventilation (entrepreneur spécialisé)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Vente au détail de radios, de téléviseurs, systèmes de son et appareils électroniques": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Vente au détail, clubs de gros et hypermarchés (entrepôt-club)": cte.STRIP_MALL, + "Conserverie, marinage, saumurage et séchage de fruits et de légumes": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + "Industrie de l'étirage, de l'extrusion et alliage de l'aluminium, fabriqué à partir d'aluminium acheté": cte.INDUSTRY, + "Restaurant et établissement offrant des repas à libre-service (cafétéria, cantine)": cte.QUICK_SERVICE_RESTAURANT, + "Pressage de vêtements": cte.COMMERCIAL, + "Vente au détail d'articles, d'accessoires d'aménagement paysager et de jardin": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Planétarium": cte.MUSEUM, + "Industrie de ventilateurs, de soufflantes et de purificateurs d'air industriels et commerciaux": cte.INDUSTRY, + "Service de pose de portes, de fenêtres et de panneaux de verre": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Association de personnes exerçant une même profession ou une même activité": cte.MEDIUM_OFFICE, + "Service de remplacement de pièces et d'accessoires d'automobiles (amortisseurs, silencieux,toits ouvrants, glaces, pare-brises...)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Service d'hébergement des données (sites Web, diffusion audio et vidéo en continu, services d'application)": cte.DATACENTER, + "Vente au détail de produits naturels et aliments de régime": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + "Autres activités de vente au détail reliées aux automobiles, aux embarcations, aux avions et à leurs accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Autres lieux d'amusement": cte.EVENT_LOCATION, + "Vente en gros d'appareils et d'équipements électriques, de fils et de matériel électronique de construction": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Industrie de peinture, de teinture et de vernis": cte.INDUSTRY, + "Autres industries de l'impression et de l'édition (combinées)": cte.INDUSTRY, + "Vente en gros d'équipements et de pièces de machinerie commerciale,industrielle ou agricole (incluant machinerie lourde)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Industrie de lingerie, de vêtements de détente et de vêtements de nuit pour femmes et filles": cte.INDUSTRY, + "Vente au détail d'équipements de plomberie, de chauffage, de ventilation, de climatisation et de foyer": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Autres industries de produits minéraux non métalliques": cte.INDUSTRY, + "Entreprise d'excavation, de nivellement, de défrichage et installation de fosses septiques": cte.NON_HEATED, + "Vente au détail, fournitures pour la maison et l'auto": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Industrie d'armoires, de placards de cuisine et de coiffeuses de salle de bains en bois": cte.INDUSTRY, + "Terrain de sport (jeux et pistes pour compétitions et sport, gradins)": cte.SPORTS_LOCATION, + "Vente au détail de piscines, de spas et leurs accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Service en santé mentale (cabinet) (comprend tous services professionnels, psychiatre,psychologue, psychanalyste)": cte.HEALTH_CARE, + "Service de construction de routes, de rues et de ponts,de trottoirs et de pistes (entrepreneur général)": cte.NON_HEATED, + "Vente en gros d'appareils électriques, de téléviseurs et de radios": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Vente au détail de motocyclettes, de motoneiges et de leurs accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Industrie du meuble rembourré résidentiel (rembourrage, service de réparation, voir 6423)": cte.INDUSTRY, + "Vente au détail de jouets et d'articles de jeux": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Industrie du laminage, de l'étirage et de l'extrusion du cuivre et de ses alliages": cte.INDUSTRY, + "Archives (incluant cinémathèque, vidéothèque)": cte.WAREHOUSE_REFRIGERATED, + "Service de recherche, de développement et d'essais": cte.UNIVERSITY, + "Industrie de tapis, carpettes et moquettes": cte.INDUSTRY, + "Industrie du revêtement métallique, sur commande": cte.INDUSTRY, + "Service de réparation et d'entretien de systèmes de plomberies,chauffage, ventilation et climatisation.(entrepreneur spécialisé)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Salle de réunions, centre de conférence et congrès": cte.CONVENTION_CENTER, + "Vente en gros d'autres médicaments, de produits chimiques et de produits connexes": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + "Vente au détail d'armoires de coiffeuses et de meubles d'appoint": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + "Industrie de chaudières, d'échangeurs de chaleur et de plaques métalliques": cte.INDUSTRY, + "Industrie du clichage, de la composition de la reliure et de la lithographie": cte.INDUSTRY, + "Service de construction non résidentielle, commerciale et institutionnelle (entrepreneur général)": cte.MEDIUM_OFFICE, + "Centre d'entreposage de produits pétroliers (pétrole brut, gaz pétrole liquéfié, mazout domestique et autres produits raffinés)": cte.WAREHOUSE, + "École à caractère familial (exploité par une personne physique dans sa résidence, moins de 15 élèves)": cte.PRIMARY_SCHOOL } @property diff --git a/hub/imports/geometry/geojson.py b/hub/imports/geometry/geojson.py index 58f3949d..21f27b27 100644 --- a/hub/imports/geometry/geojson.py +++ b/hub/imports/geometry/geojson.py @@ -163,6 +163,6 @@ class Geojson: for building in buildings: self._city.add_city_object(building) self._city.level_of_detail.geometry = lod - if len(missing_functions > 0): + if len(missing_functions) > 0: print(f'There are unknown functions {missing_functions}') return self._city diff --git a/hub/persistence/repositories/user.py b/hub/persistence/repositories/user.py index dfa797d6..0256f654 100644 --- a/hub/persistence/repositories/user.py +++ b/hub/persistence/repositories/user.py @@ -9,6 +9,7 @@ from hub.persistence import Repository from sqlalchemy.exc import SQLAlchemyError from sqlalchemy import select from hub.persistence.models import User as Model +from hub.persistence.models import Application as ApplicationModel from hub.persistence.models import UserRoles from hub.helpers.auth import Auth from typing import Union, Dict @@ -99,14 +100,14 @@ class User(Repository): except SQLAlchemyError as err: logger.error(f'Error while fetching user by name and application: {err}') - def get_by_name_application_and_password(self, name: str, password: str, application_id: int) -> [Model]: + def get_by_name_application_id_and_password(self, name: str, password: str, application_id: int) -> [Model]: """ Fetch user based on the email and password :param name: User name :param password: User password :param application_id: User password - :return: [User] with the provided email and password + :return: [User] """ try: user = self.session.execute( @@ -118,3 +119,20 @@ class User(Repository): return {'message': 'invalid login information'} except SQLAlchemyError as err: logger.error(f'Error while fetching user by email: {err}') + + def get_by_name_application_uuid_and_password(self, name: str, password: str, application_uuid: str) -> [Model]: + """ + Fetch user based on the email and password + :param name: User name + :param password: User password + :param application_uuid: Application uuid + + :return: [User] + """ + try: + application = self.session.execute( + select(ApplicationModel).where(ApplicationModel.application_uuid == application_uuid) + ).first() + return self.get_by_name_application_id_and_password(name, password, application[0].id) + except SQLAlchemyError as err: + logger.error(f'Error while fetching user by name: {err}') From 30dbea0edce5ff81f51ef78155f48adb74f4ddae Mon Sep 17 00:00:00 2001 From: guille Date: Tue, 21 Feb 2023 09:42:26 -0500 Subject: [PATCH 05/27] varsion 0.1.7.7 --- hub/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub/version.py b/hub/version.py index 0676f8b8..458247dd 100644 --- a/hub/version.py +++ b/hub/version.py @@ -1 +1 @@ -__version__ = '0.1.7.6' +__version__ = '0.1.7.7' From 018c3d24a5570817cdda8c400b85a81c44329705 Mon Sep 17 00:00:00 2001 From: guille Date: Tue, 21 Feb 2023 10:03:37 -0500 Subject: [PATCH 06/27] Bug fix in user info --- hub/persistence/repositories/user.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hub/persistence/repositories/user.py b/hub/persistence/repositories/user.py index 6c034d0e..87005a4a 100644 --- a/hub/persistence/repositories/user.py +++ b/hub/persistence/repositories/user.py @@ -115,9 +115,7 @@ class User(Repository): ).first() if user: if Auth.check_password(password, user[0].password): - #return user[0] - return True - return False + return user[0] except SQLAlchemyError as err: logger.error(f'Error while fetching user by email: {err}') From 7dbfdf188a1b3921a57c24bc997ad081442e4b5b Mon Sep 17 00:00:00 2001 From: guille Date: Tue, 21 Feb 2023 10:04:02 -0500 Subject: [PATCH 07/27] Version 0.1.7.8 --- hub/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub/version.py b/hub/version.py index 458247dd..c3913bcd 100644 --- a/hub/version.py +++ b/hub/version.py @@ -1 +1 @@ -__version__ = '0.1.7.7' +__version__ = '0.1.7.8' From 8469674b18331aa08c548414af4c71707e73869f Mon Sep 17 00:00:00 2001 From: Pilar Date: Tue, 21 Feb 2023 10:14:55 -0500 Subject: [PATCH 08/27] added nrcan catalog --- .../construction/construction_helper.py | 17 +- .../construction/nrcan_catalog.py | 276 +- .../data_models/construction/construction.py | 2 +- .../data_models/construction/window.py | 11 +- hub/data/construction/nrcan_archetypes.json | 47032 ++++++++-------- .../construction/nrcan_constructions.json | 768 +- hub/unittests/test_construction_catalog.py | 27 +- 7 files changed, 23547 insertions(+), 24586 deletions(-) diff --git a/hub/catalog_factories/construction/construction_helper.py b/hub/catalog_factories/construction/construction_helper.py index a93c2584..a9bdaf19 100644 --- a/hub/catalog_factories/construction/construction_helper.py +++ b/hub/catalog_factories/construction/construction_helper.py @@ -22,15 +22,14 @@ class ConstructionHelper: } _nrcan_surfaces_types_to_hub_types = { - 'Wall_Outdoors': cte.WALL, - 'RoofCeiling_Outdoors': cte.ROOF, - 'Floor_Outdoors': cte.ATTIC_FLOOR, - 'Window_Outdoors': cte.WINDOW, - 'Skylight_Outdoors': cte.SKYLIGHT, - 'Door_Outdoors': cte.DOOR, - 'Wall_Ground': cte.GROUND_WALL, - 'RoofCeiling_Ground': cte.GROUND_WALL, - 'Floor_Ground': cte.GROUND + 'OutdoorsWall': cte.WALL, + 'OutdoorsRoofCeiling': cte.ROOF, + 'OutdoorsFloor': cte.ATTIC_FLOOR, + 'Window': cte.WINDOW, + 'Skylight': cte.SKYLIGHT, + 'GroundWall': cte.GROUND_WALL, + 'GroundRoofCeiling': cte.GROUND_WALL, + 'GroundFloor': cte.GROUND } @property diff --git a/hub/catalog_factories/construction/nrcan_catalog.py b/hub/catalog_factories/construction/nrcan_catalog.py index 1ace7524..0fe42d72 100644 --- a/hub/catalog_factories/construction/nrcan_catalog.py +++ b/hub/catalog_factories/construction/nrcan_catalog.py @@ -6,119 +6,227 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ import json -import urllib.request -import xmltodict - +from pathlib import Path from hub.catalog_factories.catalog import Catalog -from hub.catalog_factories.data_models.usages.content import Content +from hub.catalog_factories.data_models.construction.content import Content from hub.catalog_factories.construction.construction_helper import ConstructionHelper from hub.catalog_factories.data_models.construction.construction import Construction from hub.catalog_factories.data_models.construction.archetype import Archetype +from hub.catalog_factories.data_models.construction.window import Window +from hub.catalog_factories.data_models.construction.material import Material +from hub.catalog_factories.data_models.construction.layer import Layer class NrcanCatalog(Catalog): def __init__(self, path): - path = str(path / 'nrcan.xml') - self._content = None - self._g_value_per_hdd = [] - self._thermal_transmittance_per_hdd_and_surface = {} - self._window_ratios = {} - with open(path) as xml: - self._metadata = xmltodict.parse(xml.read()) - self._base_url_archetypes = self._metadata['nrcan']['@base_url_archetypes'] - self._base_url_construction = self._metadata['nrcan']['@base_url_construction'] - self._load_window_ratios() - self._load_construction_values() - self._content = Content(self._load_archetypes()) + _path_archetypes = Path(path / 'nrcan_archetypes.json').resolve() + _path_constructions = (path / 'nrcan_constructions.json') + with open(_path_archetypes, 'r') as file: + self._archetypes = json.load(file) + with open(_path_constructions, 'r') as file: + self._constructions = json.load(file) - def _load_window_ratios(self): - for standard in self._metadata['nrcan']['standards_per_function']['standard']: - url = f'{self._base_url_archetypes}{standard["file_location"]}' - # todo: read from file - self._window_ratios = {'Mean': 0.2, 'North': 0.2, 'East': 0.2, 'South': 0.2, 'West': 0.2} + self._catalog_windows = self._load_windows() + self._catalog_materials = self._load_materials() + self._catalog_constructions = self._load_constructions() + self._catalog_archetypes = self._load_archetypes() - def _load_construction_values(self): - for standard in self._metadata['nrcan']['standards_per_period']['standard']: - g_value_url = f'{self._base_url_construction}{standard["g_value_location"]}' - punc = '() Date: Wed, 22 Feb 2023 04:33:34 -0500 Subject: [PATCH 09/27] Remove commented code --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 615adc67..0053ffc1 100644 --- a/setup.py +++ b/setup.py @@ -67,7 +67,6 @@ setup( 'hub.imports', 'hub.imports.construction', 'hub.imports.construction.helpers', - #'hub.imports.construction.data_classes', 'hub.imports.energy_systems', 'hub.imports.geometry', 'hub.imports.geometry.citygml_classes', From 536a3fe4142a0c939cf0ca1fdba4900a321fd98e Mon Sep 17 00:00:00 2001 From: Pilar Date: Wed, 22 Feb 2023 08:31:14 -0500 Subject: [PATCH 10/27] added nrcan catalog --- .../data_models/construction/archetype.py | 18 +- .../data_models/construction/construction.py | 2 +- .../data_models/construction/layer.py | 2 +- .../data_models/construction/material.py | 2 +- .../building_demand/material.py | 6 +- .../building_demand/thermal_zone.py | 4 +- hub/data/construction/nrcan_archetypes.json | 10368 +++++++--------- .../construction/nrcan_constructions.json | 5308 ++++---- .../insel/insel_monthly_energy_balance.py | 5 +- .../helpers/construction_helper.py | 20 +- .../construction/nrcan_physics_parameters.py | 38 +- hub/unittests/test_construction_factory.py | 104 +- 12 files changed, 7040 insertions(+), 8837 deletions(-) diff --git a/hub/catalog_factories/data_models/construction/archetype.py b/hub/catalog_factories/data_models/construction/archetype.py index 6f69a874..d23e57a0 100644 --- a/hub/catalog_factories/data_models/construction/archetype.py +++ b/hub/catalog_factories/data_models/construction/archetype.py @@ -38,7 +38,7 @@ class Archetype: def id(self): """ Get archetype id - :return: int + :return: str """ return self._id @@ -85,7 +85,7 @@ class Archetype: @property def average_storey_height(self): """ - Get archetype average storey height + Get archetype average storey height in m :return: float """ return self._average_storey_height @@ -93,23 +93,23 @@ class Archetype: @property def thermal_capacity(self): """ - Get archetype thermal capacity - :return: int + Get archetype thermal capacity in J/m3K + :return: float """ return self._thermal_capacity @property def extra_loses_due_to_thermal_bridges(self): """ - Get archetype extra loses due to thermal bridges - :return: int + Get archetype extra loses due to thermal bridges in W/m2K + :return: float """ return self._extra_loses_due_to_thermal_bridges @property def indirect_heated_ratio(self): """ - Get archetype indirect heat ratio + Get archetype indirect heated area ratio :return: float """ return self._indirect_heated_ratio @@ -117,7 +117,7 @@ class Archetype: @property def infiltration_rate_for_ventilation_system_off(self): """ - Get archetype infiltration rate for ventilation system off + Get archetype infiltration rate for ventilation system off in ACH :return: float """ return self._infiltration_rate_for_ventilation_system_off @@ -125,7 +125,7 @@ class Archetype: @property def infiltration_rate_for_ventilation_system_on(self): """ - Get archetype infiltration rate for ventilation system on + Get archetype infiltration rate for ventilation system on in ACH :return: float """ return self._infiltration_rate_for_ventilation_system_on diff --git a/hub/catalog_factories/data_models/construction/construction.py b/hub/catalog_factories/data_models/construction/construction.py index ec2bb0a4..472f629e 100644 --- a/hub/catalog_factories/data_models/construction/construction.py +++ b/hub/catalog_factories/data_models/construction/construction.py @@ -21,7 +21,7 @@ class Construction: def id(self): """ Get construction id - :return: int + :return: str """ return self._id diff --git a/hub/catalog_factories/data_models/construction/layer.py b/hub/catalog_factories/data_models/construction/layer.py index afcbfe14..e8452d79 100644 --- a/hub/catalog_factories/data_models/construction/layer.py +++ b/hub/catalog_factories/data_models/construction/layer.py @@ -17,7 +17,7 @@ class Layer: def id(self): """ Get layer id - :return: int + :return: str """ return self._id diff --git a/hub/catalog_factories/data_models/construction/material.py b/hub/catalog_factories/data_models/construction/material.py index d701a827..34674e0d 100644 --- a/hub/catalog_factories/data_models/construction/material.py +++ b/hub/catalog_factories/data_models/construction/material.py @@ -32,7 +32,7 @@ class Material: def id(self): """ Get material id - :return: int + :return: str """ return self._id diff --git a/hub/city_model_structure/building_demand/material.py b/hub/city_model_structure/building_demand/material.py index 6320c4ff..ebf97ced 100644 --- a/hub/city_model_structure/building_demand/material.py +++ b/hub/city_model_structure/building_demand/material.py @@ -28,7 +28,7 @@ class Material: def id(self): """ Get material id - :return: int + :return: str """ return self._id @@ -36,9 +36,9 @@ class Material: def id(self, value): """ Set material id - :param value: int + :param value: str """ - self._id = int(value) + self._id = value @property def name(self): diff --git a/hub/city_model_structure/building_demand/thermal_zone.py b/hub/city_model_structure/building_demand/thermal_zone.py index 19f305d5..db873ce4 100644 --- a/hub/city_model_structure/building_demand/thermal_zone.py +++ b/hub/city_model_structure/building_demand/thermal_zone.py @@ -120,7 +120,7 @@ class ThermalZone: @property def effective_thermal_capacity(self) -> Union[None, float]: """ - Get thermal zone effective thermal capacity in J/m2K + Get thermal zone effective thermal capacity in J/m3K :return: None or float """ return self._effective_thermal_capacity @@ -128,7 +128,7 @@ class ThermalZone: @effective_thermal_capacity.setter def effective_thermal_capacity(self, value): """ - Set thermal zone effective thermal capacity in J/m2K + Set thermal zone effective thermal capacity in J/m3K :param value: float """ if value is not None: diff --git a/hub/data/construction/nrcan_archetypes.json b/hub/data/construction/nrcan_archetypes.json index c64920cc..6b36328f 100644 --- a/hub/data/construction/nrcan_archetypes.json +++ b/hub/data/construction/nrcan_archetypes.json @@ -14,24 +14,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -62,24 +58,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -110,24 +102,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -158,24 +146,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -206,24 +190,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -254,24 +234,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -302,24 +278,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -350,24 +322,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -398,24 +366,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -446,24 +410,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -494,24 +454,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -542,24 +498,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -590,24 +542,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -638,24 +586,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -686,24 +630,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -734,24 +674,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -782,24 +718,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -830,24 +762,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -878,24 +806,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -926,24 +850,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -974,24 +894,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1022,24 +938,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1070,24 +982,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1118,24 +1026,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1166,24 +1070,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -1214,24 +1114,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -1262,24 +1158,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -1310,24 +1202,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -1358,24 +1246,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -1406,24 +1290,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -1454,24 +1334,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1502,24 +1378,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1550,24 +1422,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1598,24 +1466,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1646,24 +1510,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1694,24 +1554,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1742,24 +1598,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1790,24 +1642,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1838,24 +1686,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1886,24 +1730,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1934,24 +1774,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1982,24 +1818,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2030,24 +1862,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2078,24 +1906,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2126,24 +1950,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2174,24 +1994,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2222,24 +2038,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2270,24 +2082,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2318,24 +2126,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2366,24 +2170,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2414,24 +2214,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2462,24 +2258,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2510,24 +2302,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2558,24 +2346,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2606,24 +2390,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -2654,24 +2434,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -2702,24 +2478,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -2750,24 +2522,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -2798,24 +2566,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -2846,24 +2610,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -2894,24 +2654,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2942,24 +2698,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2990,24 +2742,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3038,24 +2786,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3086,24 +2830,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3134,24 +2874,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3182,24 +2918,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3230,24 +2962,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3278,24 +3006,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3326,24 +3050,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3374,24 +3094,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3422,24 +3138,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3470,24 +3182,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3518,24 +3226,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3566,24 +3270,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3614,24 +3314,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3662,24 +3358,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3710,24 +3402,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3758,24 +3446,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3806,24 +3490,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3854,24 +3534,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3902,24 +3578,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3950,24 +3622,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3998,24 +3666,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4046,24 +3710,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -4094,24 +3754,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -4142,24 +3798,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -4190,24 +3842,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -4238,24 +3886,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -4286,24 +3930,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -4334,24 +3974,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4382,24 +4018,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4430,24 +4062,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4478,24 +4106,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4526,24 +4150,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4574,24 +4194,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4622,24 +4238,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4670,24 +4282,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4718,24 +4326,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4766,24 +4370,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4814,24 +4414,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4862,24 +4458,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4910,24 +4502,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4958,24 +4546,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5006,24 +4590,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5054,24 +4634,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5102,24 +4678,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5150,24 +4722,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5198,24 +4766,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5246,24 +4810,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5294,24 +4854,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5342,24 +4898,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5390,24 +4942,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5438,24 +4986,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5486,24 +5030,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -5534,24 +5074,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -5582,24 +5118,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -5630,24 +5162,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -5678,24 +5206,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -5726,24 +5250,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -5774,24 +5294,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5822,24 +5338,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5870,24 +5382,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5918,24 +5426,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5966,24 +5470,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6014,24 +5514,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6062,24 +5558,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6110,24 +5602,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6158,24 +5646,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6206,24 +5690,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6254,24 +5734,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6302,24 +5778,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6350,24 +5822,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6398,24 +5866,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6446,24 +5910,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6494,24 +5954,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6542,24 +5998,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6590,24 +6042,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6638,24 +6086,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6686,24 +6130,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6734,24 +6174,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6782,24 +6218,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6830,24 +6262,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6878,24 +6306,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6926,24 +6350,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -6974,24 +6394,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -7022,24 +6438,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -7070,24 +6482,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -7118,24 +6526,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -7166,24 +6570,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -7214,24 +6614,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7262,24 +6658,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7310,24 +6702,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7358,24 +6746,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7406,24 +6790,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7454,24 +6834,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7502,24 +6878,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7550,24 +6922,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7598,24 +6966,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7646,24 +7010,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7694,24 +7054,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7742,24 +7098,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7790,24 +7142,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7838,24 +7186,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7886,24 +7230,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7934,24 +7274,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7982,24 +7318,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8030,24 +7362,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8078,24 +7406,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8126,24 +7450,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8174,24 +7494,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8222,24 +7538,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8270,24 +7582,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8318,24 +7626,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8366,24 +7670,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -8414,24 +7714,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -8462,24 +7758,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -8510,24 +7802,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -8558,24 +7846,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -8606,24 +7890,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -8654,24 +7934,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8702,24 +7978,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8750,24 +8022,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8798,24 +8066,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8846,24 +8110,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8894,24 +8154,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8942,24 +8198,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8990,24 +8242,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9038,24 +8286,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9086,24 +8330,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9134,24 +8374,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9182,24 +8418,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9230,24 +8462,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9278,24 +8506,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9326,24 +8550,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9374,24 +8594,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9422,24 +8638,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9470,24 +8682,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9518,24 +8726,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9566,24 +8770,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9614,24 +8814,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9662,24 +8858,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9710,24 +8902,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9758,24 +8946,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9806,24 +8990,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -9854,24 +9034,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -9902,24 +9078,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -9950,24 +9122,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -9998,24 +9166,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -10046,24 +9210,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -10094,24 +9254,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10142,24 +9298,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10190,24 +9342,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10238,24 +9386,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10286,24 +9430,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10334,24 +9474,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10382,24 +9518,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10430,24 +9562,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10478,24 +9606,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10526,24 +9650,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10574,24 +9694,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10622,24 +9738,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10670,24 +9782,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10718,24 +9826,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10766,24 +9870,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10814,24 +9914,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10862,24 +9958,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10910,24 +10002,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10958,24 +10046,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11006,24 +10090,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11054,24 +10134,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11102,24 +10178,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11150,24 +10222,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11198,24 +10266,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11246,24 +10310,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -11294,24 +10354,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -11342,24 +10398,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -11390,24 +10442,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -11438,24 +10486,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -11486,24 +10530,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -11534,24 +10574,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11582,24 +10618,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11630,24 +10662,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11678,24 +10706,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11726,24 +10750,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11774,24 +10794,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11822,24 +10838,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11870,24 +10882,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11918,24 +10926,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11966,24 +10970,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12014,24 +11014,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12062,24 +11058,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12110,24 +11102,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12158,24 +11146,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12206,24 +11190,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12254,24 +11234,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12302,24 +11278,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12350,24 +11322,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12398,24 +11366,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12446,24 +11410,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12494,24 +11454,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12542,24 +11498,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12590,24 +11542,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12638,24 +11586,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12686,24 +11630,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -12734,24 +11674,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -12782,24 +11718,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -12830,24 +11762,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -12878,24 +11806,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -12926,24 +11850,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -12974,24 +11894,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13022,24 +11938,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13070,24 +11982,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13118,24 +12026,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13166,24 +12070,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13214,24 +12114,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13262,24 +12158,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13310,24 +12202,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13358,24 +12246,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13406,24 +12290,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13454,24 +12334,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13502,24 +12378,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13550,24 +12422,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13598,24 +12466,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13646,24 +12510,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13694,24 +12554,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13742,24 +12598,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13790,24 +12642,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13838,24 +12686,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13886,24 +12730,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13934,24 +12774,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13982,24 +12818,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14030,24 +12862,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14078,24 +12906,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14126,24 +12950,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -14174,24 +12994,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -14222,24 +13038,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -14270,24 +13082,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -14318,24 +13126,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -14366,24 +13170,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -14414,24 +13214,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14462,24 +13258,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14510,24 +13302,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14558,24 +13346,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14606,24 +13390,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14654,24 +13434,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14702,24 +13478,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14750,24 +13522,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14798,24 +13566,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14846,24 +13610,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14894,24 +13654,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14942,24 +13698,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14990,24 +13742,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15038,24 +13786,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15086,24 +13830,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15134,24 +13874,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15182,24 +13918,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15230,24 +13962,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15278,24 +14006,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15326,24 +14050,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15374,24 +14094,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15422,24 +14138,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15470,24 +14182,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15518,24 +14226,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15566,24 +14270,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" } }, "OutdoorsFloor": { @@ -15614,24 +14314,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" } }, "OutdoorsFloor": { @@ -15662,24 +14358,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" } }, "OutdoorsFloor": { @@ -15710,24 +14402,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" } }, "OutdoorsFloor": { @@ -15758,24 +14446,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" } }, "OutdoorsFloor": { @@ -15806,24 +14490,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" } }, "OutdoorsFloor": { @@ -15854,24 +14534,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15902,24 +14578,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15950,24 +14622,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15998,24 +14666,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16046,24 +14710,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16094,24 +14754,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16142,24 +14798,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16190,24 +14842,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16238,24 +14886,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16286,24 +14930,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16334,24 +14974,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16382,24 +15018,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16430,24 +15062,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16478,24 +15106,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16526,24 +15150,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16574,24 +15194,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16622,24 +15238,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16670,24 +15282,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16718,24 +15326,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16766,24 +15370,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16814,24 +15414,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16862,24 +15458,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16910,24 +15502,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16958,24 +15546,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17006,24 +15590,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -17054,24 +15634,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -17102,24 +15678,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -17150,24 +15722,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -17198,24 +15766,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -17246,24 +15810,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -17294,24 +15854,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17342,24 +15898,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17390,24 +15942,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17438,24 +15986,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17486,24 +16030,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17534,24 +16074,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17582,24 +16118,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17630,24 +16162,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17678,24 +16206,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17726,24 +16250,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17774,24 +16294,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17822,24 +16338,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17870,24 +16382,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17918,24 +16426,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17966,24 +16470,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18014,24 +16514,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18062,24 +16558,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18110,24 +16602,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18158,24 +16646,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18206,24 +16690,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18254,24 +16734,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18302,24 +16778,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18350,24 +16822,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18398,24 +16866,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18446,24 +16910,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" } }, "OutdoorsFloor": { @@ -18494,24 +16954,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" } }, "OutdoorsFloor": { @@ -18542,24 +16998,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" } }, "OutdoorsFloor": { @@ -18590,24 +17042,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" } }, "OutdoorsFloor": { @@ -18638,24 +17086,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" } }, "OutdoorsFloor": { @@ -18686,24 +17130,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" } }, "OutdoorsFloor": { @@ -18734,24 +17174,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18782,24 +17218,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18830,24 +17262,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18878,24 +17306,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18926,24 +17350,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18974,24 +17394,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19022,24 +17438,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19070,24 +17482,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19118,24 +17526,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19166,24 +17570,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19214,24 +17614,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19262,24 +17658,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19310,24 +17702,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19358,24 +17746,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19406,24 +17790,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19454,24 +17834,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19502,24 +17878,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19550,24 +17922,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19598,24 +17966,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19646,24 +18010,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19694,24 +18054,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19742,24 +18098,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19790,24 +18142,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19838,24 +18186,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19886,24 +18230,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -19934,24 +18274,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -19982,24 +18318,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -20030,24 +18362,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -20078,24 +18406,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -20126,24 +18450,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -20174,24 +18494,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20222,24 +18538,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20270,24 +18582,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20318,24 +18626,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20366,24 +18670,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20414,24 +18714,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20462,24 +18758,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20510,24 +18802,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20558,24 +18846,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20606,24 +18890,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20654,24 +18934,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20702,24 +18978,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20750,24 +19022,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20798,24 +19066,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20846,24 +19110,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20894,24 +19154,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20942,24 +19198,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20990,24 +19242,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21038,24 +19286,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21086,24 +19330,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21134,24 +19374,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21182,24 +19418,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21230,24 +19462,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21278,24 +19506,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21326,24 +19550,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -21374,24 +19594,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -21422,24 +19638,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -21470,24 +19682,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -21518,24 +19726,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -21566,24 +19770,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -21614,24 +19814,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21662,24 +19858,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21710,24 +19902,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21758,24 +19946,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21806,24 +19990,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21854,24 +20034,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21902,24 +20078,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21950,24 +20122,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21998,24 +20166,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22046,24 +20210,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22094,24 +20254,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22142,24 +20298,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22190,24 +20342,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22238,24 +20386,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22286,24 +20430,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22334,24 +20474,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22382,24 +20518,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22430,24 +20562,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22478,24 +20606,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22526,24 +20650,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22574,24 +20694,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22622,24 +20738,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22670,24 +20782,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22718,24 +20826,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22766,24 +20870,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" } }, "OutdoorsFloor": { @@ -22814,24 +20914,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" } }, "OutdoorsFloor": { @@ -22862,24 +20958,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" } }, "OutdoorsFloor": { @@ -22910,24 +21002,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" } }, "OutdoorsFloor": { @@ -22958,24 +21046,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" } }, "OutdoorsFloor": { @@ -23006,24 +21090,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" } }, "OutdoorsFloor": { diff --git a/hub/data/construction/nrcan_constructions.json b/hub/data/construction/nrcan_constructions.json index 282ec4fe..e3f3b65a 100644 --- a/hub/data/construction/nrcan_constructions.json +++ b/hub/data/construction/nrcan_constructions.json @@ -1,4 +1,2598 @@ { + "opaque_surfaces": [ + { + "1000_1979_4": { + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.994, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_0": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_4": { + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.363, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_1": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_4": { + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_2": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_4": { + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_3": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_4": { + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_4": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_4": { + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_5": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_5": { + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.9, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_6": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_5": { + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.296, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_7": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_5": { + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_8": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_5": { + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_9": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_5": { + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_10": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_5": { + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_11": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_6": { + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.823, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_12": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_6": { + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.267, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_13": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_6": { + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_14": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_6": { + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_15": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_6": { + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_16": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_6": { + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_17": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_7A": { + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.772, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_18": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_7A": { + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_19": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_7A": { + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_20": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_7A": { + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_21": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_7A": { + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_22": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_7A": { + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_23": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_7B": { + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.772, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_24": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_7B": { + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_25": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_7B": { + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_26": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_7B": { + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_27": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_7B": { + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_28": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_7B": { + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_29": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_8": { + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.71, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_30": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_8": { + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.176, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_31": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_8": { + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_32": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_8": { + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_33": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_8": { + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_34": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_8": { + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_35": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_4": { + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.568, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_36": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_4": { + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.363, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_37": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_4": { + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_38": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_4": { + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.606, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_39": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_4": { + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_40": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_4": { + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_41": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_5": { + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.682, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_42": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_5": { + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.296, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_43": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_5": { + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_44": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_5": { + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.547, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_45": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_5": { + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_46": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_5": { + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_47": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_6": { + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.426, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_48": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_6": { + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.267, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_49": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_6": { + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_50": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_6": { + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.459, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_51": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_6": { + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_52": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_6": { + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_53": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_7A": { + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.346, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_54": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_7A": { + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_55": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_7A": { + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_56": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_7A": { + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.425, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_57": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_7A": { + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_58": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_7A": { + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_59": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_7B": { + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.346, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_60": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_7B": { + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_61": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_7B": { + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_62": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_7B": { + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.425, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_63": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_7B": { + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_64": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_7B": { + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_65": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_8": { + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.267, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_66": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_8": { + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.176, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_67": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_8": { + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_68": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_8": { + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.347, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_69": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_8": { + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_70": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_8": { + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_71": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_4": { + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.315, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_72": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_4": { + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_73": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_4": { + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 0.227, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_74": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_4": { + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.568, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_75": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_4": { + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.568, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_76": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_4": { + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_77": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_5": { + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.278, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_78": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_5": { + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.183, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_79": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_5": { + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 0.183, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_80": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_5": { + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.379, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_81": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_5": { + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.379, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_82": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_5": { + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_83": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_6": { + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.247, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_84": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_6": { + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.183, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_85": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_6": { + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 0.183, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_86": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_6": { + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_87": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_6": { + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_88": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_6": { + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_89": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_7A": { + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_90": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_7A": { + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.162, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_91": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_7A": { + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 0.162, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_92": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_7A": { + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_93": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_7A": { + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_94": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_7A": { + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_95": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_7B": { + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_96": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_7B": { + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.162, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_97": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_7B": { + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 0.162, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_98": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_7B": { + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_99": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_7B": { + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_100": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_7B": { + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_101": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_8": { + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.183, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_102": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_8": { + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.142, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_103": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_8": { + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 0.142, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_104": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_8": { + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_105": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_8": { + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.21, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_106": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_8": { + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.379, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_107": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_4": { + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.315, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_108": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_4": { + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.193, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_109": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_4": { + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 0.227, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_110": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_4": { + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.568, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_111": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_4": { + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.568, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_112": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_4": { + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_113": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_5": { + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.278, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_114": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_5": { + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.156, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_115": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_5": { + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 0.183, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_116": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_5": { + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.379, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_117": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_5": { + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.379, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_118": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_5": { + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_119": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_6": { + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.247, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_120": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_6": { + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.156, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_121": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_6": { + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 0.183, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_122": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_6": { + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_123": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_6": { + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_124": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_6": { + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_125": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_7A": { + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_126": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_7A": { + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.138, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_127": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_7A": { + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 0.162, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_128": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_7A": { + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_129": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_7A": { + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_130": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_7A": { + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_131": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_7B": { + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_132": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_7B": { + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.138, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_133": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_7B": { + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 0.162, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_134": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_7B": { + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_135": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_7B": { + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_136": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_7B": { + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_137": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_8": { + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.183, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_138": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_8": { + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.121, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_139": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_8": { + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 0.142, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_140": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_8": { + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_141": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_8": { + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.21, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_142": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_8": { + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.379, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_143": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_4": { + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.29, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_144": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_4": { + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.164, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_145": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_4": { + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 0.193, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_146": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_4": { + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.568, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_147": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_4": { + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.568, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_148": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_4": { + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_149": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_5": { + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.265, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_150": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_5": { + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.156, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_151": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_5": { + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 0.175, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_152": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_5": { + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.379, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_153": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_5": { + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.379, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_154": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_5": { + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_155": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_6": { + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.24, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_156": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_6": { + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.138, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_157": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_6": { + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 0.156, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_158": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_6": { + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_159": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_6": { + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_160": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_6": { + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_161": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_7A": { + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.215, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_162": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_7A": { + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.121, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_163": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_7A": { + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 0.138, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_164": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_7A": { + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_165": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_7A": { + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_166": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_7A": { + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_167": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_7B": { + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.19, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_168": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_7B": { + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.117, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_169": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_7B": { + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 0.121, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_170": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_7B": { + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_171": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_7B": { + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_172": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_7B": { + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_173": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_8": { + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.165, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_174": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_8": { + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.11, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_175": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_8": { + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 0.117, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_176": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_8": { + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_177": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_8": { + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.21, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_178": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_8": { + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.379, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_179": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + } + ], "transparent_surfaces": [ { "Window_1000_1979_4": { @@ -361,2600 +2955,6 @@ } } ], - "opaque_surfaces": [ - { - "1000_1979_4": { - "period_of_construction": "1000_1979", - "climate_zone": "4", - "type": "OutdoorsWall", - "u_value": 0.994, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_0": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_4": { - "period_of_construction": "1000_1979", - "climate_zone": "4", - "type": "OutdoorsRoofCeiling", - "u_value": 0.363, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_1": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_4": { - "period_of_construction": "1000_1979", - "climate_zone": "4", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_2": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_4": { - "period_of_construction": "1000_1979", - "climate_zone": "4", - "type": "GroundWall", - "u_value": 0.678, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_3": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_4": { - "period_of_construction": "1000_1979", - "climate_zone": "4", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_4": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_4": { - "period_of_construction": "1000_1979", - "climate_zone": "4", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_5": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_5": { - "period_of_construction": "1000_1979", - "climate_zone": "5", - "type": "OutdoorsWall", - "u_value": 0.9, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_6": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_5": { - "period_of_construction": "1000_1979", - "climate_zone": "5", - "type": "OutdoorsRoofCeiling", - "u_value": 0.296, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_7": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_5": { - "period_of_construction": "1000_1979", - "climate_zone": "5", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_8": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_5": { - "period_of_construction": "1000_1979", - "climate_zone": "5", - "type": "GroundWall", - "u_value": 0.678, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_9": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_5": { - "period_of_construction": "1000_1979", - "climate_zone": "5", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_10": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_5": { - "period_of_construction": "1000_1979", - "climate_zone": "5", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_11": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_6": { - "period_of_construction": "1000_1979", - "climate_zone": "6", - "type": "OutdoorsWall", - "u_value": 0.823, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_12": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_6": { - "period_of_construction": "1000_1979", - "climate_zone": "6", - "type": "OutdoorsRoofCeiling", - "u_value": 0.267, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_13": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_6": { - "period_of_construction": "1000_1979", - "climate_zone": "6", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_14": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_6": { - "period_of_construction": "1000_1979", - "climate_zone": "6", - "type": "GroundWall", - "u_value": 0.678, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_15": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_6": { - "period_of_construction": "1000_1979", - "climate_zone": "6", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_16": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_6": { - "period_of_construction": "1000_1979", - "climate_zone": "6", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_17": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_7A": { - "period_of_construction": "1000_1979", - "climate_zone": "7A", - "type": "OutdoorsWall", - "u_value": 0.772, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_18": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_7A": { - "period_of_construction": "1000_1979", - "climate_zone": "7A", - "type": "OutdoorsRoofCeiling", - "u_value": 0.227, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_19": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_7A": { - "period_of_construction": "1000_1979", - "climate_zone": "7A", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_20": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_7A": { - "period_of_construction": "1000_1979", - "climate_zone": "7A", - "type": "GroundWall", - "u_value": 0.678, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_21": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_7A": { - "period_of_construction": "1000_1979", - "climate_zone": "7A", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_22": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_7A": { - "period_of_construction": "1000_1979", - "climate_zone": "7A", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_23": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_7B": { - "period_of_construction": "1000_1979", - "climate_zone": "7B", - "type": "OutdoorsWall", - "u_value": 0.772, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_24": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_7B": { - "period_of_construction": "1000_1979", - "climate_zone": "7B", - "type": "OutdoorsRoofCeiling", - "u_value": 0.227, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_25": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_7B": { - "period_of_construction": "1000_1979", - "climate_zone": "7B", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_26": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_7B": { - "period_of_construction": "1000_1979", - "climate_zone": "7B", - "type": "GroundWall", - "u_value": 0.678, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_27": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_7B": { - "period_of_construction": "1000_1979", - "climate_zone": "7B", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_28": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_7B": { - "period_of_construction": "1000_1979", - "climate_zone": "7B", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_29": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_8": { - "period_of_construction": "1000_1979", - "climate_zone": "8", - "type": "OutdoorsWall", - "u_value": 0.71, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_30": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_8": { - "period_of_construction": "1000_1979", - "climate_zone": "8", - "type": "OutdoorsRoofCeiling", - "u_value": 0.176, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_31": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_8": { - "period_of_construction": "1000_1979", - "climate_zone": "8", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_32": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_8": { - "period_of_construction": "1000_1979", - "climate_zone": "8", - "type": "GroundWall", - "u_value": 0.678, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_33": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_8": { - "period_of_construction": "1000_1979", - "climate_zone": "8", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_34": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_8": { - "period_of_construction": "1000_1979", - "climate_zone": "8", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_35": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_4": { - "period_of_construction": "1980_2010", - "climate_zone": "4", - "type": "OutdoorsWall", - "u_value": 0.568, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_36": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_4": { - "period_of_construction": "1980_2010", - "climate_zone": "4", - "type": "OutdoorsRoofCeiling", - "u_value": 0.363, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_37": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_4": { - "period_of_construction": "1980_2010", - "climate_zone": "4", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_38": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_4": { - "period_of_construction": "1980_2010", - "climate_zone": "4", - "type": "GroundWall", - "u_value": 0.606, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_39": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_4": { - "period_of_construction": "1980_2010", - "climate_zone": "4", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_40": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_4": { - "period_of_construction": "1980_2010", - "climate_zone": "4", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_41": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_5": { - "period_of_construction": "1980_2010", - "climate_zone": "5", - "type": "OutdoorsWall", - "u_value": 0.682, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_42": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_5": { - "period_of_construction": "1980_2010", - "climate_zone": "5", - "type": "OutdoorsRoofCeiling", - "u_value": 0.296, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_43": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_5": { - "period_of_construction": "1980_2010", - "climate_zone": "5", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_44": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_5": { - "period_of_construction": "1980_2010", - "climate_zone": "5", - "type": "GroundWall", - "u_value": 0.547, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_45": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_5": { - "period_of_construction": "1980_2010", - "climate_zone": "5", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_46": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_5": { - "period_of_construction": "1980_2010", - "climate_zone": "5", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_47": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_6": { - "period_of_construction": "1980_2010", - "climate_zone": "6", - "type": "OutdoorsWall", - "u_value": 0.426, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_48": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_6": { - "period_of_construction": "1980_2010", - "climate_zone": "6", - "type": "OutdoorsRoofCeiling", - "u_value": 0.267, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_49": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_6": { - "period_of_construction": "1980_2010", - "climate_zone": "6", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_50": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_6": { - "period_of_construction": "1980_2010", - "climate_zone": "6", - "type": "GroundWall", - "u_value": 0.459, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_51": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_6": { - "period_of_construction": "1980_2010", - "climate_zone": "6", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_52": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_6": { - "period_of_construction": "1980_2010", - "climate_zone": "6", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_53": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_7A": { - "period_of_construction": "1980_2010", - "climate_zone": "7A", - "type": "OutdoorsWall", - "u_value": 0.346, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_54": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7A": { - "period_of_construction": "1980_2010", - "climate_zone": "7A", - "type": "OutdoorsRoofCeiling", - "u_value": 0.227, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_55": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7A": { - "period_of_construction": "1980_2010", - "climate_zone": "7A", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_56": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_7A": { - "period_of_construction": "1980_2010", - "climate_zone": "7A", - "type": "GroundWall", - "u_value": 0.425, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_57": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7A": { - "period_of_construction": "1980_2010", - "climate_zone": "7A", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_58": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7A": { - "period_of_construction": "1980_2010", - "climate_zone": "7A", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_59": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_7B": { - "period_of_construction": "1980_2010", - "climate_zone": "7B", - "type": "OutdoorsWall", - "u_value": 0.346, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_60": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7B": { - "period_of_construction": "1980_2010", - "climate_zone": "7B", - "type": "OutdoorsRoofCeiling", - "u_value": 0.227, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_61": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7B": { - "period_of_construction": "1980_2010", - "climate_zone": "7B", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_62": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_7B": { - "period_of_construction": "1980_2010", - "climate_zone": "7B", - "type": "GroundWall", - "u_value": 0.425, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_63": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7B": { - "period_of_construction": "1980_2010", - "climate_zone": "7B", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_64": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7B": { - "period_of_construction": "1980_2010", - "climate_zone": "7B", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_65": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_8": { - "period_of_construction": "1980_2010", - "climate_zone": "8", - "type": "OutdoorsWall", - "u_value": 0.267, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_66": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_8": { - "period_of_construction": "1980_2010", - "climate_zone": "8", - "type": "OutdoorsRoofCeiling", - "u_value": 0.176, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_67": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_8": { - "period_of_construction": "1980_2010", - "climate_zone": "8", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_68": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_8": { - "period_of_construction": "1980_2010", - "climate_zone": "8", - "type": "GroundWall", - "u_value": 0.347, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_69": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_8": { - "period_of_construction": "1980_2010", - "climate_zone": "8", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_70": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_8": { - "period_of_construction": "1980_2010", - "climate_zone": "8", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_71": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_4": { - "period_of_construction": "2011_2016", - "climate_zone": "4", - "type": "OutdoorsWall", - "u_value": 0.315, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_72": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_4": { - "period_of_construction": "2011_2016", - "climate_zone": "4", - "type": "OutdoorsRoofCeiling", - "u_value": 0.227, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_73": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_4": { - "period_of_construction": "2011_2016", - "climate_zone": "4", - "type": "OutdoorsFloor", - "u_value": 0.227, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_74": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_4": { - "period_of_construction": "2011_2016", - "climate_zone": "4", - "type": "GroundWall", - "u_value": 0.568, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_75": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_4": { - "period_of_construction": "2011_2016", - "climate_zone": "4", - "type": "GroundRoofCeiling", - "u_value": 0.568, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_76": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_4": { - "period_of_construction": "2011_2016", - "climate_zone": "4", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_77": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_5": { - "period_of_construction": "2011_2016", - "climate_zone": "5", - "type": "OutdoorsWall", - "u_value": 0.278, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_78": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_5": { - "period_of_construction": "2011_2016", - "climate_zone": "5", - "type": "OutdoorsRoofCeiling", - "u_value": 0.183, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_79": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_5": { - "period_of_construction": "2011_2016", - "climate_zone": "5", - "type": "OutdoorsFloor", - "u_value": 0.183, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_80": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_5": { - "period_of_construction": "2011_2016", - "climate_zone": "5", - "type": "GroundWall", - "u_value": 0.379, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_81": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_5": { - "period_of_construction": "2011_2016", - "climate_zone": "5", - "type": "GroundRoofCeiling", - "u_value": 0.379, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_82": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_5": { - "period_of_construction": "2011_2016", - "climate_zone": "5", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_83": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_6": { - "period_of_construction": "2011_2016", - "climate_zone": "6", - "type": "OutdoorsWall", - "u_value": 0.247, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_84": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_6": { - "period_of_construction": "2011_2016", - "climate_zone": "6", - "type": "OutdoorsRoofCeiling", - "u_value": 0.183, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_85": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_6": { - "period_of_construction": "2011_2016", - "climate_zone": "6", - "type": "OutdoorsFloor", - "u_value": 0.183, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_86": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_6": { - "period_of_construction": "2011_2016", - "climate_zone": "6", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_87": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_6": { - "period_of_construction": "2011_2016", - "climate_zone": "6", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_88": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_6": { - "period_of_construction": "2011_2016", - "climate_zone": "6", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_89": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_7A": { - "period_of_construction": "2011_2016", - "climate_zone": "7A", - "type": "OutdoorsWall", - "u_value": 0.21, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_90": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7A": { - "period_of_construction": "2011_2016", - "climate_zone": "7A", - "type": "OutdoorsRoofCeiling", - "u_value": 0.162, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_91": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7A": { - "period_of_construction": "2011_2016", - "climate_zone": "7A", - "type": "OutdoorsFloor", - "u_value": 0.162, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_92": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_7A": { - "period_of_construction": "2011_2016", - "climate_zone": "7A", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_93": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7A": { - "period_of_construction": "2011_2016", - "climate_zone": "7A", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_94": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7A": { - "period_of_construction": "2011_2016", - "climate_zone": "7A", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_95": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_7B": { - "period_of_construction": "2011_2016", - "climate_zone": "7B", - "type": "OutdoorsWall", - "u_value": 0.21, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_96": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7B": { - "period_of_construction": "2011_2016", - "climate_zone": "7B", - "type": "OutdoorsRoofCeiling", - "u_value": 0.162, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_97": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7B": { - "period_of_construction": "2011_2016", - "climate_zone": "7B", - "type": "OutdoorsFloor", - "u_value": 0.162, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_98": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_7B": { - "period_of_construction": "2011_2016", - "climate_zone": "7B", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_99": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7B": { - "period_of_construction": "2011_2016", - "climate_zone": "7B", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_100": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7B": { - "period_of_construction": "2011_2016", - "climate_zone": "7B", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_101": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_8": { - "period_of_construction": "2011_2016", - "climate_zone": "8", - "type": "OutdoorsWall", - "u_value": 0.183, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_102": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_8": { - "period_of_construction": "2011_2016", - "climate_zone": "8", - "type": "OutdoorsRoofCeiling", - "u_value": 0.142, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_103": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_8": { - "period_of_construction": "2011_2016", - "climate_zone": "8", - "type": "OutdoorsFloor", - "u_value": 0.142, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_104": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_8": { - "period_of_construction": "2011_2016", - "climate_zone": "8", - "type": "GroundWall", - "u_value": 0.21, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_105": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_8": { - "period_of_construction": "2011_2016", - "climate_zone": "8", - "type": "GroundRoofCeiling", - "u_value": 0.21, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_106": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_8": { - "period_of_construction": "2011_2016", - "climate_zone": "8", - "type": "GroundFloor", - "u_value": 0.379, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_107": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_4": { - "period_of_construction": "2017_2019", - "climate_zone": "4", - "type": "OutdoorsWall", - "u_value": 0.315, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_108": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_4": { - "period_of_construction": "2017_2019", - "climate_zone": "4", - "type": "OutdoorsRoofCeiling", - "u_value": 0.193, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_109": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_4": { - "period_of_construction": "2017_2019", - "climate_zone": "4", - "type": "OutdoorsFloor", - "u_value": 0.227, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_110": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_4": { - "period_of_construction": "2017_2019", - "climate_zone": "4", - "type": "GroundWall", - "u_value": 0.568, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_111": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_4": { - "period_of_construction": "2017_2019", - "climate_zone": "4", - "type": "GroundRoofCeiling", - "u_value": 0.568, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_112": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_4": { - "period_of_construction": "2017_2019", - "climate_zone": "4", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_113": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_5": { - "period_of_construction": "2017_2019", - "climate_zone": "5", - "type": "OutdoorsWall", - "u_value": 0.278, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_114": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_5": { - "period_of_construction": "2017_2019", - "climate_zone": "5", - "type": "OutdoorsRoofCeiling", - "u_value": 0.156, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_115": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_5": { - "period_of_construction": "2017_2019", - "climate_zone": "5", - "type": "OutdoorsFloor", - "u_value": 0.183, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_116": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_5": { - "period_of_construction": "2017_2019", - "climate_zone": "5", - "type": "GroundWall", - "u_value": 0.379, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_117": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_5": { - "period_of_construction": "2017_2019", - "climate_zone": "5", - "type": "GroundRoofCeiling", - "u_value": 0.379, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_118": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_5": { - "period_of_construction": "2017_2019", - "climate_zone": "5", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_119": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_6": { - "period_of_construction": "2017_2019", - "climate_zone": "6", - "type": "OutdoorsWall", - "u_value": 0.247, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_120": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_6": { - "period_of_construction": "2017_2019", - "climate_zone": "6", - "type": "OutdoorsRoofCeiling", - "u_value": 0.156, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_121": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_6": { - "period_of_construction": "2017_2019", - "climate_zone": "6", - "type": "OutdoorsFloor", - "u_value": 0.183, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_122": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_6": { - "period_of_construction": "2017_2019", - "climate_zone": "6", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_123": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_6": { - "period_of_construction": "2017_2019", - "climate_zone": "6", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_124": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_6": { - "period_of_construction": "2017_2019", - "climate_zone": "6", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_125": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_7A": { - "period_of_construction": "2017_2019", - "climate_zone": "7A", - "type": "OutdoorsWall", - "u_value": 0.21, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_126": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7A": { - "period_of_construction": "2017_2019", - "climate_zone": "7A", - "type": "OutdoorsRoofCeiling", - "u_value": 0.138, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_127": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7A": { - "period_of_construction": "2017_2019", - "climate_zone": "7A", - "type": "OutdoorsFloor", - "u_value": 0.162, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_128": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_7A": { - "period_of_construction": "2017_2019", - "climate_zone": "7A", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_129": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7A": { - "period_of_construction": "2017_2019", - "climate_zone": "7A", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_130": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7A": { - "period_of_construction": "2017_2019", - "climate_zone": "7A", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_131": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_7B": { - "period_of_construction": "2017_2019", - "climate_zone": "7B", - "type": "OutdoorsWall", - "u_value": 0.21, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_132": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7B": { - "period_of_construction": "2017_2019", - "climate_zone": "7B", - "type": "OutdoorsRoofCeiling", - "u_value": 0.138, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_133": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7B": { - "period_of_construction": "2017_2019", - "climate_zone": "7B", - "type": "OutdoorsFloor", - "u_value": 0.162, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_134": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_7B": { - "period_of_construction": "2017_2019", - "climate_zone": "7B", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_135": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7B": { - "period_of_construction": "2017_2019", - "climate_zone": "7B", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_136": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7B": { - "period_of_construction": "2017_2019", - "climate_zone": "7B", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_137": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_8": { - "period_of_construction": "2017_2019", - "climate_zone": "8", - "type": "OutdoorsWall", - "u_value": 0.183, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_138": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_8": { - "period_of_construction": "2017_2019", - "climate_zone": "8", - "type": "OutdoorsRoofCeiling", - "u_value": 0.121, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_139": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_8": { - "period_of_construction": "2017_2019", - "climate_zone": "8", - "type": "OutdoorsFloor", - "u_value": 0.142, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_140": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_8": { - "period_of_construction": "2017_2019", - "climate_zone": "8", - "type": "GroundWall", - "u_value": 0.21, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_141": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_8": { - "period_of_construction": "2017_2019", - "climate_zone": "8", - "type": "GroundRoofCeiling", - "u_value": 0.21, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_142": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_8": { - "period_of_construction": "2017_2019", - "climate_zone": "8", - "type": "GroundFloor", - "u_value": 0.379, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_143": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_4": { - "period_of_construction": "2020_3000", - "climate_zone": "4", - "type": "OutdoorsWall", - "u_value": 0.29, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_144": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_4": { - "period_of_construction": "2020_3000", - "climate_zone": "4", - "type": "OutdoorsRoofCeiling", - "u_value": 0.164, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_145": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_4": { - "period_of_construction": "2020_3000", - "climate_zone": "4", - "type": "OutdoorsFloor", - "u_value": 0.193, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_146": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_4": { - "period_of_construction": "2020_3000", - "climate_zone": "4", - "type": "GroundWall", - "u_value": 0.568, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_147": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_4": { - "period_of_construction": "2020_3000", - "climate_zone": "4", - "type": "GroundRoofCeiling", - "u_value": 0.568, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_148": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_4": { - "period_of_construction": "2020_3000", - "climate_zone": "4", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_149": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_5": { - "period_of_construction": "2020_3000", - "climate_zone": "5", - "type": "OutdoorsWall", - "u_value": 0.265, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_150": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_5": { - "period_of_construction": "2020_3000", - "climate_zone": "5", - "type": "OutdoorsRoofCeiling", - "u_value": 0.156, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_151": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_5": { - "period_of_construction": "2020_3000", - "climate_zone": "5", - "type": "OutdoorsFloor", - "u_value": 0.175, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_152": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_5": { - "period_of_construction": "2020_3000", - "climate_zone": "5", - "type": "GroundWall", - "u_value": 0.379, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_153": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_5": { - "period_of_construction": "2020_3000", - "climate_zone": "5", - "type": "GroundRoofCeiling", - "u_value": 0.379, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_154": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_5": { - "period_of_construction": "2020_3000", - "climate_zone": "5", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_155": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_6": { - "period_of_construction": "2020_3000", - "climate_zone": "6", - "type": "OutdoorsWall", - "u_value": 0.24, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_156": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_6": { - "period_of_construction": "2020_3000", - "climate_zone": "6", - "type": "OutdoorsRoofCeiling", - "u_value": 0.138, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_157": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_6": { - "period_of_construction": "2020_3000", - "climate_zone": "6", - "type": "OutdoorsFloor", - "u_value": 0.156, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_158": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_6": { - "period_of_construction": "2020_3000", - "climate_zone": "6", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_159": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_6": { - "period_of_construction": "2020_3000", - "climate_zone": "6", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_160": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_6": { - "period_of_construction": "2020_3000", - "climate_zone": "6", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_161": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_7A": { - "period_of_construction": "2020_3000", - "climate_zone": "7A", - "type": "OutdoorsWall", - "u_value": 0.215, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_162": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7A": { - "period_of_construction": "2020_3000", - "climate_zone": "7A", - "type": "OutdoorsRoofCeiling", - "u_value": 0.121, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_163": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7A": { - "period_of_construction": "2020_3000", - "climate_zone": "7A", - "type": "OutdoorsFloor", - "u_value": 0.138, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_164": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_7A": { - "period_of_construction": "2020_3000", - "climate_zone": "7A", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_165": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7A": { - "period_of_construction": "2020_3000", - "climate_zone": "7A", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_166": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7A": { - "period_of_construction": "2020_3000", - "climate_zone": "7A", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_167": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_7B": { - "period_of_construction": "2020_3000", - "climate_zone": "7B", - "type": "OutdoorsWall", - "u_value": 0.19, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_168": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7B": { - "period_of_construction": "2020_3000", - "climate_zone": "7B", - "type": "OutdoorsRoofCeiling", - "u_value": 0.117, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_169": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7B": { - "period_of_construction": "2020_3000", - "climate_zone": "7B", - "type": "OutdoorsFloor", - "u_value": 0.121, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_170": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_7B": { - "period_of_construction": "2020_3000", - "climate_zone": "7B", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_171": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7B": { - "period_of_construction": "2020_3000", - "climate_zone": "7B", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_172": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7B": { - "period_of_construction": "2020_3000", - "climate_zone": "7B", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_173": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_8": { - "period_of_construction": "2020_3000", - "climate_zone": "8", - "type": "OutdoorsWall", - "u_value": 0.165, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_174": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_8": { - "period_of_construction": "2020_3000", - "climate_zone": "8", - "type": "OutdoorsRoofCeiling", - "u_value": 0.11, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_175": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_8": { - "period_of_construction": "2020_3000", - "climate_zone": "8", - "type": "OutdoorsFloor", - "u_value": 0.117, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_176": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_8": { - "period_of_construction": "2020_3000", - "climate_zone": "8", - "type": "GroundWall", - "u_value": 0.21, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_177": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_8": { - "period_of_construction": "2020_3000", - "climate_zone": "8", - "type": "GroundRoofCeiling", - "u_value": 0.21, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_178": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_8": { - "period_of_construction": "2020_3000", - "climate_zone": "8", - "type": "GroundFloor", - "u_value": 0.379, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_179": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - } - ], "materials": [ { "Urea Formaldehyde Foam": { @@ -3091,7 +3091,7 @@ { "virtual_no_mass_0": { "no_mass": true, - "thermal_resistance": 0.6584101668836548 + "thermal_resistance": -1.6768839507634041 } }, { @@ -3109,7 +3109,7 @@ { "virtual_no_mass_3": { "no_mass": true, - "thermal_resistance": 1.1273002032671475 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3127,7 +3127,7 @@ { "virtual_no_mass_6": { "no_mass": true, - "thermal_resistance": 0.7634850606909431 + "thermal_resistance": -1.5718090569561158 } }, { @@ -3145,7 +3145,7 @@ { "virtual_no_mass_9": { "no_mass": true, - "thermal_resistance": 1.1273002032671475 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3163,7 +3163,7 @@ { "virtual_no_mass_12": { "no_mass": true, - "thermal_resistance": 0.8674407782554092 + "thermal_resistance": -1.4678533393916497 } }, { @@ -3181,7 +3181,7 @@ { "virtual_no_mass_15": { "no_mass": true, - "thermal_resistance": 1.1273002032671475 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3199,7 +3199,7 @@ { "virtual_no_mass_18": { "no_mass": true, - "thermal_resistance": 0.9477107371445987 + "thermal_resistance": -1.3875833805024602 } }, { @@ -3217,7 +3217,7 @@ { "virtual_no_mass_21": { "no_mass": true, - "thermal_resistance": 1.1273002032671475 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3235,7 +3235,7 @@ { "virtual_no_mass_24": { "no_mass": true, - "thermal_resistance": 0.9477107371445987 + "thermal_resistance": -1.3875833805024602 } }, { @@ -3253,7 +3253,7 @@ { "virtual_no_mass_27": { "no_mass": true, - "thermal_resistance": 1.1273002032671475 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3271,7 +3271,7 @@ { "virtual_no_mass_30": { "no_mass": true, - "thermal_resistance": 1.0608246538051842 + "thermal_resistance": -1.2744694638418748 } }, { @@ -3289,7 +3289,7 @@ { "virtual_no_mass_33": { "no_mass": true, - "thermal_resistance": 1.1273002032671475 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3307,7 +3307,7 @@ { "virtual_no_mass_36": { "no_mass": true, - "thermal_resistance": 1.7398737251092764 + "thermal_resistance": -0.8720380395966056 } }, { @@ -3325,7 +3325,7 @@ { "virtual_no_mass_39": { "no_mass": true, - "thermal_resistance": 1.6294753613292363 + "thermal_resistance": -0.9824364033766457 } }, { @@ -3343,7 +3343,7 @@ { "virtual_no_mass_42": { "no_mass": true, - "thermal_resistance": 1.445586004651633 + "thermal_resistance": -1.1663257600542491 } }, { @@ -3361,7 +3361,7 @@ { "virtual_no_mass_45": { "no_mass": true, - "thermal_resistance": 1.8074639097270375 + "thermal_resistance": -0.8044478549788445 } }, { @@ -3379,7 +3379,7 @@ { "virtual_no_mass_48": { "no_mass": true, - "thermal_resistance": 2.3267281852031734 + "thermal_resistance": -0.2851835795027089 } }, { @@ -3397,7 +3397,7 @@ { "virtual_no_mass_51": { "no_mass": true, - "thermal_resistance": 2.1579595823003532 + "thermal_resistance": -0.45395218240552904 } }, { @@ -3415,7 +3415,7 @@ { "virtual_no_mass_54": { "no_mass": true, - "thermal_resistance": 2.8694837552322108 + "thermal_resistance": 0.2575719905263285 } }, { @@ -3433,7 +3433,7 @@ { "virtual_no_mass_57": { "no_mass": true, - "thermal_resistance": 2.3322515212981747 + "thermal_resistance": -0.27966024340770756 } }, { @@ -3451,7 +3451,7 @@ { "virtual_no_mass_60": { "no_mass": true, - "thermal_resistance": 2.8694837552322108 + "thermal_resistance": 0.2575719905263285 } }, { @@ -3469,7 +3469,7 @@ { "virtual_no_mass_63": { "no_mass": true, - "thermal_resistance": 2.3322515212981747 + "thermal_resistance": -0.27966024340770756 } }, { @@ -3487,7 +3487,7 @@ { "virtual_no_mass_66": { "no_mass": true, - "thermal_resistance": 3.7246286968875113 + "thermal_resistance": 1.112716932181629 } }, { @@ -3505,7 +3505,7 @@ { "virtual_no_mass_69": { "no_mass": true, - "thermal_resistance": 2.861154725231045 + "thermal_resistance": 0.2492429605251627 } }, { @@ -3523,7 +3523,7 @@ { "virtual_no_mass_72": { "no_mass": true, - "thermal_resistance": 3.153913519430761 + "thermal_resistance": 0.5420017547248785 } }, { @@ -3541,7 +3541,7 @@ { "virtual_no_mass_75": { "no_mass": true, - "thermal_resistance": 1.7398737251092764 + "thermal_resistance": -0.8720380395966056 } }, { @@ -3559,7 +3559,7 @@ { "virtual_no_mass_78": { "no_mass": true, - "thermal_resistance": 3.5764326469858596 + "thermal_resistance": 0.9645208822799773 } }, { @@ -3577,7 +3577,7 @@ { "virtual_no_mass_81": { "no_mass": true, - "thermal_resistance": 2.6178327722682195 + "thermal_resistance": 0.005921007562337266 } }, { @@ -3595,7 +3595,7 @@ { "virtual_no_mass_84": { "no_mass": true, - "thermal_resistance": 4.027893340779003 + "thermal_resistance": 1.4159815760731211 } }, { @@ -3613,7 +3613,7 @@ { "virtual_no_mass_87": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3631,7 +3631,7 @@ { "virtual_no_mass_90": { "no_mass": true, - "thermal_resistance": 4.741215106732348 + "thermal_resistance": 2.129303342026466 } }, { @@ -3649,7 +3649,7 @@ { "virtual_no_mass_93": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3667,7 +3667,7 @@ { "virtual_no_mass_96": { "no_mass": true, - "thermal_resistance": 4.741215106732348 + "thermal_resistance": 2.129303342026466 } }, { @@ -3685,7 +3685,7 @@ { "virtual_no_mass_99": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3703,7 +3703,7 @@ { "virtual_no_mass_102": { "no_mass": true, - "thermal_resistance": 5.443791219144526 + "thermal_resistance": 2.831879454438644 } }, { @@ -3721,7 +3721,7 @@ { "virtual_no_mass_105": { "no_mass": true, - "thermal_resistance": 4.741215106732348 + "thermal_resistance": 2.129303342026466 } }, { @@ -3739,7 +3739,7 @@ { "virtual_no_mass_108": { "no_mass": true, - "thermal_resistance": 3.153913519430761 + "thermal_resistance": 0.5420017547248785 } }, { @@ -3757,7 +3757,7 @@ { "virtual_no_mass_111": { "no_mass": true, - "thermal_resistance": 1.7398737251092764 + "thermal_resistance": -0.8720380395966056 } }, { @@ -3775,7 +3775,7 @@ { "virtual_no_mass_114": { "no_mass": true, - "thermal_resistance": 3.5764326469858596 + "thermal_resistance": 0.9645208822799773 } }, { @@ -3793,7 +3793,7 @@ { "virtual_no_mass_117": { "no_mass": true, - "thermal_resistance": 2.6178327722682195 + "thermal_resistance": 0.005921007562337266 } }, { @@ -3811,7 +3811,7 @@ { "virtual_no_mass_120": { "no_mass": true, - "thermal_resistance": 4.027893340779003 + "thermal_resistance": 1.4159815760731211 } }, { @@ -3829,7 +3829,7 @@ { "virtual_no_mass_123": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3847,7 +3847,7 @@ { "virtual_no_mass_126": { "no_mass": true, - "thermal_resistance": 4.741215106732348 + "thermal_resistance": 2.129303342026466 } }, { @@ -3865,7 +3865,7 @@ { "virtual_no_mass_129": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3883,7 +3883,7 @@ { "virtual_no_mass_132": { "no_mass": true, - "thermal_resistance": 4.741215106732348 + "thermal_resistance": 2.129303342026466 } }, { @@ -3901,7 +3901,7 @@ { "virtual_no_mass_135": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3919,7 +3919,7 @@ { "virtual_no_mass_138": { "no_mass": true, - "thermal_resistance": 5.443791219144526 + "thermal_resistance": 2.831879454438644 } }, { @@ -3937,7 +3937,7 @@ { "virtual_no_mass_141": { "no_mass": true, - "thermal_resistance": 4.741215106732348 + "thermal_resistance": 2.129303342026466 } }, { @@ -3955,7 +3955,7 @@ { "virtual_no_mass_144": { "no_mass": true, - "thermal_resistance": 3.427586206896552 + "thermal_resistance": 0.8156744421906699 } }, { @@ -3973,7 +3973,7 @@ { "virtual_no_mass_147": { "no_mass": true, - "thermal_resistance": 1.7398737251092764 + "thermal_resistance": -0.8720380395966056 } }, { @@ -3991,7 +3991,7 @@ { "virtual_no_mass_150": { "no_mass": true, - "thermal_resistance": 3.7528952504879634 + "thermal_resistance": 1.140983485782081 } }, { @@ -4009,7 +4009,7 @@ { "virtual_no_mass_153": { "no_mass": true, - "thermal_resistance": 2.6178327722682195 + "thermal_resistance": 0.005921007562337266 } }, { @@ -4027,7 +4027,7 @@ { "virtual_no_mass_156": { "no_mass": true, - "thermal_resistance": 4.145977011494253 + "thermal_resistance": 1.534065246788371 } }, { @@ -4045,7 +4045,7 @@ { "virtual_no_mass_159": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -4063,7 +4063,7 @@ { "virtual_no_mass_162": { "no_mass": true, - "thermal_resistance": 4.630473135525261 + "thermal_resistance": 2.018561370819379 } }, { @@ -4081,7 +4081,7 @@ { "virtual_no_mass_165": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -4099,7 +4099,7 @@ { "virtual_no_mass_168": { "no_mass": true, - "thermal_resistance": 5.242468239564428 + "thermal_resistance": 2.6305564748585466 } }, { @@ -4117,7 +4117,7 @@ { "virtual_no_mass_171": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -4135,7 +4135,7 @@ { "virtual_no_mass_174": { "no_mass": true, - "thermal_resistance": 6.0399164054336465 + "thermal_resistance": 3.4280046407277647 } }, { @@ -4153,7 +4153,7 @@ { "virtual_no_mass_177": { "no_mass": true, - "thermal_resistance": 4.741215106732348 + "thermal_resistance": 2.129303342026466 } }, { diff --git a/hub/exports/building_energy/insel/insel_monthly_energy_balance.py b/hub/exports/building_energy/insel/insel_monthly_energy_balance.py index af8462c0..f136509a 100644 --- a/hub/exports/building_energy/insel/insel_monthly_energy_balance.py +++ b/hub/exports/building_energy/insel/insel_monthly_energy_balance.py @@ -71,9 +71,10 @@ class InselMonthlyEnergyBalance(Insel): internal_zone = building.internal_zones[0] thermal_zone = internal_zone.thermal_zones[0] parameters.append(f'{thermal_zone.indirectly_heated_area_ratio} % BP(6) Indirectly heated area ratio') - parameters.append(f'{thermal_zone.effective_thermal_capacity / 3600} % BP(7) Effective heat capacity (Wh/m2K)') + parameters.append(f'{thermal_zone.effective_thermal_capacity / 3600 / building.average_storey_height}' + f' % BP(7) Effective heat capacity (Wh/m2K)') parameters.append(f'{thermal_zone.additional_thermal_bridge_u_value} ' - f'% BP(8) Additional U-value for heat bridge (Wh/m2K)') + f'% BP(8) Additional U-value for heat bridge (W/m2K)') parameters.append('1 % BP(9) Usage type (0=standard, 1=IWU)') # ZONES AND SURFACES diff --git a/hub/imports/construction/helpers/construction_helper.py b/hub/imports/construction/helpers/construction_helper.py index ed693b5d..39332f9d 100644 --- a/hub/imports/construction/helpers/construction_helper.py +++ b/hub/imports/construction/helpers/construction_helper.py @@ -47,6 +47,10 @@ class ConstructionHelper: cte.ROOF: 'roof' } + _reference_city_to_nrcan_climate_zone = { + 'Montreal': '6' + } + @staticmethod def yoc_to_nrel_standard(year_of_construction): """ @@ -68,9 +72,9 @@ class ConstructionHelper: :return: str """ # todo: Dummy function that needs to be implemented - reference_city = 'Baltimore' + reference_city = 'Montreal' if city is not None: - reference_city = 'Baltimore' + reference_city = 'Montreal' return reference_city @staticmethod @@ -80,5 +84,15 @@ class ConstructionHelper: :param city: str :return: str """ - reference_city = ConstructionHelper.city_to_reference_city(city) + reference_city = 'Baltimore' return ConstructionHelper._reference_city_to_nrel_climate_zone[reference_city] + + @staticmethod + def city_to_nrcan_climate_zone(city): + """ + City name to NRCAN climate zone + :param city: str + :return: str + """ + reference_city = ConstructionHelper.city_to_reference_city(city) + return ConstructionHelper._reference_city_to_nrcan_climate_zone[reference_city] diff --git a/hub/imports/construction/nrcan_physics_parameters.py b/hub/imports/construction/nrcan_physics_parameters.py index 3904ac69..dbe37684 100644 --- a/hub/imports/construction/nrcan_physics_parameters.py +++ b/hub/imports/construction/nrcan_physics_parameters.py @@ -4,8 +4,10 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2022 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ +import math import sys +import hub.helpers.constants as cte from hub.catalog_factories.construction_catalog_factory import ConstructionCatalogFactory from hub.city_model_structure.building_demand.layer import Layer from hub.city_model_structure.building_demand.material import Material @@ -22,25 +24,23 @@ class NrcanPhysicsParameters: self._city = city self._path = base_path self._divide_in_storeys = divide_in_storeys - self._climate_zone = ConstructionHelper.city_to_nrel_climate_zone(city.name) + self._climate_zone = ConstructionHelper.city_to_nrcan_climate_zone(city.name) def enrich_buildings(self): """ Returns the city with the construction parameters assigned to the buildings """ city = self._city - canel_catalog = ConstructionCatalogFactory('nrcan').catalog + nrcan_catalog = ConstructionCatalogFactory('nrcan').catalog for building in city.buildings: try: function = Dictionaries().hub_function_to_nrcan_construction_function[building.function] - archetype = self._search_archetype(canel_catalog, function, building.year_of_construction, - self._climate_zone) + archetype = self._search_archetype(nrcan_catalog, function, building.year_of_construction, self._climate_zone) except KeyError: sys.stderr.write(f'Building {building.name} has unknown construction archetype for building function: ' f'{building.function} and building year of construction: {building.year_of_construction} ' - f'and climate zone reference norm {self._climate_zone}\n') + f'and climate zone {self._climate_zone}\n') return - # if building has no thermal zones defined from geometry, and the building will be divided in storeys, # one thermal zone per storey is assigned if len(building.internal_zones) == 1: @@ -65,12 +65,10 @@ class NrcanPhysicsParameters: self._calculate_view_factors(thermal_zone) @staticmethod - def _search_archetype(nrel_catalog, function, year_of_construction, climate_zone): - nrel_archetypes = nrel_catalog.entries('archetypes') - for building_archetype in nrel_archetypes: - construction_period_limits = building_archetype.construction_period.split(' - ') - if construction_period_limits[1] == 'PRESENT': - construction_period_limits[1] = 3000 + def _search_archetype(nrcan_catalog, function, year_of_construction, climate_zone): + nrcan_archetypes = nrcan_catalog.entries('archetypes') + for building_archetype in nrcan_archetypes: + construction_period_limits = building_archetype.construction_period.split('_') if int(construction_period_limits[0]) <= int(year_of_construction) < int(construction_period_limits[1]): if (str(function) == str(building_archetype.function)) and \ (climate_zone == str(building_archetype.climate_zone)): @@ -96,7 +94,21 @@ class NrcanPhysicsParameters: construction_archetype = self._search_construction_in_archetype(archetype, thermal_boundary.type) thermal_boundary.construction_name = construction_archetype.name try: - thermal_boundary.window_ratio = construction_archetype.window_ratio + thermal_boundary.window_ratio = 0 + if thermal_boundary.type == cte.WALL or thermal_boundary.type == cte.ROOF: + if construction_archetype.window is not None: + if math.pi / 4 <= thermal_boundary.parent_surface.azimuth < 3 * math.pi / 4: + thermal_boundary.window_ratio = \ + float(construction_archetype.window_ratio['east']) / 100 + elif 3 * math.pi / 4 <= thermal_boundary.parent_surface.azimuth < 5 * math.pi / 4: + thermal_boundary.window_ratio = \ + float(construction_archetype.window_ratio['south']) / 100 + elif 5 * math.pi / 4 <= thermal_boundary.parent_surface.azimuth < 7 * math.pi / 4: + thermal_boundary.window_ratio = \ + float(construction_archetype.window_ratio['west']) / 100 + else: + thermal_boundary.window_ratio = \ + float(construction_archetype.window_ratio['north']) / 100 except ValueError: # This is the normal operation way when the windows are defined in the geometry continue diff --git a/hub/unittests/test_construction_factory.py b/hub/unittests/test_construction_factory.py index 7e37777a..023d13ee 100644 --- a/hub/unittests/test_construction_factory.py +++ b/hub/unittests/test_construction_factory.py @@ -113,8 +113,6 @@ class TestConstructionFactory(TestCase): self.assertTrue(len(thermal_zone.thermal_boundaries) > 0, 'thermal_zone thermal_boundaries not defined') self.assertIsNotNone(thermal_zone.additional_thermal_bridge_u_value, 'additional_thermal_bridge_u_value is none') self.assertIsNotNone(thermal_zone.effective_thermal_capacity, 'thermal_zone effective_thermal_capacity is none') - self.assertIsNotNone(thermal_zone.indirectly_heated_area_ratio, - 'thermal_zone indirectly_heated_area_ratio is none') self.assertIsNotNone(thermal_zone.infiltration_rate_system_off, 'thermal_zone infiltration_rate_system_off is none') self.assertIsNotNone(thermal_zone.infiltration_rate_system_on, 'thermal_zone infiltration_rate_system_on is none') @@ -153,7 +151,7 @@ class TestConstructionFactory(TestCase): def _check_thermal_openings(self, thermal_boundary): for thermal_opening in thermal_boundary.thermal_openings: self.assertIsNotNone(thermal_opening.id, 'thermal opening id is not none') - self.assertIsNotNone(thermal_opening.construction_name, 'thermal opening construction is not none') + self.assertIsNotNone(thermal_opening.construction_name, 'thermal opening construction is none') self.assertIsNotNone(thermal_opening.area, 'thermal opening area is not none') self.assertIsNotNone(thermal_opening.frame_ratio, 'thermal opening frame_ratio is none') self.assertIsNotNone(thermal_opening.g_value, 'thermal opening g_value is none') @@ -176,10 +174,64 @@ class TestConstructionFactory(TestCase): """ Enrich the city with the construction information and verify it """ + file = 'one_building_in_kelowna.gml' + city = self._get_citygml(file) + for building in city.buildings: + building.year_of_construction = 1980 + building.function = self._internal_function('hft', building.function) + ConstructionFactory('nrcan', city).enrich() + + self._check_buildings(city) + for building in city.buildings: + for internal_zone in building.internal_zones: + self._check_thermal_zones(internal_zone) + for thermal_zone in internal_zone.thermal_zones: + self._check_thermal_boundaries(thermal_zone) + for thermal_boundary in thermal_zone.thermal_boundaries: + self.assertIsNotNone(thermal_boundary.layers, 'layers is none') + self._check_thermal_openings(thermal_boundary) + self._check_surfaces(thermal_boundary) + file = 'pluto_building.gml' city = self._get_citygml(file) for building in city.buildings: - building.year_of_construction = 2005 + building.year_of_construction = 1980 + building.function = self._internal_function('pluto', building.function) + ConstructionFactory('nrcan', city).enrich() + + self._check_buildings(city) + for building in city.buildings: + for internal_zone in building.internal_zones: + self._check_thermal_zones(internal_zone) + for thermal_zone in internal_zone.thermal_zones: + self._check_thermal_boundaries(thermal_zone) + for thermal_boundary in thermal_zone.thermal_boundaries: + self.assertIsNotNone(thermal_boundary.layers, 'layers is none') + self._check_thermal_openings(thermal_boundary) + self._check_surfaces(thermal_boundary) + + file = 'one_building_in_kelowna.gml' + city = self._get_citygml(file) + for building in city.buildings: + building.year_of_construction = 2006 + building.function = self._internal_function('hft', building.function) + ConstructionFactory('nrel', city).enrich() + + self._check_buildings(city) + for building in city.buildings: + for internal_zone in building.internal_zones: + self._check_thermal_zones(internal_zone) + for thermal_zone in internal_zone.thermal_zones: + self._check_thermal_boundaries(thermal_zone) + for thermal_boundary in thermal_zone.thermal_boundaries: + self.assertIsNotNone(thermal_boundary.layers, 'layers is none') + self._check_thermal_openings(thermal_boundary) + self._check_surfaces(thermal_boundary) + + file = 'pluto_building.gml' + city = self._get_citygml(file) + for building in city.buildings: + building.year_of_construction = 2006 building.function = self._internal_function('pluto', building.function) ConstructionFactory('nrel', city).enrich() @@ -194,6 +246,50 @@ class TestConstructionFactory(TestCase): self._check_thermal_openings(thermal_boundary) self._check_surfaces(thermal_boundary) + file = 'one_building_in_kelowna.gml' + city = self._get_citygml(file) + for building in city.buildings: + building.year_of_construction = 1980 + building.function = self._internal_function('hft', building.function) + ConstructionFactory('nrcan', city).enrich() + + self._check_buildings(city) + for building in city.buildings: + for internal_zone in building.internal_zones: + self._check_thermal_zones(internal_zone) + for thermal_zone in internal_zone.thermal_zones: + self._check_thermal_boundaries(thermal_zone) + for thermal_boundary in thermal_zone.thermal_boundaries: + self.assertIsNotNone(thermal_boundary.layers, 'layers is none') + self._check_thermal_openings(thermal_boundary) + self._check_surfaces(thermal_boundary) + + file_path = (self._example_path / 'concordia.geojson').resolve() + self._city = GeometryFactory('geojson', + path=file_path, + height_field='citygml_me', + year_of_construction_field='ANNEE_CONS', + function_field='LIBELLE_UT', + function_to_hub=Dictionaries().montreal_function_to_hub_function).city + + for building in city.buildings: + building.year_of_construction = 1980 + building.function = self._internal_function('pluto', building.function) + ConstructionFactory('nrcan', city).enrich() + + self._check_buildings(city) + for building in city.buildings: + for internal_zone in building.internal_zones: + self._check_thermal_zones(internal_zone) + for thermal_zone in internal_zone.thermal_zones: + self._check_thermal_boundaries(thermal_zone) + for thermal_boundary in thermal_zone.thermal_boundaries: + self.assertIsNotNone(thermal_boundary.layers, 'layers is none') + self._check_thermal_openings(thermal_boundary) + self._check_surfaces(thermal_boundary) + + + def test_archetype_not_found(self): file = 'pluto_building.gml' city = self._get_citygml(file) From ee495bf41a1129ecd90bf7a2282fcfcf7d9bf83c Mon Sep 17 00:00:00 2001 From: Pilar Date: Wed, 22 Feb 2023 08:35:45 -0500 Subject: [PATCH 11/27] added nrcan catalog --- hub/imports/geometry/geojson.py | 2 +- hub/unittests/test_construction_factory.py | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/hub/imports/geometry/geojson.py b/hub/imports/geometry/geojson.py index 58f3949d..21f27b27 100644 --- a/hub/imports/geometry/geojson.py +++ b/hub/imports/geometry/geojson.py @@ -163,6 +163,6 @@ class Geojson: for building in buildings: self._city.add_city_object(building) self._city.level_of_detail.geometry = lod - if len(missing_functions > 0): + if len(missing_functions) > 0: print(f'There are unknown functions {missing_functions}') return self._city diff --git a/hub/unittests/test_construction_factory.py b/hub/unittests/test_construction_factory.py index 023d13ee..026b535f 100644 --- a/hub/unittests/test_construction_factory.py +++ b/hub/unittests/test_construction_factory.py @@ -272,9 +272,6 @@ class TestConstructionFactory(TestCase): function_field='LIBELLE_UT', function_to_hub=Dictionaries().montreal_function_to_hub_function).city - for building in city.buildings: - building.year_of_construction = 1980 - building.function = self._internal_function('pluto', building.function) ConstructionFactory('nrcan', city).enrich() self._check_buildings(city) @@ -288,8 +285,6 @@ class TestConstructionFactory(TestCase): self._check_thermal_openings(thermal_boundary) self._check_surfaces(thermal_boundary) - - def test_archetype_not_found(self): file = 'pluto_building.gml' city = self._get_citygml(file) From 8a4fdc0397117f79724762226b90cfe06aa7125b Mon Sep 17 00:00:00 2001 From: guille Date: Thu, 23 Feb 2023 06:56:13 -0500 Subject: [PATCH 12/27] Partial implementation neighbours detection. --- hub/city_model_structure/city.py | 2 + hub/city_model_structure/city_object.py | 17 +++++ hub/helpers/geometry_helper.py | 87 ++++++++++++++++++++++--- hub/unittests/test_geometry_factory.py | 25 +++++++ 4 files changed, 121 insertions(+), 10 deletions(-) diff --git a/hub/city_model_structure/city.py b/hub/city_model_structure/city.py index 03764570..c5d427ee 100644 --- a/hub/city_model_structure/city.py +++ b/hub/city_model_structure/city.py @@ -458,3 +458,5 @@ class City: :return: LevelOfDetail """ return self._level_of_detail + + diff --git a/hub/city_model_structure/city_object.py b/hub/city_model_structure/city_object.py index 70594bbc..b5b84fcc 100644 --- a/hub/city_model_structure/city_object.py +++ b/hub/city_model_structure/city_object.py @@ -5,11 +5,13 @@ Copyright © 2022 Concordia CERC group Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca """ +from __future__ import annotations from typing import List, Union from hub.city_model_structure.iot.sensor import Sensor from hub.city_model_structure.building_demand.surface import Surface from hub.city_model_structure.attributes.polyhedron import Polyhedron + from hub.helpers.configuration_helper import ConfigurationHelper @@ -33,6 +35,7 @@ class CityObject: self._diffuse = dict() self._beam = dict() self._sensors = [] + self._neighbours = None @property def name(self): @@ -224,3 +227,17 @@ class CityObject: :param value: [Sensor] """ self._sensors = value + + @property + def neighbours(self) -> Union[None, List[CityObject]]: + """ + Get the list of neighbour_objects and their properties associated to the current city_object + """ + return self._neighbours + + @neighbours.setter + def neighbours(self, value): + """ + Set the list of neighbour_objects and their properties associated to the current city_object + """ + self._neighbours = value diff --git a/hub/helpers/geometry_helper.py b/hub/helpers/geometry_helper.py index 24c202e3..f2008fb4 100644 --- a/hub/helpers/geometry_helper.py +++ b/hub/helpers/geometry_helper.py @@ -13,8 +13,14 @@ from trimesh import intersections from hub.city_model_structure.attributes.polygon import Polygon from hub.city_model_structure.attributes.polyhedron import Polyhedron from hub.helpers.location import Location -from hub.helpers.configuration_helper import ConfigurationHelper +class MapPoint: + def __init__(self, x, y): + self.x = int(x) + self.y = int(y) + + def __str__(self): + return f'({self.x}, {self.y})' class GeometryHelper: """ @@ -29,15 +35,76 @@ class GeometryHelper: self._area_delta = area_delta @staticmethod - def adjacent_locations(location1, location2): - """ - Determine when two attributes may be adjacent or not based in the dis - :param location1: - :param location2: - :return: Boolean - """ - max_distance = ConfigurationHelper().max_location_distance_for_shared_walls - return GeometryHelper.distance_between_points(location1, location2) < max_distance + def coordinate_to_map_point(coordinate, city): + return MapPoint((city.upper_corner[0] - coordinate[0])/2, (city.upper_corner[1] - coordinate[1])/2) + + @staticmethod + def point_between_point(point_1, point_2, x): + m = (point_1.y - point_2.y)/(point_1.x - point_2.x) + c = point_2.y - (m*point_2.x) + y = (m*x)+c + return MapPoint(x,y) + + @staticmethod + def city_mapping(city, building_names=None): + if building_names is None: + building_names = [b.name for b in city.buildings] + x = int((city.upper_corner[0] - city.lower_corner[0]) / 2) + y = int((city.upper_corner[1] - city.lower_corner[1]) / 2) + city_map = [['' for _ in range(y+1)] for _ in range(x+1)] + city_image = [[0 for _ in range(y+1)] for _ in range(x+1)] + for building_name in building_names: + building = city.city_object(building_name) + for ground in building.grounds: + length = len(ground.perimeter_polygon.coordinates) - 1 + for i, coordinate in enumerate(ground.perimeter_polygon.coordinates): + j = i+1 + if i == length: + j = 0 + next_coordinate = ground.perimeter_polygon.coordinates[j] + point_1 = GeometryHelper.coordinate_to_map_point(coordinate, city) + point_2 = GeometryHelper.coordinate_to_map_point(next_coordinate, city) + for x in range(point_1.x, point_2.x): + y = GeometryHelper.point_between_point(point_1, point_2, x).y + if city_map[x][y] == '': + city_map[x][y] = building.name + city_image[x][y] = 1 + elif city_map[x][y] != building.name: + neighbour = city.city_object(city_map[x][y]) + if building.neighbours is None: + building.neighbours = [neighbour] + elif neighbour not in building.neighbours: + building.neighbours.append(neighbour) + if neighbour.neighbours is None: + neighbour.neighbours = [building] + elif building not in neighbour.neighbours: + neighbour.neighbours.append(building) + + + + + + + + + + """ + x = int((city.upper_corner[0] - coordinate[0]) / 2) + y = int((city.upper_corner[1] - coordinate[1]) / 2) + if city_map[x][y] == '': + city_map[x][y] = building.name + city_image[x][y] = 1 + elif city_map[x][y] != building.name: + neighbour = city.city_object(city_map[x][y]) + if building.neighbours is None: + building.neighbours = [neighbour] + elif neighbour not in building.neighbours: + building.neighbours.append(neighbour) + if neighbour.neighbours is None: + neighbour.neighbours = [building] + elif building not in neighbour.neighbours: + neighbour.neighbours.append(building) + """ @staticmethod def segment_list_to_trimesh(lines) -> Trimesh: diff --git a/hub/unittests/test_geometry_factory.py b/hub/unittests/test_geometry_factory.py index 67018841..695b3192 100644 --- a/hub/unittests/test_geometry_factory.py +++ b/hub/unittests/test_geometry_factory.py @@ -4,8 +4,10 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2022 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ +import datetime from pathlib import Path from unittest import TestCase +from hub.helpers.geometry_helper import GeometryHelper from numpy import inf @@ -146,3 +148,26 @@ class TestGeometryFactory(TestCase): hub.exports.exports_factory.ExportsFactory('obj', city, self._output_path).export() self.assertEqual(207, len(city.buildings), 'wrong number of buildings') self._check_buildings(city) + + def test_map_neighbours(self): + """ + Test neighbours map creation + """ + start = datetime.datetime.now() + file = 'concordia.geojson' + city = self._get_city(file, 'geojson', + height_field='citygml_me', + year_of_construction_field='ANNEE_CONS', + function_field='LIBELLE_UT') + city_end = datetime.datetime.now() + print(f'city load {city_end-start}') + GeometryHelper.city_mapping(city) + end = datetime.datetime.now() + print(f'city map {end-city_end}') + + for building in city.buildings: + if building.neighbours is not None: + print(f'{building.name} [{[b.name for b in building.neighbours]}]') + else: + print(f'{building.name} has no neighbours') + self.assertTrue(False) From 143e48bb7b39ca08bbdba9f2c42363bbc8a30c95 Mon Sep 17 00:00:00 2001 From: guille Date: Thu, 23 Feb 2023 07:24:36 -0500 Subject: [PATCH 13/27] Partial implementation neighbours detection. --- hub/helpers/geometry_helper.py | 41 +++++++++------------------------- 1 file changed, 10 insertions(+), 31 deletions(-) diff --git a/hub/helpers/geometry_helper.py b/hub/helpers/geometry_helper.py index f2008fb4..fdf3cbdb 100644 --- a/hub/helpers/geometry_helper.py +++ b/hub/helpers/geometry_helper.py @@ -14,6 +14,8 @@ from hub.city_model_structure.attributes.polygon import Polygon from hub.city_model_structure.attributes.polyhedron import Polyhedron from hub.helpers.location import Location +from PIL import Image + class MapPoint: def __init__(self, x, y): self.x = int(x) @@ -36,7 +38,7 @@ class GeometryHelper: @staticmethod def coordinate_to_map_point(coordinate, city): - return MapPoint((city.upper_corner[0] - coordinate[0])/2, (city.upper_corner[1] - coordinate[1])/2) + return MapPoint((city.upper_corner[0] - coordinate[0])*2, (city.upper_corner[1] - coordinate[1])*2) @staticmethod def point_between_point(point_1, point_2, x): @@ -49,10 +51,12 @@ class GeometryHelper: def city_mapping(city, building_names=None): if building_names is None: building_names = [b.name for b in city.buildings] - x = int((city.upper_corner[0] - city.lower_corner[0]) / 2) - y = int((city.upper_corner[1] - city.lower_corner[1]) / 2) + x = int((city.upper_corner[0] - city.lower_corner[0]) * 2) + y = int((city.upper_corner[1] - city.lower_corner[1]) * 2) city_map = [['' for _ in range(y+1)] for _ in range(x+1)] - city_image = [[0 for _ in range(y+1)] for _ in range(x+1)] + img = Image.new('RGB', (x+1, y+1), "black") # create a new black image + city_image = img.load() # create the pixel map + for building_name in building_names: building = city.city_object(building_name) for ground in building.grounds: @@ -68,7 +72,7 @@ class GeometryHelper: y = GeometryHelper.point_between_point(point_1, point_2, x).y if city_map[x][y] == '': city_map[x][y] = building.name - city_image[x][y] = 1 + city_image[x, y] = (90, 90, 90) elif city_map[x][y] != building.name: neighbour = city.city_object(city_map[x][y]) if building.neighbours is None: @@ -79,32 +83,7 @@ class GeometryHelper: neighbour.neighbours = [building] elif building not in neighbour.neighbours: neighbour.neighbours.append(building) - - - - - - - - - - """ - x = int((city.upper_corner[0] - coordinate[0]) / 2) - y = int((city.upper_corner[1] - coordinate[1]) / 2) - if city_map[x][y] == '': - city_map[x][y] = building.name - city_image[x][y] = 1 - elif city_map[x][y] != building.name: - neighbour = city.city_object(city_map[x][y]) - if building.neighbours is None: - building.neighbours = [neighbour] - elif neighbour not in building.neighbours: - building.neighbours.append(neighbour) - if neighbour.neighbours is None: - neighbour.neighbours = [building] - elif building not in neighbour.neighbours: - neighbour.neighbours.append(building) - """ + img.show() @staticmethod def segment_list_to_trimesh(lines) -> Trimesh: From 66f0e4e32b7c9dab6b7b98eabc97a68d83361eed Mon Sep 17 00:00:00 2001 From: Pilar Date: Thu, 23 Feb 2023 15:26:34 -0500 Subject: [PATCH 14/27] a bug in nrcan importer --- hub/imports/construction/nrcan_physics_parameters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub/imports/construction/nrcan_physics_parameters.py b/hub/imports/construction/nrcan_physics_parameters.py index dbe37684..77240a81 100644 --- a/hub/imports/construction/nrcan_physics_parameters.py +++ b/hub/imports/construction/nrcan_physics_parameters.py @@ -87,7 +87,7 @@ class NrcanPhysicsParameters: for thermal_zone in thermal_zones: thermal_zone.additional_thermal_bridge_u_value = archetype.extra_loses_due_to_thermal_bridges thermal_zone.effective_thermal_capacity = archetype.thermal_capacity - thermal_zone.indirectly_heated_area_ratio = archetype.indirect_heated_ratio + thermal_zone.indirectly_heated_area_ratio = 0 thermal_zone.infiltration_rate_system_on = archetype.infiltration_rate_for_ventilation_system_on thermal_zone.infiltration_rate_system_off = archetype.infiltration_rate_for_ventilation_system_off for thermal_boundary in thermal_zone.thermal_boundaries: From c5110585c76f56c987bb596aa91498aa3f99413e Mon Sep 17 00:00:00 2001 From: guille Date: Thu, 23 Feb 2023 15:35:13 -0500 Subject: [PATCH 15/27] untested neighbours detection implemented. --- hub/helpers/geometry_helper.py | 62 ++++++++++++++++++++++------------ 1 file changed, 40 insertions(+), 22 deletions(-) diff --git a/hub/helpers/geometry_helper.py b/hub/helpers/geometry_helper.py index fdf3cbdb..912105d4 100644 --- a/hub/helpers/geometry_helper.py +++ b/hub/helpers/geometry_helper.py @@ -16,14 +16,35 @@ from hub.helpers.location import Location from PIL import Image + class MapPoint: def __init__(self, x, y): - self.x = int(x) - self.y = int(y) + self._x = int(x) + self._y = int(y) + + @property + def x(self): + return self._x + + @property + def y(self): + return self._y def __str__(self): return f'({self.x}, {self.y})' + def __len__(self): + return 1 + + def __getitem__(self, index): + if index == 0: + return self._x + elif index == 1: + return self._y + else: + raise IndexError('Index error') + + class GeometryHelper: """ Geometry helper class @@ -38,41 +59,38 @@ class GeometryHelper: @staticmethod def coordinate_to_map_point(coordinate, city): - return MapPoint((city.upper_corner[0] - coordinate[0])*2, (city.upper_corner[1] - coordinate[1])*2) - - @staticmethod - def point_between_point(point_1, point_2, x): - m = (point_1.y - point_2.y)/(point_1.x - point_2.x) - c = point_2.y - (m*point_2.x) - y = (m*x)+c - return MapPoint(x,y) + return MapPoint((city.upper_corner[0] - coordinate[0] / 1), (city.upper_corner[1] - coordinate[1] / 1)) @staticmethod def city_mapping(city, building_names=None): if building_names is None: building_names = [b.name for b in city.buildings] - x = int((city.upper_corner[0] - city.lower_corner[0]) * 2) - y = int((city.upper_corner[1] - city.lower_corner[1]) * 2) - city_map = [['' for _ in range(y+1)] for _ in range(x+1)] - img = Image.new('RGB', (x+1, y+1), "black") # create a new black image + x = int((city.upper_corner[0] - city.lower_corner[0]) / 1) + y = int((city.upper_corner[1] - city.lower_corner[1]) / 1) + city_map = [['' for _ in range(y + 1)] for _ in range(x + 1)] + img = Image.new('RGB', (x + 1, y + 1), "black") # create a new black image city_image = img.load() # create the pixel map - for building_name in building_names: building = city.city_object(building_name) for ground in building.grounds: length = len(ground.perimeter_polygon.coordinates) - 1 for i, coordinate in enumerate(ground.perimeter_polygon.coordinates): - j = i+1 + j = i + 1 if i == length: j = 0 next_coordinate = ground.perimeter_polygon.coordinates[j] - point_1 = GeometryHelper.coordinate_to_map_point(coordinate, city) - point_2 = GeometryHelper.coordinate_to_map_point(next_coordinate, city) - for x in range(point_1.x, point_2.x): - y = GeometryHelper.point_between_point(point_1, point_2, x).y + point = GeometryHelper.coordinate_to_map_point(coordinate, city) + distance = GeometryHelper.distance_between_points(coordinate, next_coordinate) + if distance == 0: + continue + delta_x = (coordinate[0] - next_coordinate[0]) / distance + delta_y = (coordinate[1] - next_coordinate[1]) / distance + for i in range(0, int(distance)): + x = MapPoint(point.x + (delta_x * i), point.y + (delta_y * i)).x + y = MapPoint(point.x + (delta_x * i), point.y + (delta_y * i)).y if city_map[x][y] == '': city_map[x][y] = building.name - city_image[x, y] = (90, 90, 90) + city_image[x, y] = (100, 0, 0) elif city_map[x][y] != building.name: neighbour = city.city_object(city_map[x][y]) if building.neighbours is None: @@ -194,6 +212,6 @@ class GeometryHelper: """ power = 0 for dimension in range(0, len(vertex1)): - power += math.pow(vertex2[dimension]-vertex1[dimension], 2) + power += math.pow(vertex2[dimension] - vertex1[dimension], 2) distance = math.sqrt(power) return distance From 511361b70bea5c2b73b8d54fbdf8bb2f90504a8f Mon Sep 17 00:00:00 2001 From: guille Date: Thu, 23 Feb 2023 15:40:09 -0500 Subject: [PATCH 16/27] Correct bug in citygml year_of_construction field default value --- hub/imports/geometry/citygml.py | 10 +++++++--- hub/unittests/test_geometry_factory.py | 3 +-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/hub/imports/geometry/citygml.py b/hub/imports/geometry/citygml.py index bcd3dec8..3b4e688d 100644 --- a/hub/imports/geometry/citygml.py +++ b/hub/imports/geometry/citygml.py @@ -19,11 +19,12 @@ class CityGml: """ CityGml class """ + def __init__(self, path, extrusion_height_field=None, - year_of_construction_field='yearOfConstruction', - function_field='function', + year_of_construction_field=None, + function_field=None, function_to_hub=None): self._city = None self._lod = None @@ -31,9 +32,12 @@ class CityGml: self._lod2_tags = ['lod2Solid', 'lod2MultiSurface', 'lod2MultiCurve'] self._extrusion_height_field = extrusion_height_field self._function_to_hub = function_to_hub - self._year_of_construction_field = year_of_construction_field + if function_field is None: function_field = 'function' + if year_of_construction_field is None: + year_of_construction_field = 'yearOfConstruction' + self._year_of_construction_field = year_of_construction_field self._function_field = function_field self._lower_corner = None diff --git a/hub/unittests/test_geometry_factory.py b/hub/unittests/test_geometry_factory.py index 695b3192..1c8ef5bb 100644 --- a/hub/unittests/test_geometry_factory.py +++ b/hub/unittests/test_geometry_factory.py @@ -103,12 +103,11 @@ class TestGeometryFactory(TestCase): :return: None """ file = 'FZK_Haus_LoD_2.gml' - city = self._get_city(file, 'citygml', year_of_construction_field='yearOfConstruction') + city = self._get_city(file, 'citygml') self.assertTrue(len(city.buildings) == 1) self._check_buildings(city) for building in city.buildings: self._check_surfaces(building) - building.year_of_construction = 2006 city = ConstructionFactory('nrel', city).enrich() def test_import_rhino(self): From 6f58f22638a011526ee602e1b52c7ceb0885a3de Mon Sep 17 00:00:00 2001 From: Pilar Date: Thu, 23 Feb 2023 15:45:50 -0500 Subject: [PATCH 17/27] a bug in citygml importer. 'yearOfConstruction' not recognized --- hub/imports/geometry/citygml.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hub/imports/geometry/citygml.py b/hub/imports/geometry/citygml.py index bcd3dec8..f6490f97 100644 --- a/hub/imports/geometry/citygml.py +++ b/hub/imports/geometry/citygml.py @@ -22,8 +22,8 @@ class CityGml: def __init__(self, path, extrusion_height_field=None, - year_of_construction_field='yearOfConstruction', - function_field='function', + year_of_construction_field=None, + function_field=None, function_to_hub=None): self._city = None self._lod = None @@ -31,6 +31,8 @@ class CityGml: self._lod2_tags = ['lod2Solid', 'lod2MultiSurface', 'lod2MultiCurve'] self._extrusion_height_field = extrusion_height_field self._function_to_hub = function_to_hub + if year_of_construction_field is None: + year_of_construction_field = 'yearOfConstruction' self._year_of_construction_field = year_of_construction_field if function_field is None: function_field = 'function' From a8d0d0e6bac8402ad88c77b79011afe4d04a1ac6 Mon Sep 17 00:00:00 2001 From: guille Date: Fri, 24 Feb 2023 06:31:28 -0500 Subject: [PATCH 18/27] Change string values for codes in montreal dictionary --- hub/helpers/constants.py | 1 + .../data/montreal_function_to_hub_function.py | 1227 ++++++++--------- 2 files changed, 570 insertions(+), 658 deletions(-) diff --git a/hub/helpers/constants.py b/hub/helpers/constants.py index b75d9d2d..4792130f 100644 --- a/hub/helpers/constants.py +++ b/hub/helpers/constants.py @@ -125,6 +125,7 @@ AUTOMOTIVE_FACILITY = 'automotive facility' PARKING_GARAGE = 'parking garage' RELIGIOUS = 'religious' NON_HEATED = 'non-heated' +DATACENTER = 'datacenter' LIGHTING = 'Lights' OCCUPANCY = 'Occupancy' diff --git a/hub/helpers/data/montreal_function_to_hub_function.py b/hub/helpers/data/montreal_function_to_hub_function.py index 5b107196..d8caf821 100644 --- a/hub/helpers/data/montreal_function_to_hub_function.py +++ b/hub/helpers/data/montreal_function_to_hub_function.py @@ -11,664 +11,575 @@ import hub.helpers.constants as cte class MontrealFunctionToHubFunction: def __init__(self): - self._dictionary = { - "Administration publique municipale et régionale": cte.MEDIUM_OFFICE, - "Administration publique provinciale": cte.MEDIUM_OFFICE, - "Agence de voyages ou d'expéditions": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Aiguillage et cour de triage de chemins de fer": cte.WAREHOUSE, - "Amphithéâtre et auditorium": cte.EVENT_LOCATION, - "Archives (incluant cinémathèquevidéothèque)": cte.EVENT_LOCATION, - "Aréna et activités connexes (patinage sur glace)": cte.SPORTS_LOCATION, - "Association civiquesociale et fraternelle": cte.OFFICE_AND_ADMINISTRATION, - "Associationunion ou coop d'épargne et de prêt (inclus caisses populaires locales)": cte.OFFICE_AND_ADMINISTRATION, - "Atelier d'artiste": cte.WAREHOUSE, - "Atelier d'artiste ou d'artisan": cte.WAREHOUSE, - "Atelier d'usinage": cte.WAREHOUSE, - "Atelier de mécanicien-dentiste": cte.WAREHOUSE, - "Auberge ou gîte touristique (Hôtel à caractère familiald'au plus 3 étages en hauteur de bâtiment)": cte.SMALL_HOTEL, - "Autoroute": cte.WAREHOUSE, - "Autres activités agricoles": cte.INDUSTRY, - "Autres activités culturelles": cte.EVENT_LOCATION, - "Autres activités d'hébergement": cte.MULTI_FAMILY_HOUSE, - "Autres activités d'impression commerciale": cte.WAREHOUSE, - "Autres activités de la restauration": cte.WAREHOUSE, - "Autres activités de récupération et de triage": cte.WAREHOUSE, - "Autres activités de vente au détail (inclus les kiosques d'autres choses que vêtements et accessoires de vêtements)": cte.STAND_ALONE_RETAIL, - "Autres activités de vente au détail de produits de l'alimentation": cte.STAND_ALONE_RETAIL, - "Autres activités de vente au détail de vêtements comme les accessoires": cte.STAND_ALONE_RETAIL, - "Autres activités de vente au détail reliées aux automobilesaux embarcationsaux avions et à leurs accessoires": cte.STAND_ALONE_RETAIL, - "Autres activités de vente en gros": cte.WAREHOUSE, - "Autres activités minières et extraction de carrières de minerais non métalliques (sauf le pétrole)": cte.INDUSTRY, - "Autres activités nautiques": cte.WAREHOUSE, - "Autres activités religieuses": cte.OFFICE_AND_ADMINISTRATION, - "Autres activités reliées au transport de matériaux par camion": cte.WAREHOUSE, - "Autres activités reliées au transport par autobus": cte.WAREHOUSE, - "Autres activités reliées au transport par chemin de fer": cte.WAREHOUSE, - "Autres activités sportives (inclus centres de tir à l'arc)": cte.SPORTS_LOCATION, - "Autres aménagements d'assemblées publiques": cte.OFFICE_AND_ADMINISTRATION, - "Autres aménagements publics pour différentes activités": cte.OFFICE_AND_ADMINISTRATION, - "Autres aéroports": cte.WAREHOUSE, - "Autres bases et réserves militaires": cte.WAREHOUSE, - "Autres centres de recherche": cte.SECONDARY_SCHOOL, - "Autres centres de services sociaux ou bureaux de travailleurs sociaux": cte.OFFICE_AND_ADMINISTRATION, - "Autres centres et réseaux de télévision et de radiodiffusion (système combiné)": cte.MEDIUM_OFFICE, - "Autres entreposages": cte.WAREHOUSE, - "Autres espaces de plancher inoccupé": cte.WAREHOUSE, - "Autres espaces de terrain et étendues d'eau inexploités": cte.WAREHOUSE, - "Autres expositions d'objets culturels": cte.EVENT_LOCATION, - "Autres immeubles résidentiels": cte.MID_RISE_APARTMENT, - "Autres industries d'appareils d'éclairage": cte.INDUSTRY, - "Autres industries de boissons": cte.INDUSTRY, - "Autres industries de la fabrication d'éléments de charpentes métalliques": cte.INDUSTRY, - "Autres industries de la fonte et de l'affinage de métaux non-ferreux": cte.INDUSTRY, - "Autres industries de la machinerie industrielle et de l'équipement industriel": cte.INDUSTRY, - "Autres industries de pièces et d'accessoires pour véhicules automobiles": cte.INDUSTRY, - "Autres industries de produits alimentaires": cte.INDUSTRY, - "Autres industries de produits alimentaires à base de fruits et de légumes": cte.INDUSTRY, - "Autres industries de produits chimiques": cte.INDUSTRY, - "Autres industries de produits du pétrole et du charbon": cte.INDUSTRY, - "Autres industries de produits en béton": cte.INDUSTRY, - "Autres industries de produits en caoutchouc": cte.INDUSTRY, - "Autres industries de produits en fil métallique": cte.INDUSTRY, - "Autres industries de produits en plastique": cte.INDUSTRY, - "Autres industries de produits manufacturés": cte.INDUSTRY, - "Autres industries de produits métalliques d'ornement et d'architecture": cte.INDUSTRY, - "Autres industries de produits métalliques divers": cte.INDUSTRY, - "Autres industries de produits textiles": cte.INDUSTRY, - "Autres industries de produits électriques.": cte.INDUSTRY, - "Autres industries de vêtements coupés cousus pour femmes et filles": cte.INDUSTRY, - "Autres industries du bois": cte.INDUSTRY, - "Autres industries du laminagedu moulage et de l'extrusion de métaux non-ferreux": cte.INDUSTRY, - "Autres industries du matériel de transport": cte.INDUSTRY, - "Autres industries du matériel scientifique et professionnel": cte.INDUSTRY, - "Autres industries du matériel électrique d'usage industriel": cte.INDUSTRY, - "Autres industries du matériel électronique et de communication": cte.INDUSTRY, - "Autres industries du meuble de bureau": cte.INDUSTRY, - "Autres industries du meuble et d'articles d'ameublement": cte.INDUSTRY, - "Autres industries du meuble résidentiel.": cte.INDUSTRY, - "Autres industries du papier": cte.INDUSTRY, - "Autres industries sidérurgiques": cte.INDUSTRY, - "Autres infrastructures de transport maritime": cte.INDUSTRY, - "Autres installations inhérentes aux ordures": cte.WAREHOUSE, - "Autres installations pour les sports": cte.SPORTS_LOCATION, - "Autres institutions de formation spécialisée (inclus écoles de langues de coutured'arts martiaux de combats et autres)": cte.SECONDARY_SCHOOL, - "Autres lieux d'assemblée pour les loisirs": cte.OFFICE_AND_ADMINISTRATION, - "Autres locaux de groupes": cte.OFFICE_AND_ADMINISTRATION, - "Autres maisons d'institutions religieuses": cte.OFFICE_AND_ADMINISTRATION, - "Autres maisons et locaux fraternels": cte.OFFICE_AND_ADMINISTRATION, - "Autres maisons pour personnes retraitées": cte.OFFICE_AND_ADMINISTRATION, - "Autres parcs": cte.WAREHOUSE, - "Autres routes et voies publiques": cte.WAREHOUSE, - "Autres résidences d'étudiants": cte.DORMITORY, - "Autres résidences provisoires": cte.DORMITORY, - "Autres services connexes aux valeurs mobilières et aux marchandises": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Autres services d'affaires": cte.MEDIUM_OFFICE, - "Autres services d'aqueduc et d'irrigation": cte.WAREHOUSE, - "Autres services de construction de bâtiments": cte.WAREHOUSE, - "Autres services de génie civil (entrepreneur général)": cte.WAREHOUSE, - "Autres services de l'automobile": cte.WAREHOUSE, - "Autres services de location (sauf entreposage)": cte.WAREHOUSE, - "Autres services de nettoyage": cte.WAREHOUSE, - "Autres services de réparation et d'entretien d'articles personnels et ménagers": cte.STAND_ALONE_RETAIL, - "Autres services de soins thérapeutiques": cte.OUT_PATIENT_HEALTH_CARE, - "Autres services de travaux de construction spécialisés": cte.WAREHOUSE, - "Autres services de travaux de finition de bâtiment (entrepreneur spécialisé)": cte.WAREHOUSE, - "Autres services de télécommunications": cte.STAND_ALONE_RETAIL, - "Autres services divers": cte.WAREHOUSE, - "Autres services du pétrole": cte.WAREHOUSE, - "Autres services gouvernementaux": cte.OFFICE_AND_ADMINISTRATION, - "Autres services immobiliersfinanciers et d'assurance": cte.OFFICE_AND_ADMINISTRATION, - "Autres services médicaux et de santé": cte.OUT_PATIENT_HEALTH_CARE, - "Autres services personnels": cte.OUT_PATIENT_HEALTH_CARE, - "Autres services pour animaux domestiques": cte.OUT_PATIENT_HEALTH_CARE, - "Autres services pour le transport": cte.WAREHOUSE, - "Autres services pour les bâtiments": cte.WAREHOUSE, - "Autres services professionnels": cte.OFFICE_AND_ADMINISTRATION, - "Autres services publics (infrastructure)": cte.WAREHOUSE, - "Autres services reliés à la foresterie": cte.WAREHOUSE, - "Autres terrains de jeux et pistes athlétiques": cte.SPORTS_LOCATION, - "Autres transports par avion (infrastructure)": cte.WAREHOUSE, - "Autres transports par véhicule automobile": cte.WAREHOUSE, - "Autres transportscommunications et services publics (infrastructure)": cte.GREEN_HOUSE, - "Autres types de production végétale": cte.GREEN_HOUSE, - "Autres ventes au détail de marchandises en général": cte.STAND_ALONE_RETAIL, - "Autres établissements avec service complet ou restreint": cte.STAND_ALONE_RETAIL, - "Autres établissements de débits de boissons alcoolisées": cte.STAND_ALONE_RETAIL, - "Aéroport et aérodrome": cte.EVENT_LOCATION, - "Bar à crème glacée": cte.QUICK_SERVICE_RESTAURANT, - "Bar à spectacles": cte.FULL_SERVICE_RESTAURANT, - "Bibliothèque": cte.OFFICE_AND_ADMINISTRATION, - "Bureau de poste": cte.OFFICE_AND_ADMINISTRATION, - "Bâtiment incendié et inutilisable": cte.NON_HEATED, - "C.E.G.E.P. (collège d'enseignement général et professionnel)": cte.SECONDARY_SCHOOL, - "Centre commercial de quartier (15 à 44 magasins)": cte.STRIP_MALL, - "Centre commercial de voisinage (14 magasins et moins)": cte.STAND_ALONE_RETAIL, - "Centre commercial local (45 à 99 magasins)": cte.STRIP_MALL, - "Centre commercial régional (100 à 199 magasins)": cte.STRIP_MALL, - "Centre commercial super régional (200 magasins et plus)": cte.STRIP_MALL, - "Centre communautaire ou de quartier (inclus Centre diocésain)": cte.OFFICE_AND_ADMINISTRATION, - "Centre d'accueil ou établissement curatif (inclus centre de réadaptation pour handicapés physiques et mentaux)": cte.OUT_PATIENT_HEALTH_CARE, - "Centre d'appels téléphoniques": cte.MEDIUM_OFFICE, - "Centre d'entraide et de ressources communautaires (inclus ressources d'hébergement de meubles et d'alimentation)": cte.OUT_PATIENT_HEALTH_CARE, - "Centre d'entreposage de produits pétroliers (pétrole brutgaz pétrole liquéfiémazout domestique et autres produits raffinés)": cte.WAREHOUSE, - "Centre d'entreposage du gaz (avant distrib.aux consommateurs)": cte.WAREHOUSE, - "Centre de distribution ou d'expédition de marchandises diverses": cte.WAREHOUSE, - "Centre de recherche d'activités émergentes (inclus technologies langagières et la photonique)": cte.SECONDARY_SCHOOL, - "Centre de santé (inclus saunas spas et bains thérapeutiques ou turcs)": cte.OUT_PATIENT_HEALTH_CARE, - "Centre de services sociaux (C.S.S. et C.R.S.S.S.)": cte.OUT_PATIENT_HEALTH_CARE, - "Centre de transfert ou d'entreposage de déchets dangereux": cte.WAREHOUSE, - "Centre de tri postal": cte.WAREHOUSE, - "Centre de vérification technique d'automobiles et d'estimation": cte.WAREHOUSE, - "Centre local de services communautaires (C.L.S.C.)": cte.OFFICE_AND_ADMINISTRATION, - "Centre militaire de transport et d'entreposage": cte.WAREHOUSE, - "Centre récréatif en général (activités récréatives diversifiées pour tous groupes d'âge)": cte.EVENT_LOCATION, - "Centre sportif multidisciplinaire (couvert).": cte.SPORTS_LOCATION, - "Chalet ou maison de villégiature": cte.SINGLE_FAMILY_HOUSE, - "Chemin de fer (sauf train touristiqueaiguillage et cour de triage)": cte.WAREHOUSE, - "Cimetière": cte.WAREHOUSE, - "Cinéma": cte.EVENT_LOCATION, - "Clinique médicale (cabinet de médecins généralistes)": cte.OUT_PATIENT_HEALTH_CARE, - "Commission scolaire": cte.OFFICE_AND_ADMINISTRATION, - "Conserveriemarinagesaumurage et séchage de fruits et de légumes": cte.WAREHOUSE, - "Construction d'immeubles pour revente": cte.WAREHOUSE, - "Couvent": cte.EVENT_LOCATION, - "Dépanneur (sans vente d'essence)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Entreposage de tout genre": cte.WAREHOUSE, - "Entreposage du mobilier et d'appareils ménagersincluant les mini-entrepôts": cte.WAREHOUSE, - "Entreposage en vrac à l'extérieur": cte.WAREHOUSE, - "Entreposage frigorifique (sauf les armoires frigorifiques)": cte.WAREHOUSE, - "Entreprise d'excavationde nivellementde défrichage et installation de fosses septiques": cte.WAREHOUSE, - "Entrepôt pour le transport par camion": cte.WAREHOUSE, - "Entretien et équipement de chemins de fer": cte.WAREHOUSE, - "Espace de plancher inoccupé dont l'usage serait commercial autre": cte.NON_HEATED, - "Espace de plancher inoccupé dont l'usage serait industriel": cte.NON_HEATED, - "Espace de plancher inoccupé dont l'usage serait pour des fins culturelles": cte.NON_HEATED, - "Espace de plancher inoccupé dont l'usage serait pour services publics": cte.NON_HEATED, - "Espace de rangement (condo non résidentiel)": cte.NON_HEATED, - "Espace de rangement (condo)": cte.NON_HEATED, - "Espace de terrain non aménagé et non exploité (sauf l'exploitation non commerciale de la forêt)": cte.NON_HEATED, - "Espace pour le séchage des boues provenant de l'usine d'épuration": cte.WAREHOUSE, - "Fabrication de crème glacée et de desserts congelés": cte.INDUSTRY, - "Fondations et organismes de charité": cte.OFFICE_AND_ADMINISTRATION, - "Galerie d'art": cte.EVENT_LOCATION, - "Garage d'autobus et équipement d'entretien": cte.WAREHOUSE, - "Garage de stationnement pour automobiles (infrastructure)": cte.WAREHOUSE, - "Garage de stationnement pour véhicules lourds (Infrastructure)": cte.WAREHOUSE, - "Garage et équipement d'entretien pour le transport par camion (incluant garages municipaux)": cte.WAREHOUSE, - "Gare d'autobus pour passagers": cte.WAREHOUSE, - "Gare de chemins de fer": cte.WAREHOUSE, - "Gymnase et formation athlétique": cte.SPORTS_LOCATION, - "Hangar à avion": cte.WAREHOUSE, - "Hôtel (incluant les hôtels-motels)": cte.SMALL_HOTEL, - "Hôtel résidentiel": cte.SMALL_HOTEL, - "Immeuble commercial": cte.STAND_ALONE_RETAIL, - "Immeuble non résidentiel en construction": cte.NON_HEATED, - "Immeuble résidentiel en construction": cte.RESIDENTIAL, - "Immeuble à bureaux": cte.MEDIUM_OFFICE, - "Immeuble à temps partagé («time share») Propriété ou copropriété ou groupe d'usufruitier ont chacun droit de jouissancepériodique et successif.": cte.MEDIUM_OFFICE, - "Incinérateur": cte.INDUSTRY, - "Industrie d'accessoires vestimentaires et d'autres vêtements": cte.INDUSTRY, - "Industrie d'alcools destinés à la consommation (distillerie)": cte.INDUSTRY, - "Industrie d'appareils d'éclairage (sauf ampoules et tubes)": cte.INDUSTRY, - "Industrie d'appareils orthopédiques et chirurgicaux": cte.INDUSTRY, - "Industrie d'armoires de placards de cuisine et de coiffeuses de salle de bains en bois": cte.INDUSTRY, - "Industrie d'articles de maison en textile et d'articles d'hygiène en textile": cte.INDUSTRY, - "Industrie d'articles de sport et d'athlétisme": cte.INDUSTRY, - "Industrie d'assaisonnements et de vinaigrettes": cte.INDUSTRY, - "Industrie d'autres produits de boulangerie et de pâtisseries": cte.INDUSTRY, - "Industrie d'autres vêtements coupés cousus pour hommes et garçons": cte.INDUSTRY, - "Industrie d'engrais chimique et d'engrais composé": cte.INDUSTRY, - "Industrie d'enseignes au néon (excluant les enseignes en bois) éclairage interne": cte.INDUSTRY, - "Industrie d'équipements de télécommunication": cte.INDUSTRY, - "Industrie de bas et de chaussettes": cte.INDUSTRY, - "Industrie de boissons gazeuses": cte.INDUSTRY, - "Industrie de boîtes en carton ondulé et en carton compact": cte.INDUSTRY, - "Industrie de boîtes pliantes et rigides": cte.INDUSTRY, - "Industrie de carrosseries de véhicules automobiles": cte.INDUSTRY, - "Industrie de chaudièresd'échangeurs de chaleur et de plaques métalliques": cte.INDUSTRY, - "Industrie de contenants en plastique (sauf en mousse)": cte.INDUSTRY, - "Industrie de contreplaqués en bois": cte.INDUSTRY, - "Industrie de fabrication de gaz industriel": cte.INDUSTRY, - "Industrie de fils et de câbles électriques": cte.INDUSTRY, - "Industrie de filés et de tissus tissés (coton)": cte.INDUSTRY, - "Industrie de garnitures et de raccords de plomberie en métal": cte.INDUSTRY, - "Industrie de jouets et de jeux": cte.INDUSTRY, - "Industrie de l'abattage et du conditionnement de la viande (sauf la volaille et le petit gibier)": cte.INDUSTRY, - "Industrie de l'abattage et du conditionnement de la volaille et du petit gibier": cte.INDUSTRY, - "Industrie de l'impression de formulaires commerciaux": cte.INDUSTRY, - "Industrie de l'équipement de manutention": cte.INDUSTRY, - "Industrie de l'étirage de l'extrusion et alliage de l'aluminiumfabriqué à partir d'aluminium acheté": cte.INDUSTRY, - "Industrie de la bijouterie et de l'orfèvrerie (sauf l'affinage secondaire de métaux précieux)": cte.INDUSTRY, - "Industrie de la bière": cte.INDUSTRY, - "Industrie de la chaussure": cte.INDUSTRY, - "Industrie de la confection à forfait de vêtements pour femmes et filles": cte.INDUSTRY, - "Industrie de la construction et de la réparation de navires": cte.INDUSTRY, - "Industrie de la fabrication de supports d'enregistrement de la reproduction du son et des instruments de musique": cte.INDUSTRY, - "Industrie de la glace": cte.INDUSTRY, - "Industrie de la machinerie pour la construction et du matériel d'entretien": cte.INDUSTRY, - "Industrie de la préparation et du conditionnement de poissons et de fruits de mer": cte.INDUSTRY, - "Industrie de la quincaillerie de base": cte.INDUSTRY, - "Industrie de la transformation de la viande et de la fonte des graisses animales": cte.INDUSTRY, - "Industrie de la tôlerie pour ventilation": cte.INDUSTRY, - "Industrie de lampes électriques (ampoules et tubes)": cte.INDUSTRY, - "Industrie de moteurs et de pièces de moteurs de véhicules automobiles": cte.INDUSTRY, - "Industrie de mélange de farine et de pâte": cte.INDUSTRY, - "Industrie de peinturede teinture et de vernis": cte.INDUSTRY, - "Industrie de pellicules et de feuilles non renforcées en plastique": cte.INDUSTRY, - "Industrie de pièces en plastique pour véhicules automobiles": cte.INDUSTRY, - "Industrie de pièces et de composantes électroniques": cte.INDUSTRY, - "Industrie de pneus et de chambres à air": cte.INDUSTRY, - "Industrie de portes et de fenêtres en métal": cte.INDUSTRY, - "Industrie de portes et fenêtres en plastique": cte.INDUSTRY, - "Industrie de produits chimiques inorganiques d'usage industriel": cte.INDUSTRY, - "Industrie de produits d'architecture en plastique": cte.INDUSTRY, - "Industrie de produits de boulangerie commerciale de produits de boulangerie congelés et de pâtisseries": cte.INDUSTRY, - "Industrie de produits de toilette": cte.INDUSTRY, - "Industrie de produits en pierre": cte.INDUSTRY, - "Industrie de produits en plastique stratifié sous pression ou renforcé": cte.INDUSTRY, - "Industrie de produits en verre fabriqué à partir de verre acheté": cte.INDUSTRY, - "Industrie de produits pharmaceutiques et de médicaments": cte.INDUSTRY, - "Industrie de produits pétrochimiques": cte.INDUSTRY, - "Industrie de produits pétroliers raffinés (sauf les huiles de graissage et les graisses lubrifiantes)": cte.INDUSTRY, - "Industrie de pâtes alimentaires sèches": cte.INDUSTRY, - "Industrie de récipients et de boîtes en métal": cte.INDUSTRY, - "Industrie de résines synthétiques et de caoutchouc synthétique": cte.INDUSTRY, - "Industrie de sacs et de poches en matière textile": cte.INDUSTRY, - "Industrie de sacs et de sachets en plastique": cte.INDUSTRY, - "Industrie de savons et de détachants pour le nettoyage": cte.INDUSTRY, - "Industrie de sommiers et de matelas": cte.INDUSTRY, - "Industrie de soupapes en métal": cte.INDUSTRY, - "Industrie de tapis carpettes et moquettes": cte.INDUSTRY, - "Industrie de tous les autres produits divers en bois": cte.INDUSTRY, - "Industrie de tous les autres produits en papier transformé (sauf pour le bureau)": cte.INDUSTRY, - "Industrie de ventilateursde soufflantes et de purificateurs d'air industriels et commerciaux": cte.INDUSTRY, - "Industrie de vêtements de sport pour femmes et filles": cte.INDUSTRY, - "Industrie de vêtements professionnels coupés cousus": cte.INDUSTRY, - "Industrie des pièces et accessoires d'aéronefs (incluant avions et hélicoptères)": cte.INDUSTRY, - "Industrie du béton préparé": cte.INDUSTRY, - "Industrie du cannabis": cte.INDUSTRY, - "Industrie du ciment": cte.INDUSTRY, - "Industrie du clichagede la composition de la reliure et de la lithographie": cte.INDUSTRY, - "Industrie du fromage": cte.INDUSTRY, - "Industrie du lait de consommation": cte.INDUSTRY, - "Industrie du laminagede l'étirage et de l'extrusion du cuivre et de ses alliages": cte.INDUSTRY, - "Industrie du matériel de chauffage et du matériel de réfrigération commerciale": cte.INDUSTRY, - "Industrie du matériel de transport": cte.INDUSTRY, - "Industrie du matériel ferroviaire roulant": cte.INDUSTRY, - "Industrie du matériel électrique de communication et de protection": cte.INDUSTRY, - "Industrie du meuble de maison en bois": cte.INDUSTRY, - "Industrie du meuble et d'articles d'ameublement pour hôtelsrestaurants et institutions": cte.INDUSTRY, - "Industrie du pain": cte.INDUSTRY, - "Industrie du revêtement métallique sur commande": cte.INDUSTRY, - "Industrie du sucre de canne et de betterave à sucre": cte.INDUSTRY, - "Industrie du thé et du café": cte.INDUSTRY, - "Industries des appareils d'aéronefs (incluant avions et hélicoptères)": cte.INDUSTRY, - "Installation d'équipements de réfrigération commerciale": cte.WAREHOUSE, - "Installation portuaire en général": cte.WAREHOUSE, - "Jardin botanique": cte.WAREHOUSE, - "Ligne de l'oléoduc": cte.WAREHOUSE, - "Local pour les associations fraternelles": cte.EVENT_LOCATION, - "Logement": cte.RESIDENTIAL, - "Logement vacant dans un bâtiment comportant plusieurs logements ou autres locaux": cte.RESIDENTIAL, - "Loisir et autres activités culturelles": cte.HALL, - "Maison d'agents de courtiers et de services d'administration des biens-fonds": cte.MEDIUM_OFFICE, - "Maison d'étudiants (collège et université)": cte.DORMITORY, - "Maison de chambres et pension": cte.DORMITORY, - "Maison de chambres pour personnes ayant une déficience intellectuelle": cte.DORMITORY, - "Maison de courtiers et de négociants de marchandises": cte.MEDIUM_OFFICE, - "Maison de réhabilitation": cte.HOSPITAL, - "Maison des jeunes": cte.HALL, - "Maison pour personnes en difficulté (séjours périodes limitées)": cte.HOSPITAL, - "Maison pour personnes retraitées autonomes": cte.DORMITORY, - "Maison pour personnes retraitées non autonomes (inclus les CHLSD)": cte.DORMITORY, - "Marché public": cte.STRIP_MALL, - "Meunerie et minoterie": cte.MEDIUM_OFFICE, - "Monastère": cte.DORMITORY, - "Monument et site historique": cte.EVENT_LOCATION, - "Motel": cte.SMALL_HOTEL, - "Musée": cte.EVENT_LOCATION, - "Organisme international et autres organismes extraterritoriaux": cte.MEDIUM_OFFICE, - "Parc d'amusement (extérieur)": cte.NON_HEATED, - "Parc de maisons mobiles (fonds de terre seulement)": cte.NON_HEATED, - "Parc pour la récréation en général": cte.NON_HEATED, - "Parc à caractère récréatif et ornemental": cte.NON_HEATED, - "Passage": cte.NON_HEATED, - "Piscine extérieure et activités connexes": cte.NON_HEATED, - "Piscine intérieure et activités connexes": cte.SPORTS_LOCATION, - "Pose et réparation de parement métalliques et autres (entrepreneur spécialisé)": cte.WAREHOUSE, - "Poste et bureau de douanes": cte.OFFICE_AND_ADMINISTRATION, - "Pouponnière ou garderie de nuit": cte.HOSPITAL, - "Presbytère": cte.OFFICE_AND_ADMINISTRATION, - "Prison provinciale": cte.DORMITORY, - "Protection contre l'incendie et activités connexes": cte.WAREHOUSE, - "Raffinerie de pétrole": cte.INDUSTRY, - "Restaurant et établissement avec service complet (avec terrasse) - Établissements avec permis alcool inclus pub café et brasserie": cte.FULL_SERVICE_RESTAURANT, - "Restaurant et établissement avec service complet (sans terrasse) -Établissements avec permis alcoolinclus pub café et brasserie": cte.FULL_SERVICE_RESTAURANT, - "Restaurant et établissement avec service restreint ( commande au comptoir ou par téléphone)": cte.QUICK_SERVICE_RESTAURANT, - "Restaurant et établissement offrant des repas à libre-service (cafétéria cantine)": cte.QUICK_SERVICE_RESTAURANT, - "Rue et avenue pour l'accès local": cte.NON_HEATED, - "Ruelle": cte.NON_HEATED, - "Récupération et triage de matières polluantes et toxiques": cte.WAREHOUSE, - "Récupération et triage de métaux": cte.WAREHOUSE, - "Réparation et entretien des avions": cte.WAREHOUSE, - "Réserve pour la protection de la faune": cte.NON_HEATED, - "Réservoir d'eau (installation d'emmagasinage de l'eau par retenue et réservoirs)": cte.NON_HEATED, - "Résidence de tourismeappartement maison ou chalet (meublé et équipé pour repas)": cte.SMALL_HOTEL, - "Salle d'exposition": cte.EVENT_LOCATION, - "Salle et terrain de squash de racquetball et de tennis": cte.SPORTS_LOCATION, - "Salle ou salon de quilles": cte.NON_HEATED, - "Salon de beauté (maquillagemanucureetc..)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Salon de coiffure": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Salon funéraire": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Service bancaire (dépôts et prêtsincluant banque à charte)": cte.OFFICE_AND_ADMINISTRATION, - "Service d'ambulance": cte.WAREHOUSE, - "Service d'architecture": cte.OFFICE_AND_ADMINISTRATION, - "Service d'assainissement de l'environnement": cte.WAREHOUSE, - "Service d'emballage et de protection de marchandises": cte.WAREHOUSE, - "Service d'envoi de marchandises": cte.WAREHOUSE, - "Service d'hébergement des données (sites Web diffusion audio et vidéo en continu services d'application)": cte.WAREHOUSE, - "Service d'hôpital (inclus hôpitaux psychiatriques)": cte.HOSPITAL, - "Service d'optométrie": cte.OUT_PATIENT_HEALTH_CARE, - "Service de buanderie de nettoyage à sec et de teinture (sauf les tapis)": cte.WAREHOUSE, - "Service de comptabilitéde vérification et de tenue de livre": cte.OFFICE_AND_ADMINISTRATION, - "Service de construction de routesde rues et de pontsde trottoirs et de pistes (entrepreneur général)": cte.WAREHOUSE, - "Service de construction non résidentiellecommerciale et institutionnelle (entrepreneur général)": cte.WAREHOUSE, - "Service de construction non résidentielleindustrielle (entrepreneur général)": cte.WAREHOUSE, - "Service de construction résidentielle (entrepreneur)": cte.WAREHOUSE, - "Service de débosselage et de peinture d'automobiles": cte.WAREHOUSE, - "Service de garderie (prématernelle moins de 50 % de poupons)": cte.PRIMARY_SCHOOL, - "Service de génie": cte.OFFICE_AND_ADMINISTRATION, - "Service de holding et d'investissement et de fiducie": cte.OFFICE_AND_ADMINISTRATION, - "Service de laboratoire dentaire": cte.OUT_PATIENT_HEALTH_CARE, - "Service de laboratoire médical": cte.OUT_PATIENT_HEALTH_CARE, - "Service de lavage d'automobiles": cte.WAREHOUSE, - "Service de limousine": cte.WAREHOUSE, - "Service de lingerie et de buanderie industrielle": cte.WAREHOUSE, - "Service de location d'automobiles": cte.WAREHOUSE, - "Service de location d'outils ou d'équipements": cte.WAREHOUSE, - "Service de location d'équipements": cte.WAREHOUSE, - "Service de location de boites postales (sauf le publipostage) et centre de courrier privé": cte.OFFICE_AND_ADMINISTRATION, - "Service de location de camions de remorques utilitaires et de véhicules de plaisance": cte.WAREHOUSE, - "Service de maçonnerie (entrepreneur spécialisé)": cte.INDUSTRY, - "Service de messagers": cte.MEDIUM_OFFICE, - "Service de notaires": cte.MEDIUM_OFFICE, - "Service de paysagement ou de déneigement": cte.WAREHOUSE, - "Service de petite menuiserie et de finition (entrepreneur spécialisé)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Service de plomberie de chauffagede climatisation et de ventilation (entrepreneur spécialisé)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Service de police fédérale et activités connexes": cte.OFFICE_AND_ADMINISTRATION, - "Service de police municipale et activités connexes": cte.OFFICE_AND_ADMINISTRATION, - "Service de pose de portesde fenêtres et de panneaux de verre": cte.WAREHOUSE, - "Service de publicité en général": cte.MEDIUM_OFFICE, - "Service de recherche de développement et d'essais": cte.SECONDARY_SCHOOL, - "Service de remplacement de pièces et d'accessoires d'automobiles (amortisseurs silencieux toits ouvrants glacespare-brises...)": cte.WAREHOUSE, - "Service de revêtement en asphalte et en bitume": cte.WAREHOUSE, - "Service de réparation d'automobiles (garage) sans pompes à essence(5531)": cte.WAREHOUSE, - "Service de réparation d'autres véhicules légers": cte.WAREHOUSE, - "Service de réparation de véhicules légers motorisés (motocyclettemotoneige véhicule tout terrain)": cte.WAREHOUSE, - "Service de réparation et d'entretien de machines et de matériel d'usage commercial et industriel": cte.WAREHOUSE, - "Service de réparation et d'entretien de matériel informatique": cte.COMMERCIAL, - "Service de réparation et d'entretien de systèmes de plomberieschauffageventilation et climatisation.(entrepreneur spécialisé)": cte.WAREHOUSE, - "Service de réparation et d'entretien de véhicules lourds": cte.WAREHOUSE, - "Service de réparation et de rembourrage de meubles": cte.WAREHOUSE, - "Service de soudure": cte.WAREHOUSE, - "Service de toilettage pour animaux domestiques": cte.OUT_PATIENT_HEALTH_CARE, - "Service de traitement pour automobiles (antirouilleetc.)": cte.WAREHOUSE, - "Service de travaux d'électricité et installation de câblage (entrepreneur spécialisé)": cte.WAREHOUSE, - "Service de travaux de toiture (entrepreneur spécialisé)": cte.WAREHOUSE, - "Service de télécommunication sans fil (appareil mobile sauf par Internet)": cte.WAREHOUSE, - "Service de vétérinaires (animaux domestiques)": cte.OUT_PATIENT_HEALTH_CARE, - "Service de vétérinaires et d'hôpital pour animaux de ferme": cte.OUT_PATIENT_HEALTH_CARE, - "Service dentaire (inclus chirurgie et hygiène)": cte.OUT_PATIENT_HEALTH_CARE, - "Service en santé mentale (cabinet) (comprend tous services professionnelspsychiatre psychologuepsychanalyste)": cte.OUT_PATIENT_HEALTH_CARE, - "Service en travaux de fondation et de structures en béton (entrepreneur spécialisé)": cte.WAREHOUSE, - "Service informatique (location ou utilisation partagée services auxiliaires programmation planification et analyse de système)": cte.MEDIUM_OFFICE, - "Service médical (cabinet de médecins et chirurgiens spécialisés)": cte.OUT_PATIENT_HEALTH_CARE, - "Service photographique (incluant les services commerciaux)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Service pour l'entretien ménager": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Service éducationnel et de recherche scientifique": cte.SECONDARY_SCHOOL, - "Services spécialisés reliés à l'activité bancaire": cte.OFFICE_AND_ADMINISTRATION, - "Stade": cte.SPORTS_LOCATION, - "Station de contrôle de la pression de l'eau": cte.WAREHOUSE, - "Station de contrôle de la pression des eaux usées": cte.WAREHOUSE, - "Station de métro": cte.WAREHOUSE, - "Station libre-serviceou avec service et dépanneur sans réparation de véhicules automobiles": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Station libre-serviceou avec service sans réparation de véhicules automobiles": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Station-service avec réparation de véhicules automobiles": cte.WAREHOUSE, - "Stationnement extérieur (condo non résidentiel)": cte.NON_HEATED, - "Stationnement extérieur (condo)": cte.NON_HEATED, - "Stationnement intérieur ( condo non résidentiel)": cte.WAREHOUSE, - "Stationnement intérieur (condo)": cte.WAREHOUSE, - "Studio d'enregistrement du son (disque cassette et disque compact)": cte.MEDIUM_OFFICE, - "Studio de production de filmsde vidéos ou de publicités (ne comprends pas le laboratoire de production)": cte.MEDIUM_OFFICE, - "Studio de télévision (sans public)": cte.MEDIUM_OFFICE, - "Syndicat et organisation similaire": cte.MEDIUM_OFFICE, - "Terminus maritime (passagers) incluant les gares de traversiers": cte.WAREHOUSE, - "Terrain de golf (avec chalet et autres aménagements sportifs)": cte.NON_HEATED, - "Terrain de sport (jeux et pistes pour compétitions et sportgradins)": cte.NON_HEATED, - "Terrain de stationnement pour automobiles": cte.WAREHOUSE, - "Terrains de stationnement pour véhicules lourds": cte.WAREHOUSE, - "Théâtre": cte.EVENT_LOCATION, - "Tour de relais (micro-ondes)": cte.NON_HEATED, - "Tous les autres services d'information": cte.NON_HEATED, - "Transport et gestion d'électricité en bloc": cte.NON_HEATED, - "Transport et gestion du gaz par canalisation": cte.NON_HEATED, - "Université": cte.SECONDARY_SCHOOL, - "Usine de traitement des eaux (filtration)": cte.INDUSTRY, - "Usine de traitement des eaux usées (épuration)": cte.INDUSTRY, - "Vente au détail (fleuriste)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail d'accessoires pour femmes": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail d'animaux de maison (animalerie)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail d'antiquités (sauf le marché aux puces)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail d'appareils orthopédiques et articles spécialisés de santé": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail d'articles de sport": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail d'articles d'accessoires d'aménagement paysager et de jardin": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail d'instruments et de matériel médical": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail d'équipements de ferme": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail d'équipements de plomberie de chauffagede ventilationde climatisation et de foyer": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail d'équipements et d'accessoires de chasse et pêche": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de bicyclettes": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de boissons alcoolisées": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de chaussures": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de fruits et de légumes": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, - "Vente au détail de la viande": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, - "Vente au détail de livres et de papeterie": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de marchandises en général (sauf les marchés aux puces)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de matériaux de construction": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de matériaux de construction (cour à bois)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de matériel électrique": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de meubles": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de motocyclettes de motoneiges et de leurs accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de médicaments et d'articles divers (pharmacie)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de peinturede verre et de papier tenture": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de piscinesde spas et leurs accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de pièces de véhicules automobiles et d'accessoires usagés": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de pneus de batteries et d'accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de produits d'épicerie (avec boucherie)": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, - "Vente au détail de produits d'épicerie (sans boucherie)": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, - "Vente au détail de produits de la boulangerie et de la pâtisserie (manufacturés sur place en totalité ou non)": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, - "Vente au détail de quincaillerie": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de radiosde téléviseurssystèmes de son et appareils électroniques": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de revêtements de planchers et de murs (bois franc plancher flottant carreaux céramiques tapisserie)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de serruresde clés et d'accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de véhicules automobiles neufs et usagés": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de véhicules automobiles usagés seulement": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de vêtement prêt-à-porter pour femmes": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de vêtements et d'accessoires pour hommes": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de vêtements et d'articles usagésfriperies (sauf le marché aux puces)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de vêtements unisexes": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail du cafédu théd'épices et d'aromates": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, - "Vente au détailclubs de gros et hypermarchés (entrepôt-club)": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, - "Vente au détailfournitures pour la maison et l'auto": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détailmagasin à rayons": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente en gros d'ameublements de matériels de bureau et de magasin": cte.STRIP_MALL, - "Vente en gros d'appareils et d'équipements de plomberie et de chauffage": cte.STRIP_MALL, - "Vente en gros d'appareils et d'équipements électriques de fils et de matériel électronique de construction": cte.STRIP_MALL, - "Vente en gros d'appareils électriquesde téléviseurs et de radios": cte.STRIP_MALL, - "Vente en gros d'automobiles et autres véhicules automobiles neufs ou d'occasions incluent VR)": cte.STRIP_MALL, - "Vente en gros d'autres appareils ou matériels électriques et électroniques": cte.STRIP_MALL, - "Vente en gros d'autres médicaments de produits chimiques et de produits connexes": cte.STRIP_MALL, - "Vente en gros d'autres pièces d'équipement ou de machinerie (incluant machinerie lourde)": cte.STRIP_MALL, - "Vente en gros d'autres produits reliés à l'épicerie": cte.STRIP_MALL, - "Vente en gros d'équipements et de pièces de machinerie commercialeindustrielle ou agricole (incluant machinerie lourde)": cte.STRIP_MALL, - "Vente en gros d'équipements et de pièces pour la réfrigération ventilation la climatisation et le chauffage (système combiné)": cte.STRIP_MALL, - "Vente en gros d'équipements et de pièces pour les entreprises de services": cte.STRIP_MALL, - "Vente en gros de bois et de matériaux de construction": cte.STRIP_MALL, - "Vente en gros de chaussures": cte.STRIP_MALL, - "Vente en gros de fruits et de légumes frais": cte.STRIP_MALL, - "Vente en gros de médicaments et de produits médicamenteux": cte.STRIP_MALL, - "Vente en gros de pièces et d'accessoires neufs pour véhicules automobiles": cte.STRIP_MALL, - "Vente en gros de pièces et d'équipements électroniques": cte.STRIP_MALL, - "Vente en gros de pneus et de chambres à air": cte.STRIP_MALL, - "Vente en gros de poissons et de fruits de mer": cte.STRIP_MALL, - "Vente en gros de produits de beauté": cte.STRIP_MALL, - "Vente en gros de produits de boulangerie et de pâtisserie": cte.STRIP_MALL, - "Vente en gros de produits laitiers": cte.STRIP_MALL, - "Vente en gros de quincaillerie": cte.STRIP_MALL, - "Vente en gros de tissus et de textiles": cte.STRIP_MALL, - "Vente en gros de viandes et de produits de la viande": cte.STRIP_MALL, - "Vente en gros de vêtements de lingerie de bas et d'accessoires": cte.STRIP_MALL, - "Vente en gros pour l'épicerie en général": cte.STRIP_MALL, - "École commerciale et de secrétariat (non intégrée aux polyvalentes)": cte.SECONDARY_SCHOOL, - "École de beaux-arts et de musique (exclus arts publicitaires arts graphiques et photographie publicitaire)": cte.SECONDARY_SCHOOL, - "École de danse": cte.SECONDARY_SCHOOL, - "École de métiers (non intégrée aux polyvalentes)": cte.SECONDARY_SCHOOL, - "École maternelle": cte.SECONDARY_SCHOOL, - "École polyvalente": cte.SECONDARY_SCHOOL, - "École secondaire": cte.SECONDARY_SCHOOL, - "École à caractère familial (exploité par une personne physique dans sa résidence moins de 15 élèves)": cte.SECONDARY_SCHOOL, - "École élémentaire": cte.SECONDARY_SCHOOL, - "École élémentaire et secondaire": cte.SECONDARY_SCHOOL, - "Église synagogue mosquée et temple": cte.EVENT_LOCATION, - "Établissement avec salle de réception ou de banquet": cte.FULL_SERVICE_RESTAURANT, - "Établissement avec service de boissons alcoolisées (Bar)": cte.QUICK_SERVICE_RESTAURANT, - "Établissement dont l'activité principale est la danse (discothèque avec service alcool boite de nuit) sans alcool code 7397": cte.QUICK_SERVICE_RESTAURANT, - "Mausolée": cte.NON_HEATED, - "Auberge ou gîte touristique (Hôtel à caractère familial, d'au plus 3 étages en hauteur de bâtiment)": cte.HOTEL, - "Service de garderie (prématernelle, moins de 50 % de poupons)": cte.PRIMARY_SCHOOL, - "Église, synagogue, mosquée et temple": cte.CONVENTION_CENTER, - - "Station libre-service, ou avec service et dépanneur sans réparation de véhicules automobiles": cte.WAREHOUSE, - "Service de buanderie, de nettoyage à sec et de teinture (sauf les tapis)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Service bancaire (dépôts et prêts, incluant banque à charte)": cte.COMMERCIAL, - "Restaurant et établissement avec service complet (avec terrasse) - Établissements avec permis alcool, inclus pub,café et brasserie": cte.FULL_SERVICE_RESTAURANT, - "Restaurant et établissement avec service complet (sans terrasse) -Établissements avec permis alcool, inclus pub,café et brasserie": cte.FULL_SERVICE_RESTAURANT, - "Autres services immobiliers, financiers et d'assurance": cte.COMMERCIAL, - "Résidence de tourisme, appartement, maison ou chalet (meublé et équipé pour repas)": cte.RESIDENTIAL, - "Salon de beauté (maquillage, manucure, etc..)": cte.COMMERCIAL, - "Service de buanderie et de nettoyage à sec (libre-service)": cte.COMMERCIAL, - "Association civique, sociale et fraternelle": cte.COMMERCIAL, - "Vente en gros d'automobiles et autres véhicules automobiles neufs ou d'occasions, incluent VR)": cte.WAREHOUSE, - "Autres services de soutien aux entreprises": cte.COMMERCIAL, - "Vente au détail de vêtements pour toute la famille": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de bijoux": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Service d'avocats": cte.MEDIUM_OFFICE, - "Service informatique (location ou utilisation partagée, services auxiliaires programmation planification et analyse de système)": cte.MEDIUM_OFFICE, - "Centre d'entraide et de ressources communautaires (inclus ressources d'hébergement, de meubles et d'alimentation)": cte.COMMERCIAL, - "Service de comptabilité, de vérification et de tenue de livre": cte.MEDIUM_OFFICE, - "Autres transports, communications et services publics (infrastructure)": cte.WAREHOUSE, - "Autres institutions de formation spécialisée (inclus écoles de langues, de couture, d'arts martiaux, de combats et autres)": cte.SECONDARY_SCHOOL, - "Chemin de fer (sauf train touristique, aiguillage et cour de triage)": cte.WAREHOUSE, - "Service d'agence de placement": cte.COMMERCIAL, - "Espace de plancher inoccupé dont l'usage serait la vente au détail": cte.NON_HEATED, - "Industrie de produits en plastique stratifié, sous pression ou renforcé": cte.INDUSTRY, - "Studio de production de films, de vidéos ou de publicités (ne comprends pas le laboratoire de production)": cte.MOTION_PICTURE_THEATRE, - "Industrie de la fabrication de supports d'enregistrement, de la reproduction du son et des instruments de musique": cte.INDUSTRY, - "Vente au détail du café, du thé, d'épices et d'aromates": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Station libre-service, ou avec service sans réparation de véhicules automobiles": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de produits de la boulangerie et de la pâtisserie (non manufacturés sur place)": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, - "Vente au détail de serrures, de clés et d'accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Autres activités de vente au détail de vêtements, comme les accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente en gros d'équipements et de pièces pour la réfrigération, ventilation, la climatisation et le chauffage (système combiné)": cte.WAREHOUSE, - "Service de réparation de véhicules légers motorisés (motocyclette, motoneige, véhicule tout terrain)": cte.WAREHOUSE, - "Service de location de camions, de remorques utilitaires et de véhicules de plaisance": cte.WAREHOUSE, - "Vente au détail d'autres articles de ferme": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, - "Salon d'esthétique (épilation, traitement de la peau)": cte.COMMERCIAL, - "Service de location de films, de jeux vidéos et de matériel audiovisuel": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, - "Vente en gros de vêtements, de lingerie, de bas et d'accessoires": cte.WAREHOUSE, - "Service d'entretien de chaussures et d'articles de cuir (cordonnerie)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de lingerie pour enfants": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail, magasin à rayons": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de vêtements et d'articles usagés, friperies (sauf le marché aux puces)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Entreposage du mobilier et d'appareils ménagers, incluant les mini-entrepôts": cte.WAREHOUSE, - "Service de construction non résidentielle, industrielle (entrepreneur général)": cte.WAREHOUSE, - "Immeuble à temps partagé («time share») Propriété ou copropriété ou groupe d'usufruitier ont chacun droit de jouissance, périodique et successif.": cte.COMMERCIAL, - "Autres activités récréatives": cte.EVENT_LOCATION, - "Industrie de produits de boulangerie commerciale, de produits de boulangerie congelés et de pâtisseries": cte.INDUSTRY, - "Studio d'enregistrement du son (disque, cassette et disque compact)": cte.COMMERCIAL, - "Autres services de soins paramédicaux": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, - "Studio de radiodiffusion (sans public)": cte.COMMERCIAL, - "Autres présentations d'objets ou d'animaux": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Autres étendues d'eau": cte.WAREHOUSE, - "Maison d'agents, de courtiers et de services d'administration des biens-fonds": cte.MEDIUM_OFFICE, - "Industrie de l'édition du livre": cte.INDUSTRY, - "Vente au détail ou location d'articles,d'accessoires de scène et de costumes": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "École de beaux-arts et de musique (exclus arts publicitaires, arts graphiques et photographie publicitaire)": cte.SECONDARY_SCHOOL, - "Vente au détail de peinture, de verre et de papier tenture": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Agence et courtier d'assurances": cte.MEDIUM_OFFICE, - "Centre de santé (inclus saunas, spas et bains thérapeutiques ou turcs)": cte.HEALTH_CARE, - "Établissement dont l'activité principale est la danse (discothèque avec service alcool, boite de nuit) sans alcool code 7397": cte.QUICK_SERVICE_RESTAURANT, - "Vente au détail de pneus, de batteries et d'accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Salle et terrain de squash, de racquetball et de tennis": cte.WAREHOUSE, - "Service de télécommunication sans fil (appareil mobile, sauf par Internet)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Centre de recherche en science physique et chimique (inclus science optique)": cte.UNIVERSITY, - "Association, union ou coop d'épargne et de prêt (inclus caisses populaires locales)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Industrie du meuble et d'articles d'ameublement pour hôtels, restaurants et institutions": cte.INDUSTRY, - "Service d'affichage à l'extérieur": cte.NON_HEATED, - "Service de traitement pour automobiles (antirouille, etc.)": cte.INDUSTRY, - "Vente au détail de revêtements de planchers et de murs (bois franc, plancher flottant, carreaux céramiques, tapisserie)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de livres et de journaux": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Autres industries du laminage, du moulage et de l'extrusion de métaux non-ferreux": cte.INDUSTRY, - "Vente au détail d'appareils ménagers": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Service de plomberie, de chauffage, de climatisation et de ventilation (entrepreneur spécialisé)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de radios, de téléviseurs, systèmes de son et appareils électroniques": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail, clubs de gros et hypermarchés (entrepôt-club)": cte.STRIP_MALL, - "Conserverie, marinage, saumurage et séchage de fruits et de légumes": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, - "Industrie de l'étirage, de l'extrusion et alliage de l'aluminium, fabriqué à partir d'aluminium acheté": cte.INDUSTRY, - "Restaurant et établissement offrant des repas à libre-service (cafétéria, cantine)": cte.QUICK_SERVICE_RESTAURANT, - "Pressage de vêtements": cte.COMMERCIAL, - "Vente au détail d'articles, d'accessoires d'aménagement paysager et de jardin": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Planétarium": cte.MUSEUM, - "Industrie de ventilateurs, de soufflantes et de purificateurs d'air industriels et commerciaux": cte.INDUSTRY, - "Service de pose de portes, de fenêtres et de panneaux de verre": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Association de personnes exerçant une même profession ou une même activité": cte.MEDIUM_OFFICE, - "Service de remplacement de pièces et d'accessoires d'automobiles (amortisseurs, silencieux,toits ouvrants, glaces, pare-brises...)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Service d'hébergement des données (sites Web, diffusion audio et vidéo en continu, services d'application)": cte.DATACENTER, - "Vente au détail de produits naturels et aliments de régime": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, - "Autres activités de vente au détail reliées aux automobiles, aux embarcations, aux avions et à leurs accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Autres lieux d'amusement": cte.EVENT_LOCATION, - "Vente en gros d'appareils et d'équipements électriques, de fils et de matériel électronique de construction": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Industrie de peinture, de teinture et de vernis": cte.INDUSTRY, - "Autres industries de l'impression et de l'édition (combinées)": cte.INDUSTRY, - "Vente en gros d'équipements et de pièces de machinerie commerciale,industrielle ou agricole (incluant machinerie lourde)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Industrie de lingerie, de vêtements de détente et de vêtements de nuit pour femmes et filles": cte.INDUSTRY, - "Vente au détail d'équipements de plomberie, de chauffage, de ventilation, de climatisation et de foyer": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Autres industries de produits minéraux non métalliques": cte.INDUSTRY, - "Entreprise d'excavation, de nivellement, de défrichage et installation de fosses septiques": cte.NON_HEATED, - "Vente au détail, fournitures pour la maison et l'auto": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Industrie d'armoires, de placards de cuisine et de coiffeuses de salle de bains en bois": cte.INDUSTRY, - "Terrain de sport (jeux et pistes pour compétitions et sport, gradins)": cte.SPORTS_LOCATION, - "Vente au détail de piscines, de spas et leurs accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Service en santé mentale (cabinet) (comprend tous services professionnels, psychiatre,psychologue, psychanalyste)": cte.HEALTH_CARE, - "Service de construction de routes, de rues et de ponts,de trottoirs et de pistes (entrepreneur général)": cte.NON_HEATED, - "Vente en gros d'appareils électriques, de téléviseurs et de radios": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Vente au détail de motocyclettes, de motoneiges et de leurs accessoires": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Industrie du meuble rembourré résidentiel (rembourrage, service de réparation, voir 6423)": cte.INDUSTRY, - "Vente au détail de jouets et d'articles de jeux": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Industrie du laminage, de l'étirage et de l'extrusion du cuivre et de ses alliages": cte.INDUSTRY, - "Archives (incluant cinémathèque, vidéothèque)": cte.WAREHOUSE_REFRIGERATED, - "Service de recherche, de développement et d'essais": cte.UNIVERSITY, - "Industrie de tapis, carpettes et moquettes": cte.INDUSTRY, - "Industrie du revêtement métallique, sur commande": cte.INDUSTRY, - "Service de réparation et d'entretien de systèmes de plomberies,chauffage, ventilation et climatisation.(entrepreneur spécialisé)": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Salle de réunions, centre de conférence et congrès": cte.CONVENTION_CENTER, - "Vente en gros d'autres médicaments, de produits chimiques et de produits connexes": cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, - "Vente au détail d'armoires de coiffeuses et de meubles d'appoint": cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, - "Industrie de chaudières, d'échangeurs de chaleur et de plaques métalliques": cte.INDUSTRY, - "Industrie du clichage, de la composition de la reliure et de la lithographie": cte.INDUSTRY, - "Service de construction non résidentielle, commerciale et institutionnelle (entrepreneur général)": cte.MEDIUM_OFFICE, - "Centre d'entreposage de produits pétroliers (pétrole brut, gaz pétrole liquéfié, mazout domestique et autres produits raffinés)": cte.WAREHOUSE, - "École à caractère familial (exploité par une personne physique dans sa résidence, moins de 15 élèves)": cte.PRIMARY_SCHOOL - } + self._dictionary = {'1000': 'residential', + '2089': 'industry', + '1921': 'warehouse', + '1922': 'non-heated', + '9100': 'non-heated', + '6000': 'medium office', + '5010': 'stand alone retail', + '9490': 'warehouse', + '4299': 'warehouse', + '6379': 'warehouse', + '5533': 'warehouse', + '6591': 'office and administration', + '6211': 'retail shop without refrigerated food', + '1511': 'dormitory', + '5833': 'hotel', + '1532': 'dormitory', + '6911': 'convention center', + '9510': 'residential', + '1990': 'mid rise apartment', + '1923': 'non-heated', + '7222': 'sports location', + '5002': 'strip mall', + '6111': 'commercial', + '6311': 'medium office', + '6399': 'medium office', + '5812': 'full service restaurant', + '4621': 'warehouse', + '1541': 'dormitory', + '7214': 'event location', + '4821': 'non-heated', + '9520': 'non-heated', + '7112': 'event location', + '6299': 'out-patient health care', + '5461': 'retail shop with refrigerated food', + '4632': 'non-heated', + '7424': 'event location', + '5811': 'full service restaurant', + '4113': 'warehouse', + '6821': 'secondary school', + '6920': 'office and administration', + '6199': 'commercial', + '5899': 'warehouse', + '5999': 'stand alone retail', + '5834': 'residential', + '2699': 'industry', + '6812': 'secondary school', + '6649': 'warehouse', + '3999': 'industry', + '1553': 'office and administration', + '6999': 'warehouse', + '6541': 'primary school', + '5831': 'small hotel', + '6919': 'office and administration', + '9900': 'warehouse', + '1551': 'event location', + '5511': 'retail shop without refrigerated food', + '6231': 'commercial', + '6221': 'retail shop without refrigerated food', + '6599': 'office and administration', + '7119': 'event location', + '6214': 'commercial', + '5412': 'retail shop with refrigerated food', + '4839': 'warehouse', + '6994': 'commercial', + '6344': 'warehouse', + '6722': 'warehouse', + '5111': 'warehouse', + '6511': 'out-patient health care', + '5965': 'retail shop without refrigerated food', + '4631': 'warehouse', + '7451': 'sports location', + '1539': 'dormitory', + '6376': 'warehouse', + '4633': 'non-heated', + '5813': 'quick service restaurant', + '6339': 'commercial', + '5911': 'retail shop without refrigerated food', + '5651': 'retail shop without refrigerated food', + '5971': 'retail shop without refrigerated food', + '4550': 'non-heated', + '5620': 'retail shop without refrigerated food', + '7611': 'non-heated', + '5531': 'warehouse', + '6629': 'warehouse', + '6521': 'medium office', + '7639': 'warehouse', + '3399': 'industry', + '3019': 'warehouse', + '6551': 'medium office', + '5413': 'retail shop without refrigerated food', + '5821': 'quick service restaurant', + '6411': 'warehouse', + '6799': 'office and administration', + '5942': 'retail shop without refrigerated food', + '7111': 'office and administration', + '6419': 'warehouse', + '6534': 'commercial', + '5020': 'warehouse', + '6594': 'medium office', + '5819': 'stand alone retail', + '6823': 'secondary school', + '4990': 'warehouse', + '6759': 'warehouse', + '6517': 'out-patient health care', + '6839': 'secondary school', + '4711': 'medium office', + '4111': 'warehouse', + '3280': 'warehouse', + '6721': 'office and administration', + '9459': 'non-heated', + '7113': 'event location', + '4743': 'medium office', + '7211': 'event location', + '6513': 'hospital', + '6813': 'secondary school', + '5921': 'retail shop without refrigerated food', + '6383': 'commercial', + '5711': 'retail shop without refrigerated food', + '6512': 'out-patient health care', + '1590': 'office and administration', + '1890': 'dormitory', + '6372': 'warehouse', + '1600': 'small hotel', + '9451': 'non-heated', + '6359': 'warehouse', + '2240': 'industry', + '1559': 'office and administration', + '1543': 'dormitory', + '6760': 'medium office', + '4771': 'motion picture theatre', + '1552': 'dormitory', + '3994': 'industry', + '6243': 'non-heated', + '6835': 'secondary school', + '5004': 'strip mall', + '6791': 'office and administration', + '1510': 'dormitory', + '7239': 'office and administration', + '5492': 'retail shop without refrigerated food', + '5499': 'stand alone retail', + '4413': 'warehouse', + '5951': 'retail shop without refrigerated food', + '5411': 'retail shop with refrigerated food', + '5532': 'retail shop without refrigerated food', + '5252': 'retail shop without refrigerated food', + '6395': 'retail shop without refrigerated food', + '5462': 'retail shop with refrigerated food', + '6232': 'retail shop without refrigerated food', + '6641': 'warehouse', + '7432': 'sports location', + '5431': 'retail shop with refrigerated food', + '6532': 'office and administration', + '6518': 'out-patient health care', + '5199': 'warehouse', + '3840': 'industry', + '2051': 'medium office', + '7290': 'office and administration', + '5253': 'retail shop without refrigerated food', + '5660': 'retail shop without refrigerated food', + '5699': 'retail shop without refrigerated food', + '6579': 'out-patient health care', + '5173': 'warehouse', + '6431': 'warehouse', + '6355': 'warehouse', + '6263': 'out-patient health care', + '5610': 'retail shop without refrigerated food', + '5969': 'retail shop with refrigerated food', + '5991': 'retail shop without refrigerated food', + '7219': 'office and administration', + '7117': 'warehouse', + '5005': 'stand alone retail', + '4561': 'non-heated', + '5631': 'retail shop without refrigerated food', + '4623': 'warehouse', + '4590': 'warehouse', + '3899': 'industry', + '6563': 'commercial', + '5399': 'stand alone retail', + '6241': 'retail shop without refrigerated food', + '6351': 'retail shop with refrigerated food', + '2270': 'industry', + '5132': 'warehouse', + '4221': 'warehouse', + '6253': 'retail shop without refrigerated food', + '5640': 'retail shop without refrigerated food', + '3299': 'industry', + '6831': 'secondary school', + '2012': 'industry', + '3620': 'industry', + '6519': 'out-patient health care', + '2291': 'industry', + '5311': 'retail shop without refrigerated food', + '5931': 'retail shop without refrigerated food', + '4611': 'warehouse', + '4719': 'stand alone retail', + '5693': 'retail shop without refrigerated food', + '4490': 'industry', + '5823': 'full service restaurant', + '2045': 'industry', + '6542': 'hospital', + '2014': 'industry', + '6375': 'warehouse', + '2799': 'industry', + '6612': 'warehouse', + '4222': 'warehouse', + '7191': 'event location', + '6352': 'warehouse', + '5836': 'commercial', + '5952': 'retail shop without refrigerated food', + '1512': 'dormitory', + '5948': 'warehouse', + '3580': 'industry', + '5391': 'retail shop without refrigerated food', + '6997': 'office and administration', + '6539': 'office and administration', + '2899': 'industry', + '1100': 'single family house', + '6348': 'warehouse', + '7499': 'event location', + '6373': 'warehouse', + '3539': 'industry', + '4922': 'warehouse', + '6731': 'office and administration', + '6132': 'medium office', + '2073': 'industry', + '4761': 'commercial', + '7312': 'non-heated', + '7425': 'sports location', + '6634': 'industry', + '6639': 'warehouse', + '3231': 'industry', + '6569': 'retail shop with refrigerated food', + '2499': 'industry', + '7199': 'event location', + '7114': 'event location', + '4733': 'commercial', + '4112': 'warehouse', + '7129': 'retail shop without refrigerated food', + '7620': 'non-heated', + '9390': 'warehouse', + '1529': 'office and administration', + '7417': 'non-heated', + '8221': 'out-patient health care', + '6598': 'out-patient health care', + '6515': 'out-patient health care', + '3719': 'warehouse', + '2471': 'industry', + '7433': 'non-heated', + '6413': 'warehouse', + '3459': 'industry', + '6152': 'medium office', + '2093': 'industry', + '3031': 'industry', + '5251': 'retail shop without refrigerated food', + '5394': 'retail shop without refrigerated food', + '5141': 'strip mall', + '7419': 'sports location', + '4293': 'warehouse', + '6834': 'secondary school', + '2092': 'industry', + '2072': 'industry', + '6712': 'medium office', + '4411': 'warehouse', + '4562': 'non-heated', + '2096': 'industry', + '5997': 'retail shop without refrigerated food', + '7212': 'event location', + '6713': 'medium office', + '9212': 'non-heated', + '6725': 'office and administration', + '9410': 'residential', + '4211': 'warehouse', + '5230': 'retail shop without refrigerated food', + '6141': 'medium office', + '7512': 'health care', + '5822': 'quick service restaurant', + '5121': 'strip mall', + '6369': 'secondary school', + '5171': 'strip mall', + '5003': 'strip mall', + '3630': 'industry', + '5521': 'retail shop without refrigerated food', + '6531': 'out-patient health care', + '7413': 'warehouse', + '3239': 'industry', + '4715': 'retail shop without refrigerated food', + '6365': 'university', + '6121': 'retail shop without refrigerated food', + '6611': 'warehouse', + '3649': 'industry', + '2892': 'industry', + '6269': 'out-patient health care', + '2020': 'industry', + '6621': 'warehouse', + '6312': 'non-heated', + '6416': 'industry', + '5712': 'retail shop without refrigerated food', + '2261': 'industry', + '2931': 'industry', + '3011': 'industry', + '6499': 'stand alone retail', + '3599': 'industry', + '2299': 'industry', + '3831': 'industry', + '2410': 'industry', + '5112': 'strip mall', + '5941': 'retail shop without refrigerated food', + '6822': 'secondary school', + '6753': 'warehouse', + '5149': 'strip mall', + '3190': 'industry', + '6414': 'warehouse', + '6633': 'warehouse', + '3895': 'industry', + '5133': 'strip mall', + '2082': 'industry', + '5512': 'retail shop without refrigerated food', + '9420': 'non-heated', + '6543': 'hospital', + '4841': 'industry', + '4851': 'industry', + '5432': 'strip mall', + '3711': 'industry', + '3460': 'industry', + '2087': 'industry', + '1522': 'hall', + '8549': 'industry', + '6242': 'warehouse', + '6412': 'warehouse', + '6811': 'secondary school', + '6154': 'warehouse', + '7123': 'warehouse', + '6993': 'medium office', + '6742': 'hospital', + '5212': 'retail shop without refrigerated food', + '5211': 'retail shop without refrigerated food', + '7990': 'hall', + '3714': 'industry', + '6593': 'secondary school', + '5172': 'strip mall', + '5955': 'retail shop without refrigerated food', + '6635': 'retail shop without refrigerated food', + '3799': 'industry', + '2819': 'industry', + '5894': 'quick service restaurant', + '9530': 'non-heated', + '3159': 'industry', + '3713': 'warehouse', + '3894': 'industry', + '5721': 'retail shop without refrigerated food', + '5169': 'strip mall', + '5593': 'retail shop without refrigerated food', + '6631': 'retail shop without refrigerated food', + '5731': 'retail shop without refrigerated food', + '2739': 'industry', + '6619': 'warehouse', + '6815': 'secondary school', + '5320': 'strip mall', + '3261': 'industry', + '6394': 'warehouse', + '2031': 'retail shop with refrigerated food', + '6423': 'warehouse', + '3162': 'industry', + '5814': 'quick service restaurant', + '6653': 'warehouse', + '2213': 'industry', + '2046': 'industry', + '6251': 'commercial', + '3650': 'industry', + '4799': 'non-heated', + '5832': 'small hotel', + '4229': 'warehouse', + '4842': 'warehouse', + '5163': 'strip mall', + '5148': 'strip mall', + '2011': 'industry', + '5361': 'retail shop without refrigerated food', + '2999': 'industry', + '6522': 'medium office', + '7121': 'museum', + '7221': 'sports location', + '1549': 'office and administration', + '5652': 'retail shop without refrigerated food', + '3331': 'industry', + '6219': 'warehouse', + '5421': 'retail shop with refrigerated food', + '3861': 'industry', + '3919': 'industry', + '6441': 'warehouse', + '6648': 'retail shop without refrigerated food', + '8199': 'industry', + '6832': 'secondary school', + '6992': 'medium office', + '1521': 'event location', + '6349': 'warehouse', + '4921': 'warehouse', + '6498': 'warehouse', + '6415': 'retail shop without refrigerated food', + '4122': 'warehouse', + '4219': 'warehouse', + '9440': 'non-heated', + '4782': 'datacenter', + '2619': 'industry', + '7229': 'sports location', + '2079': 'industry', + '2320': 'industry', + '3259': 'industry', + '3931': 'industry', + '5470': 'retail shop with refrigerated food', + '4890': 'warehouse', + '5599': 'retail shop without refrigerated food', + '3270': 'industry', + '5186': 'strip mall', + '2043': 'industry', + '6733': 'warehouse', + '4311': 'event location', + '3451': 'industry', + '2812': 'industry', + '2130': 'industry', + '7449': 'warehouse', + '2919': 'industry', + '4315': 'warehouse', + '3569': 'industry', + '7399': 'event location', + '6160': 'office and administration', + '7412': 'non-heated', + '2084': 'industry', + '3870': 'industry', + '5001': 'strip mall', + '3411': 'industry', + '1702': 'non-heated', + '3243': 'industry', + '4926': 'medium office', + '3490': 'industry', + '2219': 'industry', + '2829': 'industry', + '4399': 'warehouse', + '4319': 'warehouse', + '2039': 'industry', + '8139': 'green house', + '5146': 'strip mall', + '3396': 'industry', + '5161': 'retail shop without refrigerated food', + '2091': 'industry', + '3850': 'industry', + '5241': 'retail shop without refrigerated food', + '3049': 'industry', + '5181': 'retail shop without refrigerated food', + '2627': 'industry', + '3412': 'industry', + '5220': 'retail shop without refrigerated food', + '3699': 'industry', + '4929': 'warehouse', + '3551': 'industry', + '5198': 'strip mall', + '6646': 'non-heated', + '5189': 'strip mall', + '5312': 'retail shop without refrigerated food', + '4214': 'warehouse', + '3410': 'industry', + '4859': 'warehouse', + '2736': 'industry', + '6642': 'warehouse', + '3921': 'industry', + '5815': 'full service restaurant', + '6514': 'out-patient health care', + '8399': 'warehouse', + '2250': 'industry', + '6378': 'warehouse', + '6343': 'retail shop without refrigerated food', + '2652': 'industry', + '3552': 'industry', + '2891': 'industry', + '6368': 'secondary school', + '3559': 'industry', + '5145': 'strip mall', + '3244': 'industry', + '3292': 'industry', + '4510': 'warehouse', + '7423': 'sports location', + '5370': 'retail shop without refrigerated food', + '4824': 'warehouse', + '4832': 'industry', + '6573': 'health care', + '6623': 'non-heated', + '5162': 'retail shop without refrigerated food', + '4612': 'warehouse', + '2629': 'industry', + '3291': 'industry', + '3229': 'industry', + '5829': 'stand alone retail', + '2932': 'industry', + '5594': 'retail shop without refrigerated food', + '2722': 'industry', + '2811': 'industry', + '2235': 'industry', + '5953': 'retail shop without refrigerated food', + '3170': 'industry', + '3662': 'industry', + '4879': 'warehouse', + '2074': 'industry', + '7429': 'sports location', + '4843': 'warehouse', + '6335': 'office and administration', + '4116': 'warehouse', + '2622': 'industry', + '6112': 'office and administration', + '4875': 'warehouse', + '4792': 'warehouse refrigerated', + '6391': 'university', + '6425': 'warehouse', + '6212': 'warehouse', + '5147': 'strip mall', + '2460': 'industry', + '4874': 'warehouse', + '6743': 'dormitory', + '3241': 'industry', + '5123': 'strip mall', + '4833': 'non-heated', + '9470': 'non-heated', + '3932': 'industry', + '4292': 'warehouse', + '6424': 'retail shop without refrigerated food', + '6139': 'retail shop without refrigerated food', + '2624': 'industry', + '3915': 'warehouse', + '7233': 'convention center', + '5184': 'strip mall', + '2099': 'industry', + '5129': 'retail shop with refrigerated food', + '5913': 'retail shop without refrigerated food', + '5717': 'retail shop without refrigerated food', + '4712': 'non-heated', + '5142': 'strip mall', + '3210': 'industry', + '4834': 'warehouse', + '3456': 'industry', + '2075': 'industry', + '3020': 'industry', + '3821': 'industry', + '6613': 'medium office', + '4826': 'warehouse', + '5839': 'multifamily house', + '4316': 'warehouse', + '6592': 'office and administration', + '3971': 'industry', + '2694': 'industry', + '3882': 'industry', + '3119': 'industry', + '2495': 'industry', + '4759': 'medium office', + '6439': 'warehouse', + '6643': 'warehouse', + '3470': 'industry', + '3531': 'industry', + '4823': 'non-heated', + '2293': 'industry', + '3532': 'industry', + '3913': 'industry', + '6816': 'office and administration', + '3562': 'industry', + '6496': 'commercial', + '4119': 'warehouse', + '6533': 'out-patient health care', + '6814': 'primary school', + '6353': 'warehouse', + '3392': 'industry', + '5114': 'strip mall', + '5131': 'strip mall'} @property def dictionary(self) -> dict: From 48fbeb488f566db4355b57099b9e89b72eda4130 Mon Sep 17 00:00:00 2001 From: guille Date: Fri, 24 Feb 2023 07:10:13 -0500 Subject: [PATCH 19/27] Neighbours mapping completed. --- hub/helpers/geometry_helper.py | 16 ++++++++-------- hub/imports/geometry/geojson.py | 2 +- hub/unittests/test_geometry_factory.py | 3 +-- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/hub/helpers/geometry_helper.py b/hub/helpers/geometry_helper.py index 912105d4..b61e3b78 100644 --- a/hub/helpers/geometry_helper.py +++ b/hub/helpers/geometry_helper.py @@ -59,14 +59,14 @@ class GeometryHelper: @staticmethod def coordinate_to_map_point(coordinate, city): - return MapPoint((city.upper_corner[0] - coordinate[0] / 1), (city.upper_corner[1] - coordinate[1] / 1)) + return MapPoint(((city.upper_corner[0] - coordinate[0]) * 0.5), ((city.upper_corner[1] - coordinate[1]) * 0.5)) @staticmethod def city_mapping(city, building_names=None): if building_names is None: building_names = [b.name for b in city.buildings] - x = int((city.upper_corner[0] - city.lower_corner[0]) / 1) - y = int((city.upper_corner[1] - city.lower_corner[1]) / 1) + x = int((city.upper_corner[0] - city.lower_corner[0]) * 0.5) + 1 + y = int((city.upper_corner[1] - city.lower_corner[1]) * 0.5) + 1 city_map = [['' for _ in range(y + 1)] for _ in range(x + 1)] img = Image.new('RGB', (x + 1, y + 1), "black") # create a new black image city_image = img.load() # create the pixel map @@ -83,11 +83,11 @@ class GeometryHelper: distance = GeometryHelper.distance_between_points(coordinate, next_coordinate) if distance == 0: continue - delta_x = (coordinate[0] - next_coordinate[0]) / distance - delta_y = (coordinate[1] - next_coordinate[1]) / distance - for i in range(0, int(distance)): - x = MapPoint(point.x + (delta_x * i), point.y + (delta_y * i)).x - y = MapPoint(point.x + (delta_x * i), point.y + (delta_y * i)).y + delta_x = (coordinate[0] - next_coordinate[0]) / (distance / 0.5) + delta_y = (coordinate[1] - next_coordinate[1]) / (distance / 0.5) + for k in range(0, int(distance)): + x = MapPoint(point.x + (delta_x * k), point.y + (delta_y * k)).x + y = MapPoint(point.x + (delta_x * k), point.y + (delta_y * k)).y if city_map[x][y] == '': city_map[x][y] = building.name city_image[x, y] = (100, 0, 0) diff --git a/hub/imports/geometry/geojson.py b/hub/imports/geometry/geojson.py index 21f27b27..d8ef97f4 100644 --- a/hub/imports/geometry/geojson.py +++ b/hub/imports/geometry/geojson.py @@ -64,7 +64,7 @@ class Geojson: for zone, surface_coordinates in enumerate(surfaces_coordinates): points = GeometryHelper.points_from_string(GeometryHelper.remove_last_point_from_string(surface_coordinates)) polygon = Polygon(points) - surfaces.append(Surface(polygon, polygon)) + surfaces.append(Surface(polygon, polygon, surface_type=cte.GROUND)) buildings.append(Building(f'{name}_zone_{zone}', surfaces, year_of_construction, function)) return buildings diff --git a/hub/unittests/test_geometry_factory.py b/hub/unittests/test_geometry_factory.py index 1c8ef5bb..5ca0e272 100644 --- a/hub/unittests/test_geometry_factory.py +++ b/hub/unittests/test_geometry_factory.py @@ -142,7 +142,7 @@ class TestGeometryFactory(TestCase): city = self._get_city(file, 'geojson', height_field='citygml_me', year_of_construction_field='ANNEE_CONS', - function_field='LIBELLE_UT') + function_field='CODE_UTILI') hub.exports.exports_factory.ExportsFactory('obj', city, self._output_path).export() self.assertEqual(207, len(city.buildings), 'wrong number of buildings') @@ -155,7 +155,6 @@ class TestGeometryFactory(TestCase): start = datetime.datetime.now() file = 'concordia.geojson' city = self._get_city(file, 'geojson', - height_field='citygml_me', year_of_construction_field='ANNEE_CONS', function_field='LIBELLE_UT') city_end = datetime.datetime.now() From def1bd221f1964466be7b1484706bab5de61084f Mon Sep 17 00:00:00 2001 From: guille Date: Fri, 24 Feb 2023 07:19:01 -0500 Subject: [PATCH 20/27] Clean mapping test --- hub/helpers/geometry_helper.py | 5 +++-- hub/unittests/test_geometry_factory.py | 14 ++------------ 2 files changed, 5 insertions(+), 14 deletions(-) diff --git a/hub/helpers/geometry_helper.py b/hub/helpers/geometry_helper.py index b61e3b78..0327f97b 100644 --- a/hub/helpers/geometry_helper.py +++ b/hub/helpers/geometry_helper.py @@ -62,7 +62,7 @@ class GeometryHelper: return MapPoint(((city.upper_corner[0] - coordinate[0]) * 0.5), ((city.upper_corner[1] - coordinate[1]) * 0.5)) @staticmethod - def city_mapping(city, building_names=None): + def city_mapping(city, building_names=None, plot=False): if building_names is None: building_names = [b.name for b in city.buildings] x = int((city.upper_corner[0] - city.lower_corner[0]) * 0.5) + 1 @@ -101,7 +101,8 @@ class GeometryHelper: neighbour.neighbours = [building] elif building not in neighbour.neighbours: neighbour.neighbours.append(building) - img.show() + if plot: + img.show() @staticmethod def segment_list_to_trimesh(lines) -> Trimesh: diff --git a/hub/unittests/test_geometry_factory.py b/hub/unittests/test_geometry_factory.py index 5ca0e272..a503bc3b 100644 --- a/hub/unittests/test_geometry_factory.py +++ b/hub/unittests/test_geometry_factory.py @@ -152,20 +152,10 @@ class TestGeometryFactory(TestCase): """ Test neighbours map creation """ - start = datetime.datetime.now() file = 'concordia.geojson' city = self._get_city(file, 'geojson', + height_field='citygml_me', year_of_construction_field='ANNEE_CONS', function_field='LIBELLE_UT') - city_end = datetime.datetime.now() - print(f'city load {city_end-start}') - GeometryHelper.city_mapping(city) - end = datetime.datetime.now() - print(f'city map {end-city_end}') - - for building in city.buildings: - if building.neighbours is not None: - print(f'{building.name} [{[b.name for b in building.neighbours]}]') - else: - print(f'{building.name} has no neighbours') + GeometryHelper.city_mapping(city, plot=False) self.assertTrue(False) From ca5bcfc93c3ab1b96fee64f35750305bd03cde6f Mon Sep 17 00:00:00 2001 From: Pilar Date: Fri, 24 Feb 2023 14:31:44 -0500 Subject: [PATCH 21/27] changed strings in dictionary to cte.NAMES --- .../data/montreal_function_to_hub_function.py | 1138 ++++++++--------- .../construction/nrcan_physics_parameters.py | 2 +- 2 files changed, 570 insertions(+), 570 deletions(-) diff --git a/hub/helpers/data/montreal_function_to_hub_function.py b/hub/helpers/data/montreal_function_to_hub_function.py index d8caf821..ec352da3 100644 --- a/hub/helpers/data/montreal_function_to_hub_function.py +++ b/hub/helpers/data/montreal_function_to_hub_function.py @@ -11,575 +11,575 @@ import hub.helpers.constants as cte class MontrealFunctionToHubFunction: def __init__(self): - self._dictionary = {'1000': 'residential', - '2089': 'industry', - '1921': 'warehouse', - '1922': 'non-heated', - '9100': 'non-heated', - '6000': 'medium office', - '5010': 'stand alone retail', - '9490': 'warehouse', - '4299': 'warehouse', - '6379': 'warehouse', - '5533': 'warehouse', - '6591': 'office and administration', - '6211': 'retail shop without refrigerated food', - '1511': 'dormitory', - '5833': 'hotel', - '1532': 'dormitory', - '6911': 'convention center', - '9510': 'residential', - '1990': 'mid rise apartment', - '1923': 'non-heated', - '7222': 'sports location', - '5002': 'strip mall', - '6111': 'commercial', - '6311': 'medium office', - '6399': 'medium office', - '5812': 'full service restaurant', - '4621': 'warehouse', - '1541': 'dormitory', - '7214': 'event location', - '4821': 'non-heated', - '9520': 'non-heated', - '7112': 'event location', - '6299': 'out-patient health care', - '5461': 'retail shop with refrigerated food', - '4632': 'non-heated', - '7424': 'event location', - '5811': 'full service restaurant', - '4113': 'warehouse', - '6821': 'secondary school', - '6920': 'office and administration', - '6199': 'commercial', - '5899': 'warehouse', - '5999': 'stand alone retail', - '5834': 'residential', - '2699': 'industry', - '6812': 'secondary school', - '6649': 'warehouse', - '3999': 'industry', - '1553': 'office and administration', - '6999': 'warehouse', - '6541': 'primary school', - '5831': 'small hotel', - '6919': 'office and administration', - '9900': 'warehouse', - '1551': 'event location', - '5511': 'retail shop without refrigerated food', - '6231': 'commercial', - '6221': 'retail shop without refrigerated food', - '6599': 'office and administration', - '7119': 'event location', - '6214': 'commercial', - '5412': 'retail shop with refrigerated food', - '4839': 'warehouse', - '6994': 'commercial', - '6344': 'warehouse', - '6722': 'warehouse', - '5111': 'warehouse', - '6511': 'out-patient health care', - '5965': 'retail shop without refrigerated food', - '4631': 'warehouse', - '7451': 'sports location', - '1539': 'dormitory', - '6376': 'warehouse', - '4633': 'non-heated', - '5813': 'quick service restaurant', - '6339': 'commercial', - '5911': 'retail shop without refrigerated food', - '5651': 'retail shop without refrigerated food', - '5971': 'retail shop without refrigerated food', - '4550': 'non-heated', - '5620': 'retail shop without refrigerated food', - '7611': 'non-heated', - '5531': 'warehouse', - '6629': 'warehouse', - '6521': 'medium office', - '7639': 'warehouse', - '3399': 'industry', - '3019': 'warehouse', - '6551': 'medium office', - '5413': 'retail shop without refrigerated food', - '5821': 'quick service restaurant', - '6411': 'warehouse', - '6799': 'office and administration', - '5942': 'retail shop without refrigerated food', - '7111': 'office and administration', - '6419': 'warehouse', - '6534': 'commercial', - '5020': 'warehouse', - '6594': 'medium office', - '5819': 'stand alone retail', - '6823': 'secondary school', - '4990': 'warehouse', - '6759': 'warehouse', - '6517': 'out-patient health care', - '6839': 'secondary school', - '4711': 'medium office', - '4111': 'warehouse', - '3280': 'warehouse', - '6721': 'office and administration', - '9459': 'non-heated', - '7113': 'event location', - '4743': 'medium office', - '7211': 'event location', - '6513': 'hospital', - '6813': 'secondary school', - '5921': 'retail shop without refrigerated food', - '6383': 'commercial', - '5711': 'retail shop without refrigerated food', - '6512': 'out-patient health care', - '1590': 'office and administration', - '1890': 'dormitory', - '6372': 'warehouse', - '1600': 'small hotel', - '9451': 'non-heated', - '6359': 'warehouse', - '2240': 'industry', - '1559': 'office and administration', - '1543': 'dormitory', - '6760': 'medium office', - '4771': 'motion picture theatre', - '1552': 'dormitory', - '3994': 'industry', - '6243': 'non-heated', - '6835': 'secondary school', - '5004': 'strip mall', - '6791': 'office and administration', - '1510': 'dormitory', - '7239': 'office and administration', - '5492': 'retail shop without refrigerated food', - '5499': 'stand alone retail', - '4413': 'warehouse', - '5951': 'retail shop without refrigerated food', - '5411': 'retail shop with refrigerated food', - '5532': 'retail shop without refrigerated food', - '5252': 'retail shop without refrigerated food', - '6395': 'retail shop without refrigerated food', - '5462': 'retail shop with refrigerated food', - '6232': 'retail shop without refrigerated food', - '6641': 'warehouse', - '7432': 'sports location', - '5431': 'retail shop with refrigerated food', - '6532': 'office and administration', - '6518': 'out-patient health care', - '5199': 'warehouse', - '3840': 'industry', - '2051': 'medium office', - '7290': 'office and administration', - '5253': 'retail shop without refrigerated food', - '5660': 'retail shop without refrigerated food', - '5699': 'retail shop without refrigerated food', - '6579': 'out-patient health care', - '5173': 'warehouse', - '6431': 'warehouse', - '6355': 'warehouse', - '6263': 'out-patient health care', - '5610': 'retail shop without refrigerated food', - '5969': 'retail shop with refrigerated food', - '5991': 'retail shop without refrigerated food', - '7219': 'office and administration', - '7117': 'warehouse', - '5005': 'stand alone retail', - '4561': 'non-heated', - '5631': 'retail shop without refrigerated food', - '4623': 'warehouse', - '4590': 'warehouse', - '3899': 'industry', - '6563': 'commercial', - '5399': 'stand alone retail', - '6241': 'retail shop without refrigerated food', - '6351': 'retail shop with refrigerated food', - '2270': 'industry', - '5132': 'warehouse', - '4221': 'warehouse', - '6253': 'retail shop without refrigerated food', - '5640': 'retail shop without refrigerated food', - '3299': 'industry', - '6831': 'secondary school', - '2012': 'industry', - '3620': 'industry', - '6519': 'out-patient health care', - '2291': 'industry', - '5311': 'retail shop without refrigerated food', - '5931': 'retail shop without refrigerated food', - '4611': 'warehouse', - '4719': 'stand alone retail', - '5693': 'retail shop without refrigerated food', - '4490': 'industry', - '5823': 'full service restaurant', - '2045': 'industry', - '6542': 'hospital', - '2014': 'industry', - '6375': 'warehouse', - '2799': 'industry', - '6612': 'warehouse', - '4222': 'warehouse', - '7191': 'event location', - '6352': 'warehouse', - '5836': 'commercial', - '5952': 'retail shop without refrigerated food', - '1512': 'dormitory', - '5948': 'warehouse', - '3580': 'industry', - '5391': 'retail shop without refrigerated food', - '6997': 'office and administration', - '6539': 'office and administration', - '2899': 'industry', - '1100': 'single family house', - '6348': 'warehouse', - '7499': 'event location', - '6373': 'warehouse', - '3539': 'industry', - '4922': 'warehouse', - '6731': 'office and administration', - '6132': 'medium office', - '2073': 'industry', - '4761': 'commercial', - '7312': 'non-heated', - '7425': 'sports location', - '6634': 'industry', - '6639': 'warehouse', - '3231': 'industry', - '6569': 'retail shop with refrigerated food', - '2499': 'industry', - '7199': 'event location', - '7114': 'event location', - '4733': 'commercial', - '4112': 'warehouse', - '7129': 'retail shop without refrigerated food', - '7620': 'non-heated', - '9390': 'warehouse', - '1529': 'office and administration', - '7417': 'non-heated', - '8221': 'out-patient health care', - '6598': 'out-patient health care', - '6515': 'out-patient health care', - '3719': 'warehouse', - '2471': 'industry', - '7433': 'non-heated', - '6413': 'warehouse', - '3459': 'industry', - '6152': 'medium office', - '2093': 'industry', - '3031': 'industry', - '5251': 'retail shop without refrigerated food', - '5394': 'retail shop without refrigerated food', - '5141': 'strip mall', - '7419': 'sports location', - '4293': 'warehouse', - '6834': 'secondary school', - '2092': 'industry', - '2072': 'industry', - '6712': 'medium office', - '4411': 'warehouse', - '4562': 'non-heated', - '2096': 'industry', - '5997': 'retail shop without refrigerated food', - '7212': 'event location', - '6713': 'medium office', - '9212': 'non-heated', - '6725': 'office and administration', - '9410': 'residential', - '4211': 'warehouse', - '5230': 'retail shop without refrigerated food', - '6141': 'medium office', - '7512': 'health care', - '5822': 'quick service restaurant', - '5121': 'strip mall', - '6369': 'secondary school', - '5171': 'strip mall', - '5003': 'strip mall', - '3630': 'industry', - '5521': 'retail shop without refrigerated food', - '6531': 'out-patient health care', - '7413': 'warehouse', - '3239': 'industry', - '4715': 'retail shop without refrigerated food', - '6365': 'university', - '6121': 'retail shop without refrigerated food', - '6611': 'warehouse', - '3649': 'industry', - '2892': 'industry', - '6269': 'out-patient health care', - '2020': 'industry', - '6621': 'warehouse', - '6312': 'non-heated', - '6416': 'industry', - '5712': 'retail shop without refrigerated food', - '2261': 'industry', - '2931': 'industry', - '3011': 'industry', - '6499': 'stand alone retail', - '3599': 'industry', - '2299': 'industry', - '3831': 'industry', - '2410': 'industry', - '5112': 'strip mall', - '5941': 'retail shop without refrigerated food', - '6822': 'secondary school', - '6753': 'warehouse', - '5149': 'strip mall', - '3190': 'industry', - '6414': 'warehouse', - '6633': 'warehouse', - '3895': 'industry', - '5133': 'strip mall', - '2082': 'industry', - '5512': 'retail shop without refrigerated food', - '9420': 'non-heated', - '6543': 'hospital', - '4841': 'industry', - '4851': 'industry', - '5432': 'strip mall', - '3711': 'industry', - '3460': 'industry', - '2087': 'industry', - '1522': 'hall', - '8549': 'industry', - '6242': 'warehouse', - '6412': 'warehouse', - '6811': 'secondary school', - '6154': 'warehouse', - '7123': 'warehouse', - '6993': 'medium office', - '6742': 'hospital', - '5212': 'retail shop without refrigerated food', - '5211': 'retail shop without refrigerated food', - '7990': 'hall', - '3714': 'industry', - '6593': 'secondary school', - '5172': 'strip mall', - '5955': 'retail shop without refrigerated food', - '6635': 'retail shop without refrigerated food', - '3799': 'industry', - '2819': 'industry', - '5894': 'quick service restaurant', - '9530': 'non-heated', - '3159': 'industry', - '3713': 'warehouse', - '3894': 'industry', - '5721': 'retail shop without refrigerated food', - '5169': 'strip mall', - '5593': 'retail shop without refrigerated food', - '6631': 'retail shop without refrigerated food', - '5731': 'retail shop without refrigerated food', - '2739': 'industry', - '6619': 'warehouse', - '6815': 'secondary school', - '5320': 'strip mall', - '3261': 'industry', - '6394': 'warehouse', - '2031': 'retail shop with refrigerated food', - '6423': 'warehouse', - '3162': 'industry', - '5814': 'quick service restaurant', - '6653': 'warehouse', - '2213': 'industry', - '2046': 'industry', - '6251': 'commercial', - '3650': 'industry', - '4799': 'non-heated', - '5832': 'small hotel', - '4229': 'warehouse', - '4842': 'warehouse', - '5163': 'strip mall', - '5148': 'strip mall', - '2011': 'industry', - '5361': 'retail shop without refrigerated food', - '2999': 'industry', - '6522': 'medium office', - '7121': 'museum', - '7221': 'sports location', - '1549': 'office and administration', - '5652': 'retail shop without refrigerated food', - '3331': 'industry', - '6219': 'warehouse', - '5421': 'retail shop with refrigerated food', - '3861': 'industry', - '3919': 'industry', - '6441': 'warehouse', - '6648': 'retail shop without refrigerated food', - '8199': 'industry', - '6832': 'secondary school', - '6992': 'medium office', - '1521': 'event location', - '6349': 'warehouse', - '4921': 'warehouse', - '6498': 'warehouse', - '6415': 'retail shop without refrigerated food', - '4122': 'warehouse', - '4219': 'warehouse', - '9440': 'non-heated', - '4782': 'datacenter', - '2619': 'industry', - '7229': 'sports location', - '2079': 'industry', - '2320': 'industry', - '3259': 'industry', - '3931': 'industry', - '5470': 'retail shop with refrigerated food', - '4890': 'warehouse', - '5599': 'retail shop without refrigerated food', - '3270': 'industry', - '5186': 'strip mall', - '2043': 'industry', - '6733': 'warehouse', - '4311': 'event location', - '3451': 'industry', - '2812': 'industry', - '2130': 'industry', - '7449': 'warehouse', - '2919': 'industry', - '4315': 'warehouse', - '3569': 'industry', - '7399': 'event location', - '6160': 'office and administration', - '7412': 'non-heated', - '2084': 'industry', - '3870': 'industry', - '5001': 'strip mall', - '3411': 'industry', - '1702': 'non-heated', - '3243': 'industry', - '4926': 'medium office', - '3490': 'industry', - '2219': 'industry', - '2829': 'industry', - '4399': 'warehouse', - '4319': 'warehouse', - '2039': 'industry', - '8139': 'green house', - '5146': 'strip mall', - '3396': 'industry', - '5161': 'retail shop without refrigerated food', - '2091': 'industry', - '3850': 'industry', - '5241': 'retail shop without refrigerated food', - '3049': 'industry', - '5181': 'retail shop without refrigerated food', - '2627': 'industry', - '3412': 'industry', - '5220': 'retail shop without refrigerated food', - '3699': 'industry', - '4929': 'warehouse', - '3551': 'industry', - '5198': 'strip mall', - '6646': 'non-heated', - '5189': 'strip mall', - '5312': 'retail shop without refrigerated food', - '4214': 'warehouse', - '3410': 'industry', - '4859': 'warehouse', - '2736': 'industry', - '6642': 'warehouse', - '3921': 'industry', - '5815': 'full service restaurant', - '6514': 'out-patient health care', - '8399': 'warehouse', - '2250': 'industry', - '6378': 'warehouse', - '6343': 'retail shop without refrigerated food', - '2652': 'industry', - '3552': 'industry', - '2891': 'industry', - '6368': 'secondary school', - '3559': 'industry', - '5145': 'strip mall', - '3244': 'industry', - '3292': 'industry', - '4510': 'warehouse', - '7423': 'sports location', - '5370': 'retail shop without refrigerated food', - '4824': 'warehouse', - '4832': 'industry', - '6573': 'health care', - '6623': 'non-heated', - '5162': 'retail shop without refrigerated food', - '4612': 'warehouse', - '2629': 'industry', - '3291': 'industry', - '3229': 'industry', - '5829': 'stand alone retail', - '2932': 'industry', - '5594': 'retail shop without refrigerated food', - '2722': 'industry', - '2811': 'industry', - '2235': 'industry', - '5953': 'retail shop without refrigerated food', - '3170': 'industry', - '3662': 'industry', - '4879': 'warehouse', - '2074': 'industry', - '7429': 'sports location', - '4843': 'warehouse', - '6335': 'office and administration', - '4116': 'warehouse', - '2622': 'industry', - '6112': 'office and administration', - '4875': 'warehouse', - '4792': 'warehouse refrigerated', - '6391': 'university', - '6425': 'warehouse', - '6212': 'warehouse', - '5147': 'strip mall', - '2460': 'industry', - '4874': 'warehouse', - '6743': 'dormitory', - '3241': 'industry', - '5123': 'strip mall', - '4833': 'non-heated', - '9470': 'non-heated', - '3932': 'industry', - '4292': 'warehouse', - '6424': 'retail shop without refrigerated food', - '6139': 'retail shop without refrigerated food', - '2624': 'industry', - '3915': 'warehouse', - '7233': 'convention center', - '5184': 'strip mall', - '2099': 'industry', - '5129': 'retail shop with refrigerated food', - '5913': 'retail shop without refrigerated food', - '5717': 'retail shop without refrigerated food', - '4712': 'non-heated', - '5142': 'strip mall', - '3210': 'industry', - '4834': 'warehouse', - '3456': 'industry', - '2075': 'industry', - '3020': 'industry', - '3821': 'industry', - '6613': 'medium office', - '4826': 'warehouse', - '5839': 'multifamily house', - '4316': 'warehouse', - '6592': 'office and administration', - '3971': 'industry', - '2694': 'industry', - '3882': 'industry', - '3119': 'industry', - '2495': 'industry', - '4759': 'medium office', - '6439': 'warehouse', - '6643': 'warehouse', - '3470': 'industry', - '3531': 'industry', - '4823': 'non-heated', - '2293': 'industry', - '3532': 'industry', - '3913': 'industry', - '6816': 'office and administration', - '3562': 'industry', - '6496': 'commercial', - '4119': 'warehouse', - '6533': 'out-patient health care', - '6814': 'primary school', - '6353': 'warehouse', - '3392': 'industry', - '5114': 'strip mall', - '5131': 'strip mall'} + self._dictionary = {'1000': cte.RESIDENTIAL, + '2089': cte.INDUSTRY, + '1921': cte.WAREHOUSE, + '1922': cte.NON_HEATED, + '9100': cte.NON_HEATED, + '6000': cte.MEDIUM_OFFICE, + '5010': cte.STAND_ALONE_RETAIL, + '9490': cte.WAREHOUSE, + '4299': cte.WAREHOUSE, + '6379': cte.WAREHOUSE, + '5533': cte.WAREHOUSE, + '6591': cte.OFFICE_AND_ADMINISTRATION, + '6211': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '1511': cte.DORMITORY, + '5833': cte.HOTEL, + '1532': cte.DORMITORY, + '6911': cte.CONVENTION_CENTER, + '9510': cte.RESIDENTIAL, + '1990': cte.MID_RISE_APARTMENT, + '1923': cte.NON_HEATED, + '7222': cte.SPORTS_LOCATION, + '5002': cte.STRIP_MALL, + '6111': cte.COMMERCIAL, + '6311': cte.MEDIUM_OFFICE, + '6399': cte.MEDIUM_OFFICE, + '5812': cte.FULL_SERVICE_RESTAURANT, + '4621': cte.WAREHOUSE, + '1541': cte.DORMITORY, + '7214': cte.EVENT_LOCATION, + '4821': cte.NON_HEATED, + '9520': cte.NON_HEATED, + '7112': cte.EVENT_LOCATION, + '6299': cte.OUT_PATIENT_HEALTH_CARE, + '5461': cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + '4632': cte.NON_HEATED, + '7424': cte.EVENT_LOCATION, + '5811': cte.FULL_SERVICE_RESTAURANT, + '4113': cte.WAREHOUSE, + '6821': cte.SECONDARY_SCHOOL, + '6920': cte.OFFICE_AND_ADMINISTRATION, + '6199': cte.COMMERCIAL, + '5899': cte.WAREHOUSE, + '5999': cte.STAND_ALONE_RETAIL, + '5834': cte.RESIDENTIAL, + '2699': cte.INDUSTRY, + '6812': cte.SECONDARY_SCHOOL, + '6649': cte.WAREHOUSE, + '3999': cte.INDUSTRY, + '1553': cte.OFFICE_AND_ADMINISTRATION, + '6999': cte.WAREHOUSE, + '6541': cte.PRIMARY_SCHOOL, + '5831': cte.SMALL_HOTEL, + '6919': cte.OFFICE_AND_ADMINISTRATION, + '9900': cte.WAREHOUSE, + '1551': cte.EVENT_LOCATION, + '5511': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6231': cte.COMMERCIAL, + '6221': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6599': cte.OFFICE_AND_ADMINISTRATION, + '7119': cte.EVENT_LOCATION, + '6214': cte.COMMERCIAL, + '5412': cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + '4839': cte.WAREHOUSE, + '6994': cte.COMMERCIAL, + '6344': cte.WAREHOUSE, + '6722': cte.WAREHOUSE, + '5111': cte.WAREHOUSE, + '6511': cte.OUT_PATIENT_HEALTH_CARE, + '5965': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '4631': cte.WAREHOUSE, + '7451': cte.SPORTS_LOCATION, + '1539': cte.DORMITORY, + '6376': cte.WAREHOUSE, + '4633': cte.NON_HEATED, + '5813': cte.QUICK_SERVICE_RESTAURANT, + '6339': cte.COMMERCIAL, + '5911': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5651': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5971': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '4550': cte.NON_HEATED, + '5620': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '7611': cte.NON_HEATED, + '5531': cte.WAREHOUSE, + '6629': cte.WAREHOUSE, + '6521': cte.MEDIUM_OFFICE, + '7639': cte.WAREHOUSE, + '3399': cte.INDUSTRY, + '3019': cte.WAREHOUSE, + '6551': cte.MEDIUM_OFFICE, + '5413': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5821': cte.QUICK_SERVICE_RESTAURANT, + '6411': cte.WAREHOUSE, + '6799': cte.OFFICE_AND_ADMINISTRATION, + '5942': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '7111': cte.OFFICE_AND_ADMINISTRATION, + '6419': cte.WAREHOUSE, + '6534': cte.COMMERCIAL, + '5020': cte.WAREHOUSE, + '6594': cte.MEDIUM_OFFICE, + '5819': cte.STAND_ALONE_RETAIL, + '6823': cte.SECONDARY_SCHOOL, + '4990': cte.WAREHOUSE, + '6759': cte.WAREHOUSE, + '6517': cte.OUT_PATIENT_HEALTH_CARE, + '6839': cte.SECONDARY_SCHOOL, + '4711': cte.MEDIUM_OFFICE, + '4111': cte.WAREHOUSE, + '3280': cte.WAREHOUSE, + '6721': cte.OFFICE_AND_ADMINISTRATION, + '9459': cte.NON_HEATED, + '7113': cte.EVENT_LOCATION, + '4743': cte.MEDIUM_OFFICE, + '7211': cte.EVENT_LOCATION, + '6513': cte.HOSPITAL, + '6813': cte.SECONDARY_SCHOOL, + '5921': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6383': cte.COMMERCIAL, + '5711': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6512': cte.OUT_PATIENT_HEALTH_CARE, + '1590': cte.OFFICE_AND_ADMINISTRATION, + '1890': cte.DORMITORY, + '6372': cte.WAREHOUSE, + '1600': cte.SMALL_HOTEL, + '9451': cte.NON_HEATED, + '6359': cte.WAREHOUSE, + '2240': cte.INDUSTRY, + '1559': cte.OFFICE_AND_ADMINISTRATION, + '1543': cte.DORMITORY, + '6760': cte.MEDIUM_OFFICE, + '4771': cte.MOTION_PICTURE_THEATRE, + '1552': cte.DORMITORY, + '3994': cte.INDUSTRY, + '6243': cte.NON_HEATED, + '6835': cte.SECONDARY_SCHOOL, + '5004': cte.STRIP_MALL, + '6791': cte.OFFICE_AND_ADMINISTRATION, + '1510': cte.DORMITORY, + '7239': cte.OFFICE_AND_ADMINISTRATION, + '5492': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5499': cte.STAND_ALONE_RETAIL, + '4413': cte.WAREHOUSE, + '5951': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5411': cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + '5532': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5252': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6395': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5462': cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + '6232': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6641': cte.WAREHOUSE, + '7432': cte.SPORTS_LOCATION, + '5431': cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + '6532': cte.OFFICE_AND_ADMINISTRATION, + '6518': cte.OUT_PATIENT_HEALTH_CARE, + '5199': cte.WAREHOUSE, + '3840': cte.INDUSTRY, + '2051': cte.MEDIUM_OFFICE, + '7290': cte.OFFICE_AND_ADMINISTRATION, + '5253': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5660': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5699': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6579': cte.OUT_PATIENT_HEALTH_CARE, + '5173': cte.WAREHOUSE, + '6431': cte.WAREHOUSE, + '6355': cte.WAREHOUSE, + '6263': cte.OUT_PATIENT_HEALTH_CARE, + '5610': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5969': cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + '5991': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '7219': cte.OFFICE_AND_ADMINISTRATION, + '7117': cte.WAREHOUSE, + '5005': cte.STAND_ALONE_RETAIL, + '4561': cte.NON_HEATED, + '5631': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '4623': cte.WAREHOUSE, + '4590': cte.WAREHOUSE, + '3899': cte.INDUSTRY, + '6563': cte.COMMERCIAL, + '5399': cte.STAND_ALONE_RETAIL, + '6241': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6351': cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + '2270': cte.INDUSTRY, + '5132': cte.WAREHOUSE, + '4221': cte.WAREHOUSE, + '6253': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5640': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '3299': cte.INDUSTRY, + '6831': cte.SECONDARY_SCHOOL, + '2012': cte.INDUSTRY, + '3620': cte.INDUSTRY, + '6519': cte.OUT_PATIENT_HEALTH_CARE, + '2291': cte.INDUSTRY, + '5311': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5931': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '4611': cte.WAREHOUSE, + '4719': cte.STAND_ALONE_RETAIL, + '5693': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '4490': cte.INDUSTRY, + '5823': cte.FULL_SERVICE_RESTAURANT, + '2045': cte.INDUSTRY, + '6542': cte.HOSPITAL, + '2014': cte.INDUSTRY, + '6375': cte.WAREHOUSE, + '2799': cte.INDUSTRY, + '6612': cte.WAREHOUSE, + '4222': cte.WAREHOUSE, + '7191': cte.EVENT_LOCATION, + '6352': cte.WAREHOUSE, + '5836': cte.COMMERCIAL, + '5952': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '1512': cte.DORMITORY, + '5948': cte.WAREHOUSE, + '3580': cte.INDUSTRY, + '5391': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6997': cte.OFFICE_AND_ADMINISTRATION, + '6539': cte.OFFICE_AND_ADMINISTRATION, + '2899': cte.INDUSTRY, + '1100': cte.SINGLE_FAMILY_HOUSE, + '6348': cte.WAREHOUSE, + '7499': cte.EVENT_LOCATION, + '6373': cte.WAREHOUSE, + '3539': cte.INDUSTRY, + '4922': cte.WAREHOUSE, + '6731': cte.OFFICE_AND_ADMINISTRATION, + '6132': cte.MEDIUM_OFFICE, + '2073': cte.INDUSTRY, + '4761': cte.COMMERCIAL, + '7312': cte.NON_HEATED, + '7425': cte.SPORTS_LOCATION, + '6634': cte.INDUSTRY, + '6639': cte.WAREHOUSE, + '3231': cte.INDUSTRY, + '6569': cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + '2499': cte.INDUSTRY, + '7199': cte.EVENT_LOCATION, + '7114': cte.EVENT_LOCATION, + '4733': cte.COMMERCIAL, + '4112': cte.WAREHOUSE, + '7129': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '7620': cte.NON_HEATED, + '9390': cte.WAREHOUSE, + '1529': cte.OFFICE_AND_ADMINISTRATION, + '7417': cte.NON_HEATED, + '8221': cte.OUT_PATIENT_HEALTH_CARE, + '6598': cte.OUT_PATIENT_HEALTH_CARE, + '6515': cte.OUT_PATIENT_HEALTH_CARE, + '3719': cte.WAREHOUSE, + '2471': cte.INDUSTRY, + '7433': cte.NON_HEATED, + '6413': cte.WAREHOUSE, + '3459': cte.INDUSTRY, + '6152': cte.MEDIUM_OFFICE, + '2093': cte.INDUSTRY, + '3031': cte.INDUSTRY, + '5251': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5394': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5141': cte.STRIP_MALL, + '7419': cte.SPORTS_LOCATION, + '4293': cte.WAREHOUSE, + '6834': cte.SECONDARY_SCHOOL, + '2092': cte.INDUSTRY, + '2072': cte.INDUSTRY, + '6712': cte.MEDIUM_OFFICE, + '4411': cte.WAREHOUSE, + '4562': cte.NON_HEATED, + '2096': cte.INDUSTRY, + '5997': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '7212': cte.EVENT_LOCATION, + '6713': cte.MEDIUM_OFFICE, + '9212': cte.NON_HEATED, + '6725': cte.OFFICE_AND_ADMINISTRATION, + '9410': cte.RESIDENTIAL, + '4211': cte.WAREHOUSE, + '5230': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6141': cte.MEDIUM_OFFICE, + '7512': cte.HEALTH_CARE, + '5822': cte.QUICK_SERVICE_RESTAURANT, + '5121': cte.STRIP_MALL, + '6369': cte.SECONDARY_SCHOOL, + '5171': cte.STRIP_MALL, + '5003': cte.STRIP_MALL, + '3630': cte.INDUSTRY, + '5521': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6531': cte.OUT_PATIENT_HEALTH_CARE, + '7413': cte.WAREHOUSE, + '3239': cte.INDUSTRY, + '4715': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6365': cte.UNIVERSITY, + '6121': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6611': cte.WAREHOUSE, + '3649': cte.INDUSTRY, + '2892': cte.INDUSTRY, + '6269': cte.OUT_PATIENT_HEALTH_CARE, + '2020': cte.INDUSTRY, + '6621': cte.WAREHOUSE, + '6312': cte.NON_HEATED, + '6416': cte.INDUSTRY, + '5712': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '2261': cte.INDUSTRY, + '2931': cte.INDUSTRY, + '3011': cte.INDUSTRY, + '6499': cte.STAND_ALONE_RETAIL, + '3599': cte.INDUSTRY, + '2299': cte.INDUSTRY, + '3831': cte.INDUSTRY, + '2410': cte.INDUSTRY, + '5112': cte.STRIP_MALL, + '5941': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6822': cte.SECONDARY_SCHOOL, + '6753': cte.WAREHOUSE, + '5149': cte.STRIP_MALL, + '3190': cte.INDUSTRY, + '6414': cte.WAREHOUSE, + '6633': cte.WAREHOUSE, + '3895': cte.INDUSTRY, + '5133': cte.STRIP_MALL, + '2082': cte.INDUSTRY, + '5512': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '9420': cte.NON_HEATED, + '6543': cte.HOSPITAL, + '4841': cte.INDUSTRY, + '4851': cte.INDUSTRY, + '5432': cte.STRIP_MALL, + '3711': cte.INDUSTRY, + '3460': cte.INDUSTRY, + '2087': cte.INDUSTRY, + '1522': cte.HALL, + '8549': cte.INDUSTRY, + '6242': cte.WAREHOUSE, + '6412': cte.WAREHOUSE, + '6811': cte.SECONDARY_SCHOOL, + '6154': cte.WAREHOUSE, + '7123': cte.WAREHOUSE, + '6993': cte.MEDIUM_OFFICE, + '6742': cte.HOSPITAL, + '5212': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5211': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '7990': cte.HALL, + '3714': cte.INDUSTRY, + '6593': cte.SECONDARY_SCHOOL, + '5172': cte.STRIP_MALL, + '5955': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6635': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '3799': cte.INDUSTRY, + '2819': cte.INDUSTRY, + '5894': cte.QUICK_SERVICE_RESTAURANT, + '9530': cte.NON_HEATED, + '3159': cte.INDUSTRY, + '3713': cte.WAREHOUSE, + '3894': cte.INDUSTRY, + '5721': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5169': cte.STRIP_MALL, + '5593': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6631': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5731': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '2739': cte.INDUSTRY, + '6619': cte.WAREHOUSE, + '6815': cte.SECONDARY_SCHOOL, + '5320': cte.STRIP_MALL, + '3261': cte.INDUSTRY, + '6394': cte.WAREHOUSE, + '2031': cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + '6423': cte.WAREHOUSE, + '3162': cte.INDUSTRY, + '5814': cte.QUICK_SERVICE_RESTAURANT, + '6653': cte.WAREHOUSE, + '2213': cte.INDUSTRY, + '2046': cte.INDUSTRY, + '6251': cte.COMMERCIAL, + '3650': cte.INDUSTRY, + '4799': cte.NON_HEATED, + '5832': cte.SMALL_HOTEL, + '4229': cte.WAREHOUSE, + '4842': cte.WAREHOUSE, + '5163': cte.STRIP_MALL, + '5148': cte.STRIP_MALL, + '2011': cte.INDUSTRY, + '5361': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '2999': cte.INDUSTRY, + '6522': cte.MEDIUM_OFFICE, + '7121': cte.MUSEUM, + '7221': cte.SPORTS_LOCATION, + '1549': cte.OFFICE_AND_ADMINISTRATION, + '5652': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '3331': cte.INDUSTRY, + '6219': cte.WAREHOUSE, + '5421': cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + '3861': cte.INDUSTRY, + '3919': cte.INDUSTRY, + '6441': cte.WAREHOUSE, + '6648': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '8199': cte.INDUSTRY, + '6832': cte.SECONDARY_SCHOOL, + '6992': cte.MEDIUM_OFFICE, + '1521': cte.EVENT_LOCATION, + '6349': cte.WAREHOUSE, + '4921': cte.WAREHOUSE, + '6498': cte.WAREHOUSE, + '6415': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '4122': cte.WAREHOUSE, + '4219': cte.WAREHOUSE, + '9440': cte.NON_HEATED, + '4782': cte.DATACENTER, + '2619': cte.INDUSTRY, + '7229': cte.SPORTS_LOCATION, + '2079': cte.INDUSTRY, + '2320': cte.INDUSTRY, + '3259': cte.INDUSTRY, + '3931': cte.INDUSTRY, + '5470': cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + '4890': cte.WAREHOUSE, + '5599': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '3270': cte.INDUSTRY, + '5186': cte.STRIP_MALL, + '2043': cte.INDUSTRY, + '6733': cte.WAREHOUSE, + '4311': cte.EVENT_LOCATION, + '3451': cte.INDUSTRY, + '2812': cte.INDUSTRY, + '2130': cte.INDUSTRY, + '7449': cte.WAREHOUSE, + '2919': cte.INDUSTRY, + '4315': cte.WAREHOUSE, + '3569': cte.INDUSTRY, + '7399': cte.EVENT_LOCATION, + '6160': cte.OFFICE_AND_ADMINISTRATION, + '7412': cte.NON_HEATED, + '2084': cte.INDUSTRY, + '3870': cte.INDUSTRY, + '5001': cte.STRIP_MALL, + '3411': cte.INDUSTRY, + '1702': cte.NON_HEATED, + '3243': cte.INDUSTRY, + '4926': cte.MEDIUM_OFFICE, + '3490': cte.INDUSTRY, + '2219': cte.INDUSTRY, + '2829': cte.INDUSTRY, + '4399': cte.WAREHOUSE, + '4319': cte.WAREHOUSE, + '2039': cte.INDUSTRY, + '8139': cte.GREEN_HOUSE, + '5146': cte.STRIP_MALL, + '3396': cte.INDUSTRY, + '5161': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '2091': cte.INDUSTRY, + '3850': cte.INDUSTRY, + '5241': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '3049': cte.INDUSTRY, + '5181': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '2627': cte.INDUSTRY, + '3412': cte.INDUSTRY, + '5220': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '3699': cte.INDUSTRY, + '4929': cte.WAREHOUSE, + '3551': cte.INDUSTRY, + '5198': cte.STRIP_MALL, + '6646': cte.NON_HEATED, + '5189': cte.STRIP_MALL, + '5312': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '4214': cte.WAREHOUSE, + '3410': cte.INDUSTRY, + '4859': cte.WAREHOUSE, + '2736': cte.INDUSTRY, + '6642': cte.WAREHOUSE, + '3921': cte.INDUSTRY, + '5815': cte.FULL_SERVICE_RESTAURANT, + '6514': cte.OUT_PATIENT_HEALTH_CARE, + '8399': cte.WAREHOUSE, + '2250': cte.INDUSTRY, + '6378': cte.WAREHOUSE, + '6343': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '2652': cte.INDUSTRY, + '3552': cte.INDUSTRY, + '2891': cte.INDUSTRY, + '6368': cte.SECONDARY_SCHOOL, + '3559': cte.INDUSTRY, + '5145': cte.STRIP_MALL, + '3244': cte.INDUSTRY, + '3292': cte.INDUSTRY, + '4510': cte.WAREHOUSE, + '7423': cte.SPORTS_LOCATION, + '5370': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '4824': cte.WAREHOUSE, + '4832': cte.INDUSTRY, + '6573': cte.HEALTH_CARE, + '6623': cte.NON_HEATED, + '5162': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '4612': cte.WAREHOUSE, + '2629': cte.INDUSTRY, + '3291': cte.INDUSTRY, + '3229': cte.INDUSTRY, + '5829': cte.STAND_ALONE_RETAIL, + '2932': cte.INDUSTRY, + '5594': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '2722': cte.INDUSTRY, + '2811': cte.INDUSTRY, + '2235': cte.INDUSTRY, + '5953': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '3170': cte.INDUSTRY, + '3662': cte.INDUSTRY, + '4879': cte.WAREHOUSE, + '2074': cte.INDUSTRY, + '7429': cte.SPORTS_LOCATION, + '4843': cte.WAREHOUSE, + '6335': cte.OFFICE_AND_ADMINISTRATION, + '4116': cte.WAREHOUSE, + '2622': cte.INDUSTRY, + '6112': cte.OFFICE_AND_ADMINISTRATION, + '4875': cte.WAREHOUSE, + '4792': cte.WAREHOUSE_REFRIGERATED, + '6391': cte.UNIVERSITY, + '6425': cte.WAREHOUSE, + '6212': cte.WAREHOUSE, + '5147': cte.STRIP_MALL, + '2460': cte.INDUSTRY, + '4874': cte.WAREHOUSE, + '6743': cte.DORMITORY, + '3241': cte.INDUSTRY, + '5123': cte.STRIP_MALL, + '4833': cte.NON_HEATED, + '9470': cte.NON_HEATED, + '3932': cte.INDUSTRY, + '4292': cte.WAREHOUSE, + '6424': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '6139': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '2624': cte.INDUSTRY, + '3915': cte.WAREHOUSE, + '7233': cte.CONVENTION_CENTER, + '5184': cte.STRIP_MALL, + '2099': cte.INDUSTRY, + '5129': cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD, + '5913': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '5717': cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD, + '4712': cte.NON_HEATED, + '5142': cte.STRIP_MALL, + '3210': cte.INDUSTRY, + '4834': cte.WAREHOUSE, + '3456': cte.INDUSTRY, + '2075': cte.INDUSTRY, + '3020': cte.INDUSTRY, + '3821': cte.INDUSTRY, + '6613': cte.MEDIUM_OFFICE, + '4826': cte.WAREHOUSE, + '5839': cte.MULTI_FAMILY_HOUSE, + '4316': cte.WAREHOUSE, + '6592': cte.OFFICE_AND_ADMINISTRATION, + '3971': cte.INDUSTRY, + '2694': cte.INDUSTRY, + '3882': cte.INDUSTRY, + '3119': cte.INDUSTRY, + '2495': cte.INDUSTRY, + '4759': cte.MEDIUM_OFFICE, + '6439': cte.WAREHOUSE, + '6643': cte.WAREHOUSE, + '3470': cte.INDUSTRY, + '3531': cte.INDUSTRY, + '4823': cte.NON_HEATED, + '2293': cte.INDUSTRY, + '3532': cte.INDUSTRY, + '3913': cte.INDUSTRY, + '6816': cte.OFFICE_AND_ADMINISTRATION, + '3562': cte.INDUSTRY, + '6496': cte.COMMERCIAL, + '4119': cte.WAREHOUSE, + '6533': cte.OUT_PATIENT_HEALTH_CARE, + '6814': cte.PRIMARY_SCHOOL, + '6353': cte.WAREHOUSE, + '3392': cte.INDUSTRY, + '5114': cte.STRIP_MALL, + '5131': cte.STRIP_MALL} @property def dictionary(self) -> dict: diff --git a/hub/imports/construction/nrcan_physics_parameters.py b/hub/imports/construction/nrcan_physics_parameters.py index 77240a81..eb499080 100644 --- a/hub/imports/construction/nrcan_physics_parameters.py +++ b/hub/imports/construction/nrcan_physics_parameters.py @@ -38,7 +38,7 @@ class NrcanPhysicsParameters: archetype = self._search_archetype(nrcan_catalog, function, building.year_of_construction, self._climate_zone) except KeyError: sys.stderr.write(f'Building {building.name} has unknown construction archetype for building function: ' - f'{building.function} and building year of construction: {building.year_of_construction} ' + f'{building.function}, building year of construction: {building.year_of_construction} ' f'and climate zone {self._climate_zone}\n') return # if building has no thermal zones defined from geometry, and the building will be divided in storeys, From 43030626cea3e77082f4edbbb8f98c33486ee83d Mon Sep 17 00:00:00 2001 From: guille Date: Fri, 24 Feb 2023 15:24:08 -0500 Subject: [PATCH 22/27] Correct bug in insel meb import --- hub/imports/results/insel_monthly_energry_balance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hub/imports/results/insel_monthly_energry_balance.py b/hub/imports/results/insel_monthly_energry_balance.py index 385a8aa8..7dacbd34 100644 --- a/hub/imports/results/insel_monthly_energry_balance.py +++ b/hub/imports/results/insel_monthly_energry_balance.py @@ -46,8 +46,8 @@ class InselMonthlyEnergyBalance: if insel_output_file_path.is_file(): building.heating[cte.MONTH], building.cooling[cte.MONTH] = self._demand(insel_output_file_path) building.heating[cte.YEAR] = pd.DataFrame( - [building.heating[cte.MONTH][cte.INSEL_MEB].sum()], columns=[cte.INSEL_MEB] + [float(building.heating[cte.MONTH][cte.INSEL_MEB]).sum()], columns=[cte.INSEL_MEB] ) building.cooling[cte.YEAR] = pd.DataFrame( - [building.cooling[cte.MONTH][cte.INSEL_MEB].sum()], columns=[cte.INSEL_MEB] + [float(building.cooling[cte.MONTH][cte.INSEL_MEB]).sum()], columns=[cte.INSEL_MEB] ) From 274c8f0f8e599199fe3cf5916f2c28ab09bd23f8 Mon Sep 17 00:00:00 2001 From: guille Date: Fri, 24 Feb 2023 15:33:53 -0500 Subject: [PATCH 23/27] Correct bug in insel meb import --- hub/imports/results/insel_monthly_energry_balance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hub/imports/results/insel_monthly_energry_balance.py b/hub/imports/results/insel_monthly_energry_balance.py index 7dacbd34..91a4c7c7 100644 --- a/hub/imports/results/insel_monthly_energry_balance.py +++ b/hub/imports/results/insel_monthly_energry_balance.py @@ -46,8 +46,8 @@ class InselMonthlyEnergyBalance: if insel_output_file_path.is_file(): building.heating[cte.MONTH], building.cooling[cte.MONTH] = self._demand(insel_output_file_path) building.heating[cte.YEAR] = pd.DataFrame( - [float(building.heating[cte.MONTH][cte.INSEL_MEB]).sum()], columns=[cte.INSEL_MEB] + [building.heating[cte.MONTH][cte.INSEL_MEB].astype(float).sum()], columns=[cte.INSEL_MEB] ) building.cooling[cte.YEAR] = pd.DataFrame( - [float(building.cooling[cte.MONTH][cte.INSEL_MEB]).sum()], columns=[cte.INSEL_MEB] + [building.cooling[cte.MONTH][cte.INSEL_MEB].astype(float).sum()], columns=[cte.INSEL_MEB] ) From cc26a8004b428250197aa4eac99e988fc2ce2fcc Mon Sep 17 00:00:00 2001 From: guille Date: Fri, 24 Feb 2023 15:36:20 -0500 Subject: [PATCH 24/27] Change FUNTION_UT to CODE_UTILI --- hub/unittests/test_construction_factory.py | 2 +- hub/unittests/test_geometry_factory.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hub/unittests/test_construction_factory.py b/hub/unittests/test_construction_factory.py index 026b535f..1c5c1b52 100644 --- a/hub/unittests/test_construction_factory.py +++ b/hub/unittests/test_construction_factory.py @@ -269,7 +269,7 @@ class TestConstructionFactory(TestCase): path=file_path, height_field='citygml_me', year_of_construction_field='ANNEE_CONS', - function_field='LIBELLE_UT', + function_field='CODE_UTILI', function_to_hub=Dictionaries().montreal_function_to_hub_function).city ConstructionFactory('nrcan', city).enrich() diff --git a/hub/unittests/test_geometry_factory.py b/hub/unittests/test_geometry_factory.py index a503bc3b..56819263 100644 --- a/hub/unittests/test_geometry_factory.py +++ b/hub/unittests/test_geometry_factory.py @@ -156,6 +156,6 @@ class TestGeometryFactory(TestCase): city = self._get_city(file, 'geojson', height_field='citygml_me', year_of_construction_field='ANNEE_CONS', - function_field='LIBELLE_UT') + function_field='CODE_UTILI') GeometryHelper.city_mapping(city, plot=False) self.assertTrue(False) From 34172055a62818d2a1120538de8b5549ac88bd12 Mon Sep 17 00:00:00 2001 From: guille Date: Fri, 24 Feb 2023 15:49:40 -0500 Subject: [PATCH 25/27] Store the meb as float --- hub/imports/results/insel_monthly_energry_balance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hub/imports/results/insel_monthly_energry_balance.py b/hub/imports/results/insel_monthly_energry_balance.py index 91a4c7c7..50b5f34d 100644 --- a/hub/imports/results/insel_monthly_energry_balance.py +++ b/hub/imports/results/insel_monthly_energry_balance.py @@ -35,8 +35,8 @@ class InselMonthlyEnergyBalance: demand[i] = '0' heating.append(demand[0]) cooling.append(demand[1]) - monthly_heating = pd.DataFrame(heating, columns=[cte.INSEL_MEB]) - monthly_cooling = pd.DataFrame(cooling, columns=[cte.INSEL_MEB]) + monthly_heating = pd.DataFrame(heating, columns=[cte.INSEL_MEB]).astype(float) + monthly_cooling = pd.DataFrame(cooling, columns=[cte.INSEL_MEB]).astype(float) return monthly_heating, monthly_cooling def enrich(self): From 3d883fc06830cba5b99998bff7516135225d5ccf Mon Sep 17 00:00:00 2001 From: guille Date: Fri, 24 Feb 2023 16:02:34 -0500 Subject: [PATCH 26/27] Skip buildings that doesn't have internal zone in the MEB export --- .../insel/insel_monthly_energy_balance.py | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/hub/exports/building_energy/insel/insel_monthly_energy_balance.py b/hub/exports/building_energy/insel/insel_monthly_energy_balance.py index f136509a..e724c445 100644 --- a/hub/exports/building_energy/insel/insel_monthly_energy_balance.py +++ b/hub/exports/building_energy/insel/insel_monthly_energy_balance.py @@ -13,14 +13,14 @@ from hub.imports.weather.helpers.weather import Weather import hub.helpers.constants as cte _CONSTRUCTION_CODE = { - cte.WALL: '1', - cte.GROUND: '2', - cte.ROOF: '3', - cte.INTERIOR_WALL: '5', - cte.GROUND_WALL: '6', - cte.ATTIC_FLOOR: '7', - cte.INTERIOR_SLAB: '8' - } + cte.WALL: '1', + cte.GROUND: '2', + cte.ROOF: '3', + cte.INTERIOR_WALL: '5', + cte.GROUND_WALL: '6', + cte.ATTIC_FLOOR: '7', + cte.INTERIOR_SLAB: '8' +} class InselMonthlyEnergyBalance(Insel): @@ -35,8 +35,10 @@ class InselMonthlyEnergyBalance(Insel): self._insel_files_paths.append(building.name + '.insel') file_name_out = building.name + '.out' output_path = Path(self._path / file_name_out).resolve() - self._contents.append(self.generate_meb_template(building, output_path, self._radiation_calculation_method, - self._weather_format)) + if building.internal_zones is not None: + self._contents.append( + self.generate_meb_template(building, output_path, self._radiation_calculation_method,self._weather_format) + ) self._export() def _export(self): @@ -86,7 +88,7 @@ class InselMonthlyEnergyBalance(Insel): total_internal_gain = 0 for ig in usage.internal_gains: total_internal_gain += float(ig.average_internal_gain) * \ - (float(ig.convective_fraction) + float(ig.radiative_fraction)) + (float(ig.convective_fraction) + float(ig.radiative_fraction)) parameters.append(f'{total_internal_gain} % BP(12) #2 Internal gains of zone {i + 1}') parameters.append(f'{usage.thermal_control.mean_heating_set_point} % BP(13) #3 Heating setpoint temperature ' f'zone {i + 1} (degree Celsius)') From 3a7dccff8cc37760fe98bf0211577b7f2ba81b21 Mon Sep 17 00:00:00 2001 From: guille Date: Fri, 24 Feb 2023 16:33:42 -0500 Subject: [PATCH 27/27] Set usage to unknown if it cannot be determined. --- hub/persistence/repositories/city.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hub/persistence/repositories/city.py b/hub/persistence/repositories/city.py index a1459c96..20f36882 100644 --- a/hub/persistence/repositories/city.py +++ b/hub/persistence/repositories/city.py @@ -60,8 +60,11 @@ class City(Repository): for building in city.buildings: object_usage = '' for internal_zone in building.internal_zones: - for usage in internal_zone.usages: - object_usage = f'{object_usage}{usage.name}_{usage.percentage} ' + if internal_zone is None or internal_zone.usages is None: + object_usage = 'Unknown' + else: + for usage in internal_zone.usages: + object_usage = f'{object_usage}{usage.name}_{usage.percentage} ' object_usage = object_usage.rstrip() db_city_object = CityObject(db_city.id, building.name,