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 = '() 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 2faed330..6b36328f 100644 --- a/hub/data/construction/nrcan_archetypes.json +++ b/hub/data/construction/nrcan_archetypes.json @@ -1,24002 +1,21122 @@ { "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" - } + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1000_1979_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "1980_2010_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2011_2016_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_4", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_5", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_6", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7A", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_7B", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" + } + }, + "OutdoorsRoofCeiling": { + "opaque_surface_name": "2017_2019_8", + "transparent_surface_name": null, + "transparent_ratio": { + "north": null, + "east": null, + "south": null, + "west": null + } + }, + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" + } + } + }, + { + "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": { + "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": { + "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" } } } diff --git a/hub/data/construction/nrcan_constructions.json b/hub/data/construction/nrcan_constructions.json index 2f1e9b51..e3f3b65a 100644 --- a/hub/data/construction/nrcan_constructions.json +++ b/hub/data/construction/nrcan_constructions.json @@ -1,406 +1,7 @@ { - "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", + "1000_1979_4": { "period_of_construction": "1000_1979", "climate_zone": "4", "type": "OutdoorsWall", @@ -408,15 +9,14 @@ "layers": { "Brickwork Outer": 0.1, "virtual_no_mass_0": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, "Concrete Block (Medium)": 0.1, "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1000_1979_4", + "1000_1979_4": { "period_of_construction": "1000_1979", "climate_zone": "4", "type": "OutdoorsRoofCeiling", @@ -430,8 +30,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_4", + "1000_1979_4": { "period_of_construction": "1000_1979", "climate_zone": "4", "type": "OutdoorsFloor", @@ -446,8 +45,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_4", + "1000_1979_4": { "period_of_construction": "1000_1979", "climate_zone": "4", "type": "GroundWall", @@ -455,15 +53,14 @@ "layers": { "Brickwork Outer": 0.1, "virtual_no_mass_3": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, "Concrete Block (Medium)": 0.1, "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1000_1979_4", + "1000_1979_4": { "period_of_construction": "1000_1979", "climate_zone": "4", "type": "GroundRoofCeiling", @@ -477,8 +74,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_4", + "1000_1979_4": { "period_of_construction": "1000_1979", "climate_zone": "4", "type": "GroundFloor", @@ -493,8 +89,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_5", + "1000_1979_5": { "period_of_construction": "1000_1979", "climate_zone": "5", "type": "OutdoorsWall", @@ -502,15 +97,14 @@ "layers": { "Brickwork Outer": 0.1, "virtual_no_mass_6": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, "Concrete Block (Medium)": 0.1, "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1000_1979_5", + "1000_1979_5": { "period_of_construction": "1000_1979", "climate_zone": "5", "type": "OutdoorsRoofCeiling", @@ -524,8 +118,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_5", + "1000_1979_5": { "period_of_construction": "1000_1979", "climate_zone": "5", "type": "OutdoorsFloor", @@ -540,8 +133,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_5", + "1000_1979_5": { "period_of_construction": "1000_1979", "climate_zone": "5", "type": "GroundWall", @@ -549,15 +141,14 @@ "layers": { "Brickwork Outer": 0.1, "virtual_no_mass_9": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, "Concrete Block (Medium)": 0.1, "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1000_1979_5", + "1000_1979_5": { "period_of_construction": "1000_1979", "climate_zone": "5", "type": "GroundRoofCeiling", @@ -571,8 +162,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_5", + "1000_1979_5": { "period_of_construction": "1000_1979", "climate_zone": "5", "type": "GroundFloor", @@ -587,8 +177,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_6", + "1000_1979_6": { "period_of_construction": "1000_1979", "climate_zone": "6", "type": "OutdoorsWall", @@ -596,15 +185,14 @@ "layers": { "Brickwork Outer": 0.1, "virtual_no_mass_12": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, "Concrete Block (Medium)": 0.1, "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1000_1979_6", + "1000_1979_6": { "period_of_construction": "1000_1979", "climate_zone": "6", "type": "OutdoorsRoofCeiling", @@ -618,8 +206,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_6", + "1000_1979_6": { "period_of_construction": "1000_1979", "climate_zone": "6", "type": "OutdoorsFloor", @@ -634,8 +221,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_6", + "1000_1979_6": { "period_of_construction": "1000_1979", "climate_zone": "6", "type": "GroundWall", @@ -643,15 +229,14 @@ "layers": { "Brickwork Outer": 0.1, "virtual_no_mass_15": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, "Concrete Block (Medium)": 0.1, "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1000_1979_6", + "1000_1979_6": { "period_of_construction": "1000_1979", "climate_zone": "6", "type": "GroundRoofCeiling", @@ -665,8 +250,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_6", + "1000_1979_6": { "period_of_construction": "1000_1979", "climate_zone": "6", "type": "GroundFloor", @@ -681,8 +265,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_7A", + "1000_1979_7A": { "period_of_construction": "1000_1979", "climate_zone": "7A", "type": "OutdoorsWall", @@ -690,15 +273,14 @@ "layers": { "Brickwork Outer": 0.1, "virtual_no_mass_18": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, "Concrete Block (Medium)": 0.1, "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1000_1979_7A", + "1000_1979_7A": { "period_of_construction": "1000_1979", "climate_zone": "7A", "type": "OutdoorsRoofCeiling", @@ -712,8 +294,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_7A", + "1000_1979_7A": { "period_of_construction": "1000_1979", "climate_zone": "7A", "type": "OutdoorsFloor", @@ -728,8 +309,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_7A", + "1000_1979_7A": { "period_of_construction": "1000_1979", "climate_zone": "7A", "type": "GroundWall", @@ -737,15 +317,14 @@ "layers": { "Brickwork Outer": 0.1, "virtual_no_mass_21": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, "Concrete Block (Medium)": 0.1, "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1000_1979_7A", + "1000_1979_7A": { "period_of_construction": "1000_1979", "climate_zone": "7A", "type": "GroundRoofCeiling", @@ -759,8 +338,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_7A", + "1000_1979_7A": { "period_of_construction": "1000_1979", "climate_zone": "7A", "type": "GroundFloor", @@ -775,8 +353,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_7B", + "1000_1979_7B": { "period_of_construction": "1000_1979", "climate_zone": "7B", "type": "OutdoorsWall", @@ -784,15 +361,14 @@ "layers": { "Brickwork Outer": 0.1, "virtual_no_mass_24": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, "Concrete Block (Medium)": 0.1, "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1000_1979_7B", + "1000_1979_7B": { "period_of_construction": "1000_1979", "climate_zone": "7B", "type": "OutdoorsRoofCeiling", @@ -806,8 +382,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_7B", + "1000_1979_7B": { "period_of_construction": "1000_1979", "climate_zone": "7B", "type": "OutdoorsFloor", @@ -822,8 +397,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_7B", + "1000_1979_7B": { "period_of_construction": "1000_1979", "climate_zone": "7B", "type": "GroundWall", @@ -831,15 +405,14 @@ "layers": { "Brickwork Outer": 0.1, "virtual_no_mass_27": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, "Concrete Block (Medium)": 0.1, "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1000_1979_7B", + "1000_1979_7B": { "period_of_construction": "1000_1979", "climate_zone": "7B", "type": "GroundRoofCeiling", @@ -853,8 +426,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_7B", + "1000_1979_7B": { "period_of_construction": "1000_1979", "climate_zone": "7B", "type": "GroundFloor", @@ -869,8 +441,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_8", + "1000_1979_8": { "period_of_construction": "1000_1979", "climate_zone": "8", "type": "OutdoorsWall", @@ -878,15 +449,14 @@ "layers": { "Brickwork Outer": 0.1, "virtual_no_mass_30": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, "Concrete Block (Medium)": 0.1, "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1000_1979_8", + "1000_1979_8": { "period_of_construction": "1000_1979", "climate_zone": "8", "type": "OutdoorsRoofCeiling", @@ -900,8 +470,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_8", + "1000_1979_8": { "period_of_construction": "1000_1979", "climate_zone": "8", "type": "OutdoorsFloor", @@ -916,8 +485,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_8", + "1000_1979_8": { "period_of_construction": "1000_1979", "climate_zone": "8", "type": "GroundWall", @@ -925,15 +493,14 @@ "layers": { "Brickwork Outer": 0.1, "virtual_no_mass_33": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, "Concrete Block (Medium)": 0.1, "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1000_1979_8", + "1000_1979_8": { "period_of_construction": "1000_1979", "climate_zone": "8", "type": "GroundRoofCeiling", @@ -947,8 +514,7 @@ } }, { - "opaque_surface": { - "name": "1000_1979_8", + "1000_1979_8": { "period_of_construction": "1000_1979", "climate_zone": "8", "type": "GroundFloor", @@ -963,8 +529,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_4", + "1980_2010_4": { "period_of_construction": "1980_2010", "climate_zone": "4", "type": "OutdoorsWall", @@ -972,14 +537,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_36": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1980_2010_4", + "1980_2010_4": { "period_of_construction": "1980_2010", "climate_zone": "4", "type": "OutdoorsRoofCeiling", @@ -993,8 +557,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_4", + "1980_2010_4": { "period_of_construction": "1980_2010", "climate_zone": "4", "type": "OutdoorsFloor", @@ -1009,8 +572,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_4", + "1980_2010_4": { "period_of_construction": "1980_2010", "climate_zone": "4", "type": "GroundWall", @@ -1018,14 +580,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_39": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1980_2010_4", + "1980_2010_4": { "period_of_construction": "1980_2010", "climate_zone": "4", "type": "GroundRoofCeiling", @@ -1039,8 +600,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_4", + "1980_2010_4": { "period_of_construction": "1980_2010", "climate_zone": "4", "type": "GroundFloor", @@ -1055,8 +615,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_5", + "1980_2010_5": { "period_of_construction": "1980_2010", "climate_zone": "5", "type": "OutdoorsWall", @@ -1064,14 +623,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_42": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1980_2010_5", + "1980_2010_5": { "period_of_construction": "1980_2010", "climate_zone": "5", "type": "OutdoorsRoofCeiling", @@ -1085,8 +643,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_5", + "1980_2010_5": { "period_of_construction": "1980_2010", "climate_zone": "5", "type": "OutdoorsFloor", @@ -1101,8 +658,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_5", + "1980_2010_5": { "period_of_construction": "1980_2010", "climate_zone": "5", "type": "GroundWall", @@ -1110,14 +666,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_45": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1980_2010_5", + "1980_2010_5": { "period_of_construction": "1980_2010", "climate_zone": "5", "type": "GroundRoofCeiling", @@ -1131,8 +686,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_5", + "1980_2010_5": { "period_of_construction": "1980_2010", "climate_zone": "5", "type": "GroundFloor", @@ -1147,8 +701,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_6", + "1980_2010_6": { "period_of_construction": "1980_2010", "climate_zone": "6", "type": "OutdoorsWall", @@ -1156,14 +709,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_48": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1980_2010_6", + "1980_2010_6": { "period_of_construction": "1980_2010", "climate_zone": "6", "type": "OutdoorsRoofCeiling", @@ -1177,8 +729,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_6", + "1980_2010_6": { "period_of_construction": "1980_2010", "climate_zone": "6", "type": "OutdoorsFloor", @@ -1193,8 +744,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_6", + "1980_2010_6": { "period_of_construction": "1980_2010", "climate_zone": "6", "type": "GroundWall", @@ -1202,14 +752,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_51": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1980_2010_6", + "1980_2010_6": { "period_of_construction": "1980_2010", "climate_zone": "6", "type": "GroundRoofCeiling", @@ -1223,8 +772,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_6", + "1980_2010_6": { "period_of_construction": "1980_2010", "climate_zone": "6", "type": "GroundFloor", @@ -1239,8 +787,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_7A", + "1980_2010_7A": { "period_of_construction": "1980_2010", "climate_zone": "7A", "type": "OutdoorsWall", @@ -1248,14 +795,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_54": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1980_2010_7A", + "1980_2010_7A": { "period_of_construction": "1980_2010", "climate_zone": "7A", "type": "OutdoorsRoofCeiling", @@ -1269,8 +815,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_7A", + "1980_2010_7A": { "period_of_construction": "1980_2010", "climate_zone": "7A", "type": "OutdoorsFloor", @@ -1285,8 +830,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_7A", + "1980_2010_7A": { "period_of_construction": "1980_2010", "climate_zone": "7A", "type": "GroundWall", @@ -1294,14 +838,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_57": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1980_2010_7A", + "1980_2010_7A": { "period_of_construction": "1980_2010", "climate_zone": "7A", "type": "GroundRoofCeiling", @@ -1315,8 +858,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_7A", + "1980_2010_7A": { "period_of_construction": "1980_2010", "climate_zone": "7A", "type": "GroundFloor", @@ -1331,8 +873,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_7B", + "1980_2010_7B": { "period_of_construction": "1980_2010", "climate_zone": "7B", "type": "OutdoorsWall", @@ -1340,14 +881,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_60": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1980_2010_7B", + "1980_2010_7B": { "period_of_construction": "1980_2010", "climate_zone": "7B", "type": "OutdoorsRoofCeiling", @@ -1361,8 +901,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_7B", + "1980_2010_7B": { "period_of_construction": "1980_2010", "climate_zone": "7B", "type": "OutdoorsFloor", @@ -1377,8 +916,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_7B", + "1980_2010_7B": { "period_of_construction": "1980_2010", "climate_zone": "7B", "type": "GroundWall", @@ -1386,14 +924,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_63": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1980_2010_7B", + "1980_2010_7B": { "period_of_construction": "1980_2010", "climate_zone": "7B", "type": "GroundRoofCeiling", @@ -1407,8 +944,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_7B", + "1980_2010_7B": { "period_of_construction": "1980_2010", "climate_zone": "7B", "type": "GroundFloor", @@ -1423,8 +959,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_8", + "1980_2010_8": { "period_of_construction": "1980_2010", "climate_zone": "8", "type": "OutdoorsWall", @@ -1432,14 +967,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_66": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1980_2010_8", + "1980_2010_8": { "period_of_construction": "1980_2010", "climate_zone": "8", "type": "OutdoorsRoofCeiling", @@ -1453,8 +987,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_8", + "1980_2010_8": { "period_of_construction": "1980_2010", "climate_zone": "8", "type": "OutdoorsFloor", @@ -1469,8 +1002,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_8", + "1980_2010_8": { "period_of_construction": "1980_2010", "climate_zone": "8", "type": "GroundWall", @@ -1478,14 +1010,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_69": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "1980_2010_8", + "1980_2010_8": { "period_of_construction": "1980_2010", "climate_zone": "8", "type": "GroundRoofCeiling", @@ -1499,8 +1030,7 @@ } }, { - "opaque_surface": { - "name": "1980_2010_8", + "1980_2010_8": { "period_of_construction": "1980_2010", "climate_zone": "8", "type": "GroundFloor", @@ -1515,8 +1045,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_4", + "2011_2016_4": { "period_of_construction": "2011_2016", "climate_zone": "4", "type": "OutdoorsWall", @@ -1524,14 +1053,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_72": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2011_2016_4", + "2011_2016_4": { "period_of_construction": "2011_2016", "climate_zone": "4", "type": "OutdoorsRoofCeiling", @@ -1545,8 +1073,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_4", + "2011_2016_4": { "period_of_construction": "2011_2016", "climate_zone": "4", "type": "OutdoorsFloor", @@ -1561,8 +1088,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_4", + "2011_2016_4": { "period_of_construction": "2011_2016", "climate_zone": "4", "type": "GroundWall", @@ -1570,14 +1096,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_75": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2011_2016_4", + "2011_2016_4": { "period_of_construction": "2011_2016", "climate_zone": "4", "type": "GroundRoofCeiling", @@ -1591,8 +1116,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_4", + "2011_2016_4": { "period_of_construction": "2011_2016", "climate_zone": "4", "type": "GroundFloor", @@ -1607,8 +1131,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_5", + "2011_2016_5": { "period_of_construction": "2011_2016", "climate_zone": "5", "type": "OutdoorsWall", @@ -1616,14 +1139,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_78": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2011_2016_5", + "2011_2016_5": { "period_of_construction": "2011_2016", "climate_zone": "5", "type": "OutdoorsRoofCeiling", @@ -1637,8 +1159,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_5", + "2011_2016_5": { "period_of_construction": "2011_2016", "climate_zone": "5", "type": "OutdoorsFloor", @@ -1653,8 +1174,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_5", + "2011_2016_5": { "period_of_construction": "2011_2016", "climate_zone": "5", "type": "GroundWall", @@ -1662,14 +1182,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_81": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2011_2016_5", + "2011_2016_5": { "period_of_construction": "2011_2016", "climate_zone": "5", "type": "GroundRoofCeiling", @@ -1683,8 +1202,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_5", + "2011_2016_5": { "period_of_construction": "2011_2016", "climate_zone": "5", "type": "GroundFloor", @@ -1699,8 +1217,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_6", + "2011_2016_6": { "period_of_construction": "2011_2016", "climate_zone": "6", "type": "OutdoorsWall", @@ -1708,14 +1225,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_84": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2011_2016_6", + "2011_2016_6": { "period_of_construction": "2011_2016", "climate_zone": "6", "type": "OutdoorsRoofCeiling", @@ -1729,8 +1245,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_6", + "2011_2016_6": { "period_of_construction": "2011_2016", "climate_zone": "6", "type": "OutdoorsFloor", @@ -1745,8 +1260,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_6", + "2011_2016_6": { "period_of_construction": "2011_2016", "climate_zone": "6", "type": "GroundWall", @@ -1754,14 +1268,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_87": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2011_2016_6", + "2011_2016_6": { "period_of_construction": "2011_2016", "climate_zone": "6", "type": "GroundRoofCeiling", @@ -1775,8 +1288,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_6", + "2011_2016_6": { "period_of_construction": "2011_2016", "climate_zone": "6", "type": "GroundFloor", @@ -1791,8 +1303,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_7A", + "2011_2016_7A": { "period_of_construction": "2011_2016", "climate_zone": "7A", "type": "OutdoorsWall", @@ -1800,14 +1311,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_90": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2011_2016_7A", + "2011_2016_7A": { "period_of_construction": "2011_2016", "climate_zone": "7A", "type": "OutdoorsRoofCeiling", @@ -1821,8 +1331,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_7A", + "2011_2016_7A": { "period_of_construction": "2011_2016", "climate_zone": "7A", "type": "OutdoorsFloor", @@ -1837,8 +1346,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_7A", + "2011_2016_7A": { "period_of_construction": "2011_2016", "climate_zone": "7A", "type": "GroundWall", @@ -1846,14 +1354,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_93": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2011_2016_7A", + "2011_2016_7A": { "period_of_construction": "2011_2016", "climate_zone": "7A", "type": "GroundRoofCeiling", @@ -1867,8 +1374,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_7A", + "2011_2016_7A": { "period_of_construction": "2011_2016", "climate_zone": "7A", "type": "GroundFloor", @@ -1883,8 +1389,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_7B", + "2011_2016_7B": { "period_of_construction": "2011_2016", "climate_zone": "7B", "type": "OutdoorsWall", @@ -1892,14 +1397,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_96": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2011_2016_7B", + "2011_2016_7B": { "period_of_construction": "2011_2016", "climate_zone": "7B", "type": "OutdoorsRoofCeiling", @@ -1913,8 +1417,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_7B", + "2011_2016_7B": { "period_of_construction": "2011_2016", "climate_zone": "7B", "type": "OutdoorsFloor", @@ -1929,8 +1432,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_7B", + "2011_2016_7B": { "period_of_construction": "2011_2016", "climate_zone": "7B", "type": "GroundWall", @@ -1938,14 +1440,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_99": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2011_2016_7B", + "2011_2016_7B": { "period_of_construction": "2011_2016", "climate_zone": "7B", "type": "GroundRoofCeiling", @@ -1959,8 +1460,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_7B", + "2011_2016_7B": { "period_of_construction": "2011_2016", "climate_zone": "7B", "type": "GroundFloor", @@ -1975,8 +1475,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_8", + "2011_2016_8": { "period_of_construction": "2011_2016", "climate_zone": "8", "type": "OutdoorsWall", @@ -1984,14 +1483,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_102": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2011_2016_8", + "2011_2016_8": { "period_of_construction": "2011_2016", "climate_zone": "8", "type": "OutdoorsRoofCeiling", @@ -2005,8 +1503,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_8", + "2011_2016_8": { "period_of_construction": "2011_2016", "climate_zone": "8", "type": "OutdoorsFloor", @@ -2021,8 +1518,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_8", + "2011_2016_8": { "period_of_construction": "2011_2016", "climate_zone": "8", "type": "GroundWall", @@ -2030,14 +1526,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_105": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2011_2016_8", + "2011_2016_8": { "period_of_construction": "2011_2016", "climate_zone": "8", "type": "GroundRoofCeiling", @@ -2051,8 +1546,7 @@ } }, { - "opaque_surface": { - "name": "2011_2016_8", + "2011_2016_8": { "period_of_construction": "2011_2016", "climate_zone": "8", "type": "GroundFloor", @@ -2067,8 +1561,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_4", + "2017_2019_4": { "period_of_construction": "2017_2019", "climate_zone": "4", "type": "OutdoorsWall", @@ -2076,14 +1569,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_108": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2017_2019_4", + "2017_2019_4": { "period_of_construction": "2017_2019", "climate_zone": "4", "type": "OutdoorsRoofCeiling", @@ -2097,8 +1589,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_4", + "2017_2019_4": { "period_of_construction": "2017_2019", "climate_zone": "4", "type": "OutdoorsFloor", @@ -2113,8 +1604,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_4", + "2017_2019_4": { "period_of_construction": "2017_2019", "climate_zone": "4", "type": "GroundWall", @@ -2122,14 +1612,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_111": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2017_2019_4", + "2017_2019_4": { "period_of_construction": "2017_2019", "climate_zone": "4", "type": "GroundRoofCeiling", @@ -2143,8 +1632,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_4", + "2017_2019_4": { "period_of_construction": "2017_2019", "climate_zone": "4", "type": "GroundFloor", @@ -2159,8 +1647,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_5", + "2017_2019_5": { "period_of_construction": "2017_2019", "climate_zone": "5", "type": "OutdoorsWall", @@ -2168,14 +1655,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_114": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2017_2019_5", + "2017_2019_5": { "period_of_construction": "2017_2019", "climate_zone": "5", "type": "OutdoorsRoofCeiling", @@ -2189,8 +1675,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_5", + "2017_2019_5": { "period_of_construction": "2017_2019", "climate_zone": "5", "type": "OutdoorsFloor", @@ -2205,8 +1690,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_5", + "2017_2019_5": { "period_of_construction": "2017_2019", "climate_zone": "5", "type": "GroundWall", @@ -2214,14 +1698,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_117": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2017_2019_5", + "2017_2019_5": { "period_of_construction": "2017_2019", "climate_zone": "5", "type": "GroundRoofCeiling", @@ -2235,8 +1718,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_5", + "2017_2019_5": { "period_of_construction": "2017_2019", "climate_zone": "5", "type": "GroundFloor", @@ -2251,8 +1733,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_6", + "2017_2019_6": { "period_of_construction": "2017_2019", "climate_zone": "6", "type": "OutdoorsWall", @@ -2260,14 +1741,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_120": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2017_2019_6", + "2017_2019_6": { "period_of_construction": "2017_2019", "climate_zone": "6", "type": "OutdoorsRoofCeiling", @@ -2281,8 +1761,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_6", + "2017_2019_6": { "period_of_construction": "2017_2019", "climate_zone": "6", "type": "OutdoorsFloor", @@ -2297,8 +1776,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_6", + "2017_2019_6": { "period_of_construction": "2017_2019", "climate_zone": "6", "type": "GroundWall", @@ -2306,14 +1784,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_123": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2017_2019_6", + "2017_2019_6": { "period_of_construction": "2017_2019", "climate_zone": "6", "type": "GroundRoofCeiling", @@ -2327,8 +1804,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_6", + "2017_2019_6": { "period_of_construction": "2017_2019", "climate_zone": "6", "type": "GroundFloor", @@ -2343,8 +1819,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_7A", + "2017_2019_7A": { "period_of_construction": "2017_2019", "climate_zone": "7A", "type": "OutdoorsWall", @@ -2352,14 +1827,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_126": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2017_2019_7A", + "2017_2019_7A": { "period_of_construction": "2017_2019", "climate_zone": "7A", "type": "OutdoorsRoofCeiling", @@ -2373,8 +1847,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_7A", + "2017_2019_7A": { "period_of_construction": "2017_2019", "climate_zone": "7A", "type": "OutdoorsFloor", @@ -2389,8 +1862,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_7A", + "2017_2019_7A": { "period_of_construction": "2017_2019", "climate_zone": "7A", "type": "GroundWall", @@ -2398,14 +1870,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_129": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2017_2019_7A", + "2017_2019_7A": { "period_of_construction": "2017_2019", "climate_zone": "7A", "type": "GroundRoofCeiling", @@ -2419,8 +1890,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_7A", + "2017_2019_7A": { "period_of_construction": "2017_2019", "climate_zone": "7A", "type": "GroundFloor", @@ -2435,8 +1905,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_7B", + "2017_2019_7B": { "period_of_construction": "2017_2019", "climate_zone": "7B", "type": "OutdoorsWall", @@ -2444,14 +1913,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_132": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2017_2019_7B", + "2017_2019_7B": { "period_of_construction": "2017_2019", "climate_zone": "7B", "type": "OutdoorsRoofCeiling", @@ -2465,8 +1933,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_7B", + "2017_2019_7B": { "period_of_construction": "2017_2019", "climate_zone": "7B", "type": "OutdoorsFloor", @@ -2481,8 +1948,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_7B", + "2017_2019_7B": { "period_of_construction": "2017_2019", "climate_zone": "7B", "type": "GroundWall", @@ -2490,14 +1956,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_135": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2017_2019_7B", + "2017_2019_7B": { "period_of_construction": "2017_2019", "climate_zone": "7B", "type": "GroundRoofCeiling", @@ -2511,8 +1976,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_7B", + "2017_2019_7B": { "period_of_construction": "2017_2019", "climate_zone": "7B", "type": "GroundFloor", @@ -2527,8 +1991,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_8", + "2017_2019_8": { "period_of_construction": "2017_2019", "climate_zone": "8", "type": "OutdoorsWall", @@ -2536,14 +1999,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_138": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2017_2019_8", + "2017_2019_8": { "period_of_construction": "2017_2019", "climate_zone": "8", "type": "OutdoorsRoofCeiling", @@ -2557,8 +2019,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_8", + "2017_2019_8": { "period_of_construction": "2017_2019", "climate_zone": "8", "type": "OutdoorsFloor", @@ -2573,8 +2034,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_8", + "2017_2019_8": { "period_of_construction": "2017_2019", "climate_zone": "8", "type": "GroundWall", @@ -2582,14 +2042,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_141": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2017_2019_8", + "2017_2019_8": { "period_of_construction": "2017_2019", "climate_zone": "8", "type": "GroundRoofCeiling", @@ -2603,8 +2062,7 @@ } }, { - "opaque_surface": { - "name": "2017_2019_8", + "2017_2019_8": { "period_of_construction": "2017_2019", "climate_zone": "8", "type": "GroundFloor", @@ -2619,8 +2077,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_4", + "2020_3000_4": { "period_of_construction": "2020_3000", "climate_zone": "4", "type": "OutdoorsWall", @@ -2628,14 +2085,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_144": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2020_3000_4", + "2020_3000_4": { "period_of_construction": "2020_3000", "climate_zone": "4", "type": "OutdoorsRoofCeiling", @@ -2649,8 +2105,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_4", + "2020_3000_4": { "period_of_construction": "2020_3000", "climate_zone": "4", "type": "OutdoorsFloor", @@ -2665,8 +2120,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_4", + "2020_3000_4": { "period_of_construction": "2020_3000", "climate_zone": "4", "type": "GroundWall", @@ -2674,14 +2128,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_147": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2020_3000_4", + "2020_3000_4": { "period_of_construction": "2020_3000", "climate_zone": "4", "type": "GroundRoofCeiling", @@ -2695,8 +2148,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_4", + "2020_3000_4": { "period_of_construction": "2020_3000", "climate_zone": "4", "type": "GroundFloor", @@ -2711,8 +2163,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_5", + "2020_3000_5": { "period_of_construction": "2020_3000", "climate_zone": "5", "type": "OutdoorsWall", @@ -2720,14 +2171,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_150": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2020_3000_5", + "2020_3000_5": { "period_of_construction": "2020_3000", "climate_zone": "5", "type": "OutdoorsRoofCeiling", @@ -2741,8 +2191,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_5", + "2020_3000_5": { "period_of_construction": "2020_3000", "climate_zone": "5", "type": "OutdoorsFloor", @@ -2757,8 +2206,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_5", + "2020_3000_5": { "period_of_construction": "2020_3000", "climate_zone": "5", "type": "GroundWall", @@ -2766,14 +2214,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_153": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2020_3000_5", + "2020_3000_5": { "period_of_construction": "2020_3000", "climate_zone": "5", "type": "GroundRoofCeiling", @@ -2787,8 +2234,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_5", + "2020_3000_5": { "period_of_construction": "2020_3000", "climate_zone": "5", "type": "GroundFloor", @@ -2803,8 +2249,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_6", + "2020_3000_6": { "period_of_construction": "2020_3000", "climate_zone": "6", "type": "OutdoorsWall", @@ -2812,14 +2257,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_156": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2020_3000_6", + "2020_3000_6": { "period_of_construction": "2020_3000", "climate_zone": "6", "type": "OutdoorsRoofCeiling", @@ -2833,8 +2277,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_6", + "2020_3000_6": { "period_of_construction": "2020_3000", "climate_zone": "6", "type": "OutdoorsFloor", @@ -2849,8 +2292,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_6", + "2020_3000_6": { "period_of_construction": "2020_3000", "climate_zone": "6", "type": "GroundWall", @@ -2858,14 +2300,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_159": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2020_3000_6", + "2020_3000_6": { "period_of_construction": "2020_3000", "climate_zone": "6", "type": "GroundRoofCeiling", @@ -2879,8 +2320,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_6", + "2020_3000_6": { "period_of_construction": "2020_3000", "climate_zone": "6", "type": "GroundFloor", @@ -2895,8 +2335,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_7A", + "2020_3000_7A": { "period_of_construction": "2020_3000", "climate_zone": "7A", "type": "OutdoorsWall", @@ -2904,14 +2343,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_162": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2020_3000_7A", + "2020_3000_7A": { "period_of_construction": "2020_3000", "climate_zone": "7A", "type": "OutdoorsRoofCeiling", @@ -2925,8 +2363,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_7A", + "2020_3000_7A": { "period_of_construction": "2020_3000", "climate_zone": "7A", "type": "OutdoorsFloor", @@ -2941,8 +2378,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_7A", + "2020_3000_7A": { "period_of_construction": "2020_3000", "climate_zone": "7A", "type": "GroundWall", @@ -2950,14 +2386,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_165": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2020_3000_7A", + "2020_3000_7A": { "period_of_construction": "2020_3000", "climate_zone": "7A", "type": "GroundRoofCeiling", @@ -2971,8 +2406,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_7A", + "2020_3000_7A": { "period_of_construction": "2020_3000", "climate_zone": "7A", "type": "GroundFloor", @@ -2987,8 +2421,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_7B", + "2020_3000_7B": { "period_of_construction": "2020_3000", "climate_zone": "7B", "type": "OutdoorsWall", @@ -2996,14 +2429,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_168": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2020_3000_7B", + "2020_3000_7B": { "period_of_construction": "2020_3000", "climate_zone": "7B", "type": "OutdoorsRoofCeiling", @@ -3017,8 +2449,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_7B", + "2020_3000_7B": { "period_of_construction": "2020_3000", "climate_zone": "7B", "type": "OutdoorsFloor", @@ -3033,8 +2464,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_7B", + "2020_3000_7B": { "period_of_construction": "2020_3000", "climate_zone": "7B", "type": "GroundWall", @@ -3042,14 +2472,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_171": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2020_3000_7B", + "2020_3000_7B": { "period_of_construction": "2020_3000", "climate_zone": "7B", "type": "GroundRoofCeiling", @@ -3063,8 +2492,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_7B", + "2020_3000_7B": { "period_of_construction": "2020_3000", "climate_zone": "7B", "type": "GroundFloor", @@ -3079,8 +2507,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_8", + "2020_3000_8": { "period_of_construction": "2020_3000", "climate_zone": "8", "type": "OutdoorsWall", @@ -3088,14 +2515,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_174": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2020_3000_8", + "2020_3000_8": { "period_of_construction": "2020_3000", "climate_zone": "8", "type": "OutdoorsRoofCeiling", @@ -3109,8 +2535,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_8", + "2020_3000_8": { "period_of_construction": "2020_3000", "climate_zone": "8", "type": "OutdoorsFloor", @@ -3125,8 +2550,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_8", + "2020_3000_8": { "period_of_construction": "2020_3000", "climate_zone": "8", "type": "GroundWall", @@ -3134,14 +2558,13 @@ "layers": { "Lightweight Metallic Cladding": 0.006, "virtual_no_mass_177": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 } } }, { - "opaque_surface": { - "name": "2020_3000_8", + "2020_3000_8": { "period_of_construction": "2020_3000", "climate_zone": "8", "type": "GroundRoofCeiling", @@ -3155,8 +2578,7 @@ } }, { - "opaque_surface": { - "name": "2020_3000_8", + "2020_3000_8": { "period_of_construction": "2020_3000", "climate_zone": "8", "type": "GroundFloor", @@ -3171,6 +2593,368 @@ } } ], + "transparent_surfaces": [ + { + "Window_1000_1979_4": { + "period_of_construction": "1000_1979", + "climate_zone": "4", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 4.09 + } + }, + { + "Window_1000_1979_5": { + "period_of_construction": "1000_1979", + "climate_zone": "5", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 3.35 + } + }, + { + "Window_1000_1979_6": { + "period_of_construction": "1000_1979", + "climate_zone": "6", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "Window_1000_1979_7A": { + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "Window_1000_1979_7B": { + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "Window_1000_1979_8": { + "period_of_construction": "1000_1979", + "climate_zone": "8", + "shgc": 0.41, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "Window_1980_2010_4": { + "period_of_construction": "1980_2010", + "climate_zone": "4", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 4.09 + } + }, + { + "Window_1980_2010_5": { + "period_of_construction": "1980_2010", + "climate_zone": "5", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 3.35 + } + }, + { + "Window_1980_2010_6": { + "period_of_construction": "1980_2010", + "climate_zone": "6", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "Window_1980_2010_7A": { + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "Window_1980_2010_7B": { + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "Window_1980_2010_8": { + "period_of_construction": "1980_2010", + "climate_zone": "8", + "shgc": 0.41, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.95 + } + }, + { + "Window_2011_2016_4": { + "period_of_construction": "2011_2016", + "climate_zone": "4", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.4 + } + }, + { + "Window_2011_2016_5": { + "period_of_construction": "2011_2016", + "climate_zone": "5", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.2 + } + }, + { + "Window_2011_2016_6": { + "period_of_construction": "2011_2016", + "climate_zone": "6", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.2 + } + }, + { + "Window_2011_2016_7A": { + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.2 + } + }, + { + "Window_2011_2016_7B": { + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.2 + } + }, + { + "Window_2011_2016_8": { + "period_of_construction": "2011_2016", + "climate_zone": "8", + "shgc": 0.41, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.6 + } + }, + { + "Window_2017_2019_4": { + "period_of_construction": "2017_2019", + "climate_zone": "4", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 2.1 + } + }, + { + "Window_2017_2019_5": { + "period_of_construction": "2017_2019", + "climate_zone": "5", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.9 + } + }, + { + "Window_2017_2019_6": { + "period_of_construction": "2017_2019", + "climate_zone": "6", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.9 + } + }, + { + "Window_2017_2019_7A": { + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.9 + } + }, + { + "Window_2017_2019_7B": { + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.9 + } + }, + { + "Window_2017_2019_8": { + "period_of_construction": "2017_2019", + "climate_zone": "8", + "shgc": 0.41, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.4 + } + }, + { + "Window_2020_3000_4": { + "period_of_construction": "2020_3000", + "climate_zone": "4", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.9 + } + }, + { + "Skylight_2020_3000_4": { + "period_of_construction": "2020_3000", + "climate_zone": "4", + "shgc": 0.39, + "type": "Skylight", + "frame_ratio": 0, + "u_value": 2.69 + } + }, + { + "Window_2020_3000_5": { + "period_of_construction": "2020_3000", + "climate_zone": "5", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.9 + } + }, + { + "Skylight_2020_3000_5": { + "period_of_construction": "2020_3000", + "climate_zone": "5", + "shgc": 0.39, + "type": "Skylight", + "frame_ratio": 0, + "u_value": 2.69 + } + }, + { + "Window_2020_3000_6": { + "period_of_construction": "2020_3000", + "climate_zone": "6", + "shgc": 0.39, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.73 + } + }, + { + "Skylight_2020_3000_6": { + "period_of_construction": "2020_3000", + "climate_zone": "6", + "shgc": 0.39, + "type": "Skylight", + "frame_ratio": 0, + "u_value": 2.41 + } + }, + { + "Window_2020_3000_7A": { + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.73 + } + }, + { + "Skylight_2020_3000_7A": { + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "shgc": 0.49, + "type": "Skylight", + "frame_ratio": 0, + "u_value": 2.41 + } + }, + { + "Window_2020_3000_7B": { + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "shgc": 0.49, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.44 + } + }, + { + "Skylight_2020_3000_7B": { + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "shgc": 0.49, + "type": "Skylight", + "frame_ratio": 0, + "u_value": 2.01 + } + }, + { + "Window_2020_3000_8": { + "period_of_construction": "2020_3000", + "climate_zone": "8", + "shgc": 0.41, + "type": "Window", + "frame_ratio": 0, + "u_value": 1.44 + } + }, + { + "Skylight_2020_3000_8": { + "period_of_construction": "2020_3000", + "climate_zone": "8", + "shgc": 0.41, + "type": "Skylight", + "frame_ratio": 0, + "u_value": 2.01 + } + } + ], "materials": [ { "Urea Formaldehyde Foam": { @@ -3307,7 +3091,7 @@ { "virtual_no_mass_0": { "no_mass": true, - "thermal_resistance": 0.5638863573598453 + "thermal_resistance": -1.6768839507634041 } }, { @@ -3325,7 +3109,7 @@ { "virtual_no_mass_3": { "no_mass": true, - "thermal_resistance": 1.032776393743338 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3343,7 +3127,7 @@ { "virtual_no_mass_6": { "no_mass": true, - "thermal_resistance": 0.6689612511671336 + "thermal_resistance": -1.5718090569561158 } }, { @@ -3361,7 +3145,7 @@ { "virtual_no_mass_9": { "no_mass": true, - "thermal_resistance": 1.032776393743338 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3379,7 +3163,7 @@ { "virtual_no_mass_12": { "no_mass": true, - "thermal_resistance": 0.7729169687315997 + "thermal_resistance": -1.4678533393916497 } }, { @@ -3397,7 +3181,7 @@ { "virtual_no_mass_15": { "no_mass": true, - "thermal_resistance": 1.032776393743338 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3415,7 +3199,7 @@ { "virtual_no_mass_18": { "no_mass": true, - "thermal_resistance": 0.8531869276207892 + "thermal_resistance": -1.3875833805024602 } }, { @@ -3433,7 +3217,7 @@ { "virtual_no_mass_21": { "no_mass": true, - "thermal_resistance": 1.032776393743338 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3451,7 +3235,7 @@ { "virtual_no_mass_24": { "no_mass": true, - "thermal_resistance": 0.8531869276207892 + "thermal_resistance": -1.3875833805024602 } }, { @@ -3469,7 +3253,7 @@ { "virtual_no_mass_27": { "no_mass": true, - "thermal_resistance": 1.032776393743338 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3487,7 +3271,7 @@ { "virtual_no_mass_30": { "no_mass": true, - "thermal_resistance": 0.9663008442813746 + "thermal_resistance": -1.2744694638418748 } }, { @@ -3505,7 +3289,7 @@ { "virtual_no_mass_33": { "no_mass": true, - "thermal_resistance": 1.032776393743338 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3523,7 +3307,7 @@ { "virtual_no_mass_36": { "no_mass": true, - "thermal_resistance": 1.3926323457989316 + "thermal_resistance": -0.8720380395966056 } }, { @@ -3541,7 +3325,7 @@ { "virtual_no_mass_39": { "no_mass": true, - "thermal_resistance": 1.2822339820188915 + "thermal_resistance": -0.9824364033766457 } }, { @@ -3559,7 +3343,7 @@ { "virtual_no_mass_42": { "no_mass": true, - "thermal_resistance": 1.098344625341288 + "thermal_resistance": -1.1663257600542491 } }, { @@ -3577,7 +3361,7 @@ { "virtual_no_mass_45": { "no_mass": true, - "thermal_resistance": 1.4602225304166927 + "thermal_resistance": -0.8044478549788445 } }, { @@ -3595,7 +3379,7 @@ { "virtual_no_mass_48": { "no_mass": true, - "thermal_resistance": 1.9794868058928283 + "thermal_resistance": -0.2851835795027089 } }, { @@ -3613,7 +3397,7 @@ { "virtual_no_mass_51": { "no_mass": true, - "thermal_resistance": 1.8107182029900082 + "thermal_resistance": -0.45395218240552904 } }, { @@ -3631,7 +3415,7 @@ { "virtual_no_mass_54": { "no_mass": true, - "thermal_resistance": 2.522242375921866 + "thermal_resistance": 0.2575719905263285 } }, { @@ -3649,7 +3433,7 @@ { "virtual_no_mass_57": { "no_mass": true, - "thermal_resistance": 1.9850101419878297 + "thermal_resistance": -0.27966024340770756 } }, { @@ -3667,7 +3451,7 @@ { "virtual_no_mass_60": { "no_mass": true, - "thermal_resistance": 2.522242375921866 + "thermal_resistance": 0.2575719905263285 } }, { @@ -3685,7 +3469,7 @@ { "virtual_no_mass_63": { "no_mass": true, - "thermal_resistance": 1.9850101419878297 + "thermal_resistance": -0.27966024340770756 } }, { @@ -3703,7 +3487,7 @@ { "virtual_no_mass_66": { "no_mass": true, - "thermal_resistance": 3.3773873175771665 + "thermal_resistance": 1.112716932181629 } }, { @@ -3721,7 +3505,7 @@ { "virtual_no_mass_69": { "no_mass": true, - "thermal_resistance": 2.5139133459207 + "thermal_resistance": 0.2492429605251627 } }, { @@ -3739,7 +3523,7 @@ { "virtual_no_mass_72": { "no_mass": true, - "thermal_resistance": 2.806672140120416 + "thermal_resistance": 0.5420017547248785 } }, { @@ -3757,7 +3541,7 @@ { "virtual_no_mass_75": { "no_mass": true, - "thermal_resistance": 1.3926323457989316 + "thermal_resistance": -0.8720380395966056 } }, { @@ -3775,7 +3559,7 @@ { "virtual_no_mass_78": { "no_mass": true, - "thermal_resistance": 3.229191267675515 + "thermal_resistance": 0.9645208822799773 } }, { @@ -3793,7 +3577,7 @@ { "virtual_no_mass_81": { "no_mass": true, - "thermal_resistance": 2.2705913929578747 + "thermal_resistance": 0.005921007562337266 } }, { @@ -3811,7 +3595,7 @@ { "virtual_no_mass_84": { "no_mass": true, - "thermal_resistance": 3.6806519614686586 + "thermal_resistance": 1.4159815760731211 } }, { @@ -3829,7 +3613,7 @@ { "virtual_no_mass_87": { "no_mass": true, - "thermal_resistance": 3.153195726080622 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3847,7 +3631,7 @@ { "virtual_no_mass_90": { "no_mass": true, - "thermal_resistance": 4.393973727422003 + "thermal_resistance": 2.129303342026466 } }, { @@ -3865,7 +3649,7 @@ { "virtual_no_mass_93": { "no_mass": true, - "thermal_resistance": 3.153195726080622 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3883,7 +3667,7 @@ { "virtual_no_mass_96": { "no_mass": true, - "thermal_resistance": 4.393973727422003 + "thermal_resistance": 2.129303342026466 } }, { @@ -3901,7 +3685,7 @@ { "virtual_no_mass_99": { "no_mass": true, - "thermal_resistance": 3.153195726080622 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3919,7 +3703,7 @@ { "virtual_no_mass_102": { "no_mass": true, - "thermal_resistance": 5.096549839834181 + "thermal_resistance": 2.831879454438644 } }, { @@ -3937,7 +3721,7 @@ { "virtual_no_mass_105": { "no_mass": true, - "thermal_resistance": 4.393973727422003 + "thermal_resistance": 2.129303342026466 } }, { @@ -3955,7 +3739,7 @@ { "virtual_no_mass_108": { "no_mass": true, - "thermal_resistance": 2.806672140120416 + "thermal_resistance": 0.5420017547248785 } }, { @@ -3973,7 +3757,7 @@ { "virtual_no_mass_111": { "no_mass": true, - "thermal_resistance": 1.3926323457989316 + "thermal_resistance": -0.8720380395966056 } }, { @@ -3991,7 +3775,7 @@ { "virtual_no_mass_114": { "no_mass": true, - "thermal_resistance": 3.229191267675515 + "thermal_resistance": 0.9645208822799773 } }, { @@ -4009,7 +3793,7 @@ { "virtual_no_mass_117": { "no_mass": true, - "thermal_resistance": 2.2705913929578747 + "thermal_resistance": 0.005921007562337266 } }, { @@ -4027,7 +3811,7 @@ { "virtual_no_mass_120": { "no_mass": true, - "thermal_resistance": 3.6806519614686586 + "thermal_resistance": 1.4159815760731211 } }, { @@ -4045,7 +3829,7 @@ { "virtual_no_mass_123": { "no_mass": true, - "thermal_resistance": 3.153195726080622 + "thermal_resistance": 0.8885253406850846 } }, { @@ -4063,7 +3847,7 @@ { "virtual_no_mass_126": { "no_mass": true, - "thermal_resistance": 4.393973727422003 + "thermal_resistance": 2.129303342026466 } }, { @@ -4081,7 +3865,7 @@ { "virtual_no_mass_129": { "no_mass": true, - "thermal_resistance": 3.153195726080622 + "thermal_resistance": 0.8885253406850846 } }, { @@ -4099,7 +3883,7 @@ { "virtual_no_mass_132": { "no_mass": true, - "thermal_resistance": 4.393973727422003 + "thermal_resistance": 2.129303342026466 } }, { @@ -4117,7 +3901,7 @@ { "virtual_no_mass_135": { "no_mass": true, - "thermal_resistance": 3.153195726080622 + "thermal_resistance": 0.8885253406850846 } }, { @@ -4135,7 +3919,7 @@ { "virtual_no_mass_138": { "no_mass": true, - "thermal_resistance": 5.096549839834181 + "thermal_resistance": 2.831879454438644 } }, { @@ -4153,7 +3937,7 @@ { "virtual_no_mass_141": { "no_mass": true, - "thermal_resistance": 4.393973727422003 + "thermal_resistance": 2.129303342026466 } }, { @@ -4171,7 +3955,7 @@ { "virtual_no_mass_144": { "no_mass": true, - "thermal_resistance": 3.0803448275862073 + "thermal_resistance": 0.8156744421906699 } }, { @@ -4189,7 +3973,7 @@ { "virtual_no_mass_147": { "no_mass": true, - "thermal_resistance": 1.3926323457989316 + "thermal_resistance": -0.8720380395966056 } }, { @@ -4207,7 +3991,7 @@ { "virtual_no_mass_150": { "no_mass": true, - "thermal_resistance": 3.4056538711776185 + "thermal_resistance": 1.140983485782081 } }, { @@ -4225,7 +4009,7 @@ { "virtual_no_mass_153": { "no_mass": true, - "thermal_resistance": 2.2705913929578747 + "thermal_resistance": 0.005921007562337266 } }, { @@ -4243,7 +4027,7 @@ { "virtual_no_mass_156": { "no_mass": true, - "thermal_resistance": 3.7987356321839085 + "thermal_resistance": 1.534065246788371 } }, { @@ -4261,7 +4045,7 @@ { "virtual_no_mass_159": { "no_mass": true, - "thermal_resistance": 3.153195726080622 + "thermal_resistance": 0.8885253406850846 } }, { @@ -4279,7 +4063,7 @@ { "virtual_no_mass_162": { "no_mass": true, - "thermal_resistance": 4.283231756214916 + "thermal_resistance": 2.018561370819379 } }, { @@ -4297,7 +4081,7 @@ { "virtual_no_mass_165": { "no_mass": true, - "thermal_resistance": 3.153195726080622 + "thermal_resistance": 0.8885253406850846 } }, { @@ -4315,7 +4099,7 @@ { "virtual_no_mass_168": { "no_mass": true, - "thermal_resistance": 4.895226860254084 + "thermal_resistance": 2.6305564748585466 } }, { @@ -4333,7 +4117,7 @@ { "virtual_no_mass_171": { "no_mass": true, - "thermal_resistance": 3.153195726080622 + "thermal_resistance": 0.8885253406850846 } }, { @@ -4351,7 +4135,7 @@ { "virtual_no_mass_174": { "no_mass": true, - "thermal_resistance": 5.692675026123302 + "thermal_resistance": 3.4280046407277647 } }, { @@ -4369,7 +4153,7 @@ { "virtual_no_mass_177": { "no_mass": true, - "thermal_resistance": 4.393973727422003 + "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_catalog.py b/hub/unittests/test_construction_catalog.py index ba50cd26..c85bf337 100644 --- a/hub/unittests/test_construction_catalog.py +++ b/hub/unittests/test_construction_catalog.py @@ -3,6 +3,7 @@ TestConstructionCatalog SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2022 Concordia CERC group Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca +Contributors Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ from unittest import TestCase @@ -17,9 +18,29 @@ class TestConstructionCatalog(TestCase): constructions = catalog.names('constructions') windows = catalog.names('windows') materials = catalog.names('materials') - self.assertTrue(len(constructions['constructions']), 24) - self.assertTrue(len(windows['windows']), 4) - self.assertTrue(len(materials['materials']), 19) + self.assertEqual(24, len(constructions['constructions'])) + self.assertEqual(4, len(windows['windows'])) + self.assertEqual(19, len(materials['materials'])) + with self.assertRaises(ValueError): + catalog.names('unknown') + + # retrieving all the entries should not raise any exceptions + for category in catalog_categories: + for value in catalog_categories[category]: + catalog.get_entry(value) + + with self.assertRaises(IndexError): + catalog.get_entry('unknown') + + def test_nrcan_catalog(self): + catalog = ConstructionCatalogFactory('nrcan').catalog + catalog_categories = catalog.names() + constructions = catalog.names('constructions') + windows = catalog.names('windows') + materials = catalog.names('materials') + self.assertEqual(180, len(constructions['constructions'])) + self.assertEqual(36, len(windows['windows'])) + self.assertEqual(192, len(materials['materials'])) with self.assertRaises(ValueError): catalog.names('unknown') diff --git a/hub/unittests/test_construction_factory.py b/hub/unittests/test_construction_factory.py index 7e37777a..026b535f 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,45 @@ 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 + + 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)