diff --git a/hub/catalog_factories/construction/cerc_catalog.py b/hub/catalog_factories/construction/cerc_catalog.py
new file mode 100644
index 00000000..ca16daae
--- /dev/null
+++ b/hub/catalog_factories/construction/cerc_catalog.py
@@ -0,0 +1,244 @@
+"""
+Cerc construction catalog (Copy of Nrcan catalog)
+Catlog Coder Mohamed Osman mohamed.osman@mail.concordia.ca
+"""
+
+import json
+from pathlib import Path
+from hub.catalog_factories.catalog import Catalog
+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
+import hub.helpers.constants as cte
+
+
+class CercCatalog(Catalog):
+ """
+ Cerc catalog class copy of Cerc catalog (Copy of Nrcan catalog)
+ """
+ def __init__(self, path):
+ _path_archetypes = Path(path / 'cerc_archetypes.json').resolve()
+ _path_constructions = Path(path / 'cerc_constructions.json').resolve()
+ with open(_path_archetypes, 'r', encoding='utf-8') as file:
+ self._archetypes = json.load(file)
+ with open(_path_constructions, 'r', encoding='utf-8') as file:
+ self._constructions = json.load(file)
+
+ self._catalog_windows = self._load_windows()
+ self._catalog_materials = self._load_materials()
+ self._catalog_constructions = self._load_constructions()
+ self._catalog_archetypes = self._load_archetypes()
+
+ # store the full catalog data model in self._content
+ self._content = Content(self._catalog_archetypes,
+ self._catalog_constructions,
+ self._catalog_materials,
+ self._catalog_windows)
+
+ def _load_windows(self):
+ _catalog_windows = []
+ windows = self._constructions['transparent_surfaces']
+ for window in windows:
+ name = list(window.keys())[0]
+ window_id = name
+ g_value = window[name]['shgc']
+ window_type = window[name]['type']
+ frame_ratio = window[name]['frame_ratio']
+ overall_u_value = window[name]['u_value']
+ _catalog_windows.append(Window(window_id, frame_ratio, g_value, overall_u_value, name, window_type))
+ return _catalog_windows
+
+ def _load_materials(self):
+ _catalog_materials = []
+ materials = self._constructions['materials']
+ for material in materials:
+ name = list(material.keys())[0]
+ material_id = name
+ no_mass = material[name]['no_mass']
+ thermal_resistance = None
+ conductivity = None
+ density = None
+ specific_heat = None
+ solar_absorptance = None
+ thermal_absorptance = None
+ visible_absorptance = None
+ if no_mass:
+ thermal_resistance = material[name]['thermal_resistance']
+ else:
+ solar_absorptance = material[name]['solar_absorptance']
+ thermal_absorptance = str(1 - float(material[name]['thermal_emittance']))
+ visible_absorptance = material[name]['visible_absorptance']
+ conductivity = material[name]['conductivity']
+ density = material[name]['density']
+ specific_heat = material[name]['specific_heat']
+ _material = Material(material_id,
+ name,
+ solar_absorptance,
+ thermal_absorptance,
+ visible_absorptance,
+ no_mass,
+ thermal_resistance,
+ conductivity,
+ density,
+ specific_heat)
+ _catalog_materials.append(_material)
+ return _catalog_materials
+
+ def _load_constructions(self):
+ _catalog_constructions = []
+ constructions = self._constructions['opaque_surfaces']
+ for construction in constructions:
+ name = list(construction.keys())[0]
+ construction_id = name
+ construction_type = ConstructionHelper().nrcan_surfaces_types_to_hub_types[construction[name]['type']]
+ layers = []
+ for layer in construction[name]['layers']:
+ layer_id = layer
+ layer_name = layer
+ material_id = layer
+ thickness = construction[name]['layers'][layer]
+ for material in self._catalog_materials:
+ if str(material_id) == str(material.id):
+ layers.append(Layer(layer_id, layer_name, material, thickness))
+ break
+ _catalog_constructions.append(Construction(construction_id, construction_type, name, layers))
+ return _catalog_constructions
+
+ def _load_archetypes(self):
+ _catalog_archetypes = []
+ archetypes = self._archetypes['archetypes']
+ for archetype in archetypes:
+ archetype_id = f'{archetype["function"]}_{archetype["period_of_construction"]}_{archetype["climate_zone"]}'
+ function = archetype['function']
+ name = archetype_id
+ climate_zone = archetype['climate_zone']
+ construction_period = archetype['period_of_construction']
+ average_storey_height = archetype['average_storey_height']
+ thermal_capacity = float(archetype['thermal_capacity']) * 1000
+ extra_loses_due_to_thermal_bridges = archetype['extra_loses_due_thermal_bridges']
+ infiltration_rate_for_ventilation_system_off = (
+ archetype['infiltration_rate_for_ventilation_system_off'] / cte.HOUR_TO_SECONDS
+ )
+ infiltration_rate_for_ventilation_system_on = (
+ archetype['infiltration_rate_for_ventilation_system_on'] / cte.HOUR_TO_SECONDS
+ )
+ infiltration_rate_area_for_ventilation_system_off = (
+ archetype['infiltration_rate_area_for_ventilation_system_off'] * 1
+ )
+ infiltration_rate_area_for_ventilation_system_on = (
+ archetype['infiltration_rate_area_for_ventilation_system_on'] * 1
+ )
+
+ archetype_constructions = []
+ for archetype_construction in archetype['constructions']:
+ archetype_construction_type = ConstructionHelper().nrcan_surfaces_types_to_hub_types[archetype_construction]
+ archetype_construction_name = archetype['constructions'][archetype_construction]['opaque_surface_name']
+ for construction in self._catalog_constructions:
+ if archetype_construction_type == construction.type and construction.name == archetype_construction_name:
+ _construction = None
+ _window = None
+ _window_ratio = None
+ if 'transparent_surface_name' in archetype['constructions'][archetype_construction].keys():
+ _window_ratio = archetype['constructions'][archetype_construction]['transparent_ratio']
+ _window_id = archetype['constructions'][archetype_construction]['transparent_surface_name']
+ for window in self._catalog_windows:
+ if _window_id == window.id:
+ _window = window
+ break
+ _construction = Construction(construction.id,
+ construction.type,
+ construction.name,
+ construction.layers,
+ _window_ratio,
+ _window)
+ archetype_constructions.append(_construction)
+ break
+
+ _catalog_archetypes.append(Archetype(archetype_id,
+ name,
+ function,
+ climate_zone,
+ construction_period,
+ archetype_constructions,
+ average_storey_height,
+ thermal_capacity,
+ extra_loses_due_to_thermal_bridges,
+ None,
+ infiltration_rate_for_ventilation_system_off,
+ infiltration_rate_for_ventilation_system_on,
+ infiltration_rate_area_for_ventilation_system_off,
+ infiltration_rate_area_for_ventilation_system_on))
+ return _catalog_archetypes
+
+ def names(self, category=None):
+ """
+ Get the catalog elements names
+ :parm: optional category filter
+ """
+ if category is None:
+ _names = {'archetypes': [], 'constructions': [], 'materials': [], 'windows': []}
+ for archetype in self._content.archetypes:
+ _names['archetypes'].append(archetype.name)
+ for construction in self._content.constructions:
+ _names['constructions'].append(construction.name)
+ for material in self._content.materials:
+ _names['materials'].append(material.name)
+ for window in self._content.windows:
+ _names['windows'].append(window.name)
+ else:
+ _names = {category: []}
+ if category.lower() == 'archetypes':
+ for archetype in self._content.archetypes:
+ _names[category].append(archetype.name)
+ elif category.lower() == 'constructions':
+ for construction in self._content.constructions:
+ _names[category].append(construction.name)
+ elif category.lower() == 'materials':
+ for material in self._content.materials:
+ _names[category].append(material.name)
+ elif category.lower() == 'windows':
+ for window in self._content.windows:
+ _names[category].append(window.name)
+ else:
+ raise ValueError(f'Unknown category [{category}]')
+ return _names
+
+ def entries(self, category=None):
+ """
+ Get the catalog elements
+ :parm: optional category filter
+ """
+ if category is None:
+ return self._content
+ if category.lower() == 'archetypes':
+ return self._content.archetypes
+ if category.lower() == 'constructions':
+ return self._content.constructions
+ if category.lower() == 'materials':
+ return self._content.materials
+ if category.lower() == 'windows':
+ return self._content.windows
+ raise ValueError(f'Unknown category [{category}]')
+
+ def get_entry(self, name):
+ """
+ Get one catalog element by names
+ :parm: entry name
+ """
+ for entry in self._content.archetypes:
+ if entry.name.lower() == name.lower():
+ return entry
+ for entry in self._content.constructions:
+ if entry.name.lower() == name.lower():
+ return entry
+ for entry in self._content.materials:
+ if entry.name.lower() == name.lower():
+ return entry
+ for entry in self._content.windows:
+ if entry.name.lower() == name.lower():
+ return entry
+ raise IndexError(f"{name} doesn't exists in the catalog")
diff --git a/hub/catalog_factories/construction/eilat_catalog.py b/hub/catalog_factories/construction/eilat_catalog.py
index 8868f3e1..0afe0f73 100644
--- a/hub/catalog_factories/construction/eilat_catalog.py
+++ b/hub/catalog_factories/construction/eilat_catalog.py
@@ -126,6 +126,10 @@ class EilatCatalog(Catalog):
'infiltration_rate_for_ventilation_system_off'] / cte.HOUR_TO_SECONDS
infiltration_rate_for_ventilation_system_on = archetype[
'infiltration_rate_for_ventilation_system_on'] / cte.HOUR_TO_SECONDS
+ infiltration_rate_area_for_ventilation_system_off = archetype[
+ 'infiltration_rate_area_for_ventilation_system_off']
+ infiltration_rate_area_for_ventilation_system_on = archetype[
+ 'infiltration_rate_area_for_ventilation_system_on']
archetype_constructions = []
for archetype_construction in archetype['constructions']:
@@ -164,8 +168,8 @@ class EilatCatalog(Catalog):
None,
infiltration_rate_for_ventilation_system_off,
infiltration_rate_for_ventilation_system_on,
- 0,
- 0))
+ infiltration_rate_area_for_ventilation_system_off,
+ infiltration_rate_area_for_ventilation_system_on))
return _catalog_archetypes
def names(self, category=None):
diff --git a/hub/catalog_factories/construction/nrel_catalog.py b/hub/catalog_factories/construction/nrel_catalog.py
index 6236a420..f825746b 100644
--- a/hub/catalog_factories/construction/nrel_catalog.py
+++ b/hub/catalog_factories/construction/nrel_catalog.py
@@ -129,6 +129,12 @@ class NrelCatalog(Catalog):
infiltration_rate_for_ventilation_system_on = float(
archetype['infiltration_rate_for_ventilation_system_on']['#text']
) / cte.HOUR_TO_SECONDS
+ infiltration_rate_area_for_ventilation_system_off = float(
+ archetype['infiltration_rate_area_for_ventilation_system_on']['#text']
+ )
+ infiltration_rate_area_for_ventilation_system_on = float(
+ archetype['infiltration_rate_area_for_ventilation_system_on']['#text']
+ )
archetype_constructions = []
for archetype_construction in archetype['constructions']['construction']:
@@ -163,8 +169,8 @@ class NrelCatalog(Catalog):
indirect_heated_ratio,
infiltration_rate_for_ventilation_system_off,
infiltration_rate_for_ventilation_system_on,
- 0,
- 0))
+ infiltration_rate_area_for_ventilation_system_off,
+ infiltration_rate_area_for_ventilation_system_on))
return _catalog_archetypes
def names(self, category=None):
diff --git a/hub/catalog_factories/construction_catalog_factory.py b/hub/catalog_factories/construction_catalog_factory.py
index 270cb1b4..66d197cb 100644
--- a/hub/catalog_factories/construction_catalog_factory.py
+++ b/hub/catalog_factories/construction_catalog_factory.py
@@ -9,6 +9,8 @@ from pathlib import Path
from typing import TypeVar
from hub.catalog_factories.construction.nrcan_catalog import NrcanCatalog
+from hub.catalog_factories.construction.cerc_catalog import CercCatalog
+
from hub.catalog_factories.construction.nrel_catalog import NrelCatalog
from hub.catalog_factories.construction.eilat_catalog import EilatCatalog
from hub.catalog_factories.construction.palma_catalog import PalmaCatalog
@@ -42,6 +44,13 @@ class ConstructionCatalogFactory:
"""
return NrcanCatalog(self._path)
+ @property
+ def _cerc(self):
+ """
+ Retrieve CERC catalog
+ """
+ return CercCatalog(self._path)
+
@property
def _eilat(self):
"""
diff --git a/hub/catalog_factories/usage/cerc_catalog.py b/hub/catalog_factories/usage/cerc_catalog.py
new file mode 100644
index 00000000..05881546
--- /dev/null
+++ b/hub/catalog_factories/usage/cerc_catalog.py
@@ -0,0 +1,220 @@
+"""
+NRCAN usage catalog
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2022 Concordia CERC group
+Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
+Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
+"""
+
+import json
+import urllib.request
+from pathlib import Path
+
+import xmltodict
+
+import hub.helpers.constants as cte
+from hub.catalog_factories.catalog import Catalog
+from hub.catalog_factories.data_models.usages.appliances import Appliances
+from hub.catalog_factories.data_models.usages.content import Content
+from hub.catalog_factories.data_models.usages.lighting import Lighting
+from hub.catalog_factories.data_models.usages.occupancy import Occupancy
+from hub.catalog_factories.data_models.usages.domestic_hot_water import DomesticHotWater
+from hub.catalog_factories.data_models.usages.schedule import Schedule
+from hub.catalog_factories.data_models.usages.thermal_control import ThermalControl
+from hub.catalog_factories.data_models.usages.usage import Usage
+from hub.catalog_factories.usage.usage_helper import UsageHelper
+
+
+class CercCatalog(Catalog):
+ """
+ Cerc catalog class (copy of NrcanCatalog)
+ """
+ def __init__(self, path):
+ self._schedules_path = Path(path / 'nrcan_schedules.json').resolve()
+ self._space_types_path = Path(path / 'nrcan_space_types.json').resolve()
+ self._space_compliance_path = Path(path / 'nrcan_space_compliance_2015.json').resolve()
+ self._content = None
+ self._schedules = {}
+ self._load_schedules()
+ self._content = Content(self._load_archetypes())
+
+ @staticmethod
+ def _extract_schedule(raw):
+ nrcan_schedule_type = raw['category']
+ if 'Heating' in raw['name'] and 'Water' not in raw['name']:
+ nrcan_schedule_type = f'{nrcan_schedule_type} Heating'
+ elif 'Cooling' in raw['name']:
+ nrcan_schedule_type = f'{nrcan_schedule_type} Cooling'
+ if nrcan_schedule_type not in UsageHelper().nrcan_schedule_type_to_hub_schedule_type:
+ return None
+ hub_type = UsageHelper().nrcan_schedule_type_to_hub_schedule_type[nrcan_schedule_type]
+ data_type = UsageHelper().nrcan_data_type_to_hub_data_type[raw['units']]
+ time_step = UsageHelper().nrcan_time_to_hub_time[raw['type']]
+ # nrcan only uses daily range for the schedules
+ time_range = cte.DAY
+ day_types = UsageHelper().nrcan_day_type_to_hub_days[raw['day_types']]
+ return Schedule(hub_type, raw['values'], data_type, time_step, time_range, day_types)
+
+ def _load_schedules(self):
+ _schedule_types = []
+ with open(self._schedules_path, 'r') as f:
+ schedules_type = json.load(f)
+ for schedule_type in schedules_type['tables']['schedules']['table']:
+ schedule = CercCatalog._extract_schedule(schedule_type)
+ if schedule_type['name'] not in _schedule_types:
+ _schedule_types.append(schedule_type['name'])
+ if schedule is not None:
+ self._schedules[schedule_type['name']] = [schedule]
+ else:
+ if schedule is not None:
+ _schedules = self._schedules[schedule_type['name']]
+ _schedules.append(schedule)
+ self._schedules[schedule_type['name']] = _schedules
+
+ def _get_schedules(self, name):
+ schedule = None
+ if name in self._schedules:
+ schedule = self._schedules[name]
+ return schedule
+
+ def _load_archetypes(self):
+ usages = []
+ with open(self._space_types_path, 'r') as f:
+ space_types = json.load(f)['tables']['space_types']['table']
+ space_types = [st for st in space_types if st['space_type'] == 'WholeBuilding']
+ with open(self._space_compliance_path, 'r') as f:
+ space_types_compliance = json.load(f)['tables']['space_compliance']['table']
+ space_types_compliance = [st for st in space_types_compliance if st['space_type'] == 'WholeBuilding']
+ space_types_dictionary = {}
+ for space_type in space_types_compliance:
+ usage_type = space_type['building_type']
+ # people/m2
+ occupancy_density = space_type['occupancy_per_area_people_per_m2']
+ # W/m2
+ lighting_density = space_type['lighting_per_area_w_per_m2']
+ # W/m2
+ appliances_density = space_type['electric_equipment_per_area_w_per_m2']
+ # peak flow in gallons/h/m2
+ domestic_hot_water_peak_flow = (
+ space_type['service_water_heating_peak_flow_per_area'] *
+ cte.GALLONS_TO_QUBIC_METERS / cte.HOUR_TO_SECONDS
+ )
+ space_types_dictionary[usage_type] = {'occupancy_per_area': occupancy_density,
+ 'lighting_per_area': lighting_density,
+ 'electric_equipment_per_area': appliances_density,
+ 'service_water_heating_peak_flow_per_area': domestic_hot_water_peak_flow
+ }
+
+ for space_type in space_types:
+ usage_type = space_type['building_type']
+ space_type_compliance = space_types_dictionary[usage_type]
+ occupancy_density = space_type_compliance['occupancy_per_area']
+ lighting_density = space_type_compliance['lighting_per_area']
+ appliances_density = space_type_compliance['electric_equipment_per_area']
+ domestic_hot_water_peak_flow = space_type_compliance['service_water_heating_peak_flow_per_area']
+
+ occupancy_schedule_name = space_type['occupancy_schedule']
+ lighting_schedule_name = space_type['lighting_schedule']
+ appliance_schedule_name = space_type['electric_equipment_schedule']
+ hvac_schedule_name = space_type['exhaust_schedule']
+ if 'FAN' in hvac_schedule_name:
+ hvac_schedule_name = hvac_schedule_name.replace('FAN', 'Fan')
+ heating_setpoint_schedule_name = space_type['heating_setpoint_schedule']
+ cooling_setpoint_schedule_name = space_type['cooling_setpoint_schedule']
+ domestic_hot_water_schedule_name = space_type['service_water_heating_schedule']
+ occupancy_schedule = self._get_schedules(occupancy_schedule_name)
+ lighting_schedule = self._get_schedules(lighting_schedule_name)
+ appliance_schedule = self._get_schedules(appliance_schedule_name)
+ heating_schedule = self._get_schedules(heating_setpoint_schedule_name)
+ cooling_schedule = self._get_schedules(cooling_setpoint_schedule_name)
+ hvac_availability = self._get_schedules(hvac_schedule_name)
+ domestic_hot_water_load_schedule = self._get_schedules(domestic_hot_water_schedule_name)
+
+ # ACH -> 1/s
+ mechanical_air_change = space_type['ventilation_air_changes'] / cte.HOUR_TO_SECONDS
+ # cfm/ft2 to m3/m2.s
+ ventilation_rate = space_type['ventilation_per_area'] / (cte.METERS_TO_FEET * cte.MINUTES_TO_SECONDS)
+ # cfm/person to m3/m2.s
+ ventilation_rate += space_type['ventilation_per_person'] / (
+ pow(cte.METERS_TO_FEET, 3) * cte.MINUTES_TO_SECONDS
+ ) * occupancy_density
+
+ lighting_radiative_fraction = space_type['lighting_fraction_radiant']
+ lighting_convective_fraction = 0
+ if lighting_radiative_fraction is not None:
+ lighting_convective_fraction = 1 - lighting_radiative_fraction
+ lighting_latent_fraction = 0
+ appliances_radiative_fraction = space_type['electric_equipment_fraction_radiant']
+ appliances_latent_fraction = space_type['electric_equipment_fraction_latent']
+ appliances_convective_fraction = 0
+ if appliances_radiative_fraction is not None and appliances_latent_fraction is not None:
+ appliances_convective_fraction = 1 - appliances_radiative_fraction - appliances_latent_fraction
+
+ domestic_hot_water_service_temperature = space_type['service_water_heating_target_temperature']
+
+ occupancy = Occupancy(occupancy_density,
+ None,
+ None,
+ None,
+ occupancy_schedule)
+ lighting = Lighting(lighting_density,
+ lighting_convective_fraction,
+ lighting_radiative_fraction,
+ lighting_latent_fraction,
+ lighting_schedule)
+ appliances = Appliances(appliances_density,
+ appliances_convective_fraction,
+ appliances_radiative_fraction,
+ appliances_latent_fraction,
+ appliance_schedule)
+ thermal_control = ThermalControl(None,
+ None,
+ None,
+ hvac_availability,
+ heating_schedule,
+ cooling_schedule)
+ domestic_hot_water = DomesticHotWater(None,
+ domestic_hot_water_peak_flow,
+ domestic_hot_water_service_temperature,
+ domestic_hot_water_load_schedule)
+
+ hours_day = None
+ days_year = None
+ usages.append(Usage(usage_type,
+ hours_day,
+ days_year,
+ mechanical_air_change,
+ ventilation_rate,
+ occupancy,
+ lighting,
+ appliances,
+ thermal_control,
+ domestic_hot_water))
+ return usages
+
+ def names(self, category=None):
+ """
+ Get the catalog elements names
+ :parm: for usage catalog category filter does nothing as there is only one category (usages)
+ """
+ _names = {'usages': []}
+ for usage in self._content.usages:
+ _names['usages'].append(usage.name)
+ return _names
+
+ def entries(self, category=None):
+ """
+ Get the catalog elements
+ :parm: for usage catalog category filter does nothing as there is only one category (usages)
+ """
+ return self._content
+
+ def get_entry(self, name):
+ """
+ Get one catalog element by names
+ :parm: entry name
+ """
+ for usage in self._content.usages:
+ if usage.name.lower() == name.lower():
+ return usage
+ raise IndexError(f"{name} doesn't exists in the catalog")
diff --git a/hub/catalog_factories/usage_catalog_factory.py b/hub/catalog_factories/usage_catalog_factory.py
index 42df7f4b..bc10dea7 100644
--- a/hub/catalog_factories/usage_catalog_factory.py
+++ b/hub/catalog_factories/usage_catalog_factory.py
@@ -10,6 +10,7 @@ from typing import TypeVar
from hub.catalog_factories.usage.comnet_catalog import ComnetCatalog
from hub.catalog_factories.usage.nrcan_catalog import NrcanCatalog
+from hub.catalog_factories.usage.cerc_catalog import CercCatalog
from hub.catalog_factories.usage.eilat_catalog import EilatCatalog
from hub.catalog_factories.usage.palma_catalog import PalmaCatalog
from hub.helpers.utils import validate_import_export_type
@@ -44,11 +45,12 @@ class UsageCatalogFactory:
return NrcanCatalog(self._path)
@property
- def _palma(self):
+ def _cerc(self):
"""
- Retrieve Palma catalog
+ Retrieve cerc catalog
"""
- return PalmaCatalog(self._path)
+ # nrcan retrieves the data directly from github
+ return CercCatalog(self._path)
@property
def _eilat(self):
@@ -57,6 +59,13 @@ class UsageCatalogFactory:
"""
return EilatCatalog(self._path)
+ @property
+ def _palma(self):
+ """
+ Retrieve Palma catalog
+ """
+ return PalmaCatalog(self._path)
+
@property
def catalog(self) -> Catalog:
"""
diff --git a/hub/data/construction/CERC_archetypes.json b/hub/data/construction/CERC_archetypes.json
new file mode 100644
index 00000000..f4f2f7a7
--- /dev/null
+++ b/hub/data/construction/CERC_archetypes.json
@@ -0,0 +1,66820 @@
+{
+ "archetypes": [
+ {
+ "function": "SingleFamilyHouse",
+ "period_of_construction": "1900_1950",
+ "climate_zone": "6",
+ "average_storey_height": 3,
+ "thermal_capacity": 300,
+ "extra_loses_due_thermal_bridges": 0.1,
+ "infiltration_rate_for_ventilation_system_on": 0,
+ "infiltration_rate_for_ventilation_system_off": 6.0,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1900_1950_6",
+ "transparent_surface_name": "Window_1900_1950_6",
+ "transparent_ratio": {
+ "north": "14.0",
+ "east": "5.0",
+ "south": "14.0",
+ "west": "5.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1900_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1900_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1900_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1900_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1900_1950_6"
+ }
+ }
+ },
+
+
+ {
+ "function": "SingleFamilyHouse",
+ "period_of_construction": "1951_1980",
+ "climate_zone": "6",
+ "average_storey_height": 3,
+ "thermal_capacity": 300,
+ "extra_loses_due_thermal_bridges": 0.1,
+ "infiltration_rate_for_ventilation_system_on": 0,
+ "infiltration_rate_for_ventilation_system_off": 5.0,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1980_6",
+ "transparent_surface_name": "Window_1950_1980_6",
+ "transparent_ratio": {
+ "north": "14.0",
+ "east": "5.0",
+ "south": "14.0",
+ "west": "5.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1980_6"
+ }
+ }
+ },
+
+ {
+ "function": "MURB_MidRiseApartment",
+ "period_of_construction": "1900_1950",
+ "climate_zone": "6",
+ "average_storey_height": 3,
+ "thermal_capacity": 300,
+ "extra_loses_due_thermal_bridges": 0.1,
+ "infiltration_rate_for_ventilation_system_on": 0,
+ "infiltration_rate_for_ventilation_system_off": 6.0,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1900_1950_6",
+ "transparent_surface_name": "Window_1900_1950_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "5.0",
+ "south": "30.0",
+ "west": "5.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1900_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1900_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1900_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1900_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1900_1950_6"
+ }
+ }
+ },
+
+
+ {
+ "function": "MURB_MidRiseApartment",
+ "period_of_construction": "1951_1980",
+ "climate_zone": "6",
+ "average_storey_height": 3,
+ "thermal_capacity": 300,
+ "extra_loses_due_thermal_bridges": 0.1,
+ "infiltration_rate_for_ventilation_system_on": 0,
+ "infiltration_rate_for_ventilation_system_off": 5.0,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1980_6",
+ "transparent_surface_name": "Window_1950_1980_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "5.0",
+ "south": "30.0",
+ "west": "5.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1980_6"
+ }
+ }
+ },
+
+ {
+ "function": "MURB_MidRiseApartment",
+ "period_of_construction": "1981_2010",
+ "climate_zone": "6",
+ "average_storey_height": 3,
+ "thermal_capacity": 300,
+ "extra_loses_due_thermal_bridges": 0.1,
+ "infiltration_rate_for_ventilation_system_on": 0,
+ "infiltration_rate_for_ventilation_system_off": 3,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.002,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_2010_6",
+ "transparent_surface_name": "Window_1981_2010_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "5.0",
+ "south": "30.0",
+ "west": "5.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_2010_6"
+ }
+ }
+ },
+
+ {
+ "function": "MURB_MidRiseApartment",
+ "period_of_construction": "2011_2020",
+ "climate_zone": "6",
+ "average_storey_height": 3,
+ "thermal_capacity": 300,
+ "extra_loses_due_thermal_bridges": 0.1,
+ "infiltration_rate_for_ventilation_system_on": 0,
+ "infiltration_rate_for_ventilation_system_off": 1.5,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2011_2020_6",
+ "transparent_surface_name": "Window_2011_2020_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "5.0",
+ "south": "30.0",
+ "west": "5.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2011_2020_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2011_2020_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2011_2020_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2011_2020_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2011_2020_6"
+ }
+ }
+ },
+
+ {
+ "function": "MURB_MidRiseApartment",
+ "period_of_construction": "2021_3000",
+ "climate_zone": "6",
+ "average_storey_height": 3,
+ "thermal_capacity": 300,
+ "extra_loses_due_thermal_bridges": 0.1,
+ "infiltration_rate_for_ventilation_system_on": 0,
+ "infiltration_rate_for_ventilation_system_off": 0.5,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2021_3000_6",
+ "transparent_surface_name": "Window_2021_3000_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "5.0",
+ "south": "30.0",
+ "west": "5.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2021_3000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2021_3000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2021_3000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2021_3000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2021_3000_6"
+ }
+ }
+ },
+
+
+ {
+ "function": "MURB_HighRiseApartment",
+ "period_of_construction": "1800_1950",
+ "climate_zone": "6",
+ "average_storey_height": 3,
+ "thermal_capacity": 300,
+ "extra_loses_due_thermal_bridges": 0.1,
+ "infiltration_rate_for_ventilation_system_on": 0,
+ "infiltration_rate_for_ventilation_system_off": 6.0,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1900_1950_6",
+ "transparent_surface_name": "Window_1900_1950_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "5.0",
+ "south": "30.0",
+ "west": "5.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1900_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1900_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1900_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1900_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1900_1950_6"
+ }
+ }
+ },
+ {
+ "function": "MURB_HighRiseApartment",
+ "period_of_construction": "1951_1980",
+ "climate_zone": "6",
+ "average_storey_height": 3,
+ "thermal_capacity": 300,
+ "extra_loses_due_thermal_bridges": 0.1,
+ "infiltration_rate_for_ventilation_system_on": 0,
+ "infiltration_rate_for_ventilation_system_off": 5.0,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1980_6",
+ "transparent_surface_name": "Window_1950_1980_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "5.0",
+ "south": "30.0",
+ "west": "5.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1980_6"
+ }
+ }
+ },
+
+ {
+ "function": "MURB_HighRiseApartment",
+ "period_of_construction": "1981_2010",
+ "climate_zone": "6",
+ "average_storey_height": 3,
+ "thermal_capacity": 300,
+ "extra_loses_due_thermal_bridges": 0.1,
+ "infiltration_rate_for_ventilation_system_on": 0,
+ "infiltration_rate_for_ventilation_system_off": 3.0,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.002,
+
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_2010_6",
+ "transparent_surface_name": "Window_1981_2010_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "5.0",
+ "south": "30.0",
+ "west": "5.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_2010_6"
+ }
+ }
+ },
+
+ {
+ "function": "MURB_HighRiseApartment",
+ "period_of_construction": "2011_2020",
+ "climate_zone": "6",
+ "average_storey_height": 3,
+ "thermal_capacity": 300,
+ "extra_loses_due_thermal_bridges": 0.1,
+ "infiltration_rate_for_ventilation_system_on": 0,
+ "infiltration_rate_for_ventilation_system_off": 1.5,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2011_2020_6",
+ "transparent_surface_name": "Window_2011_2020_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "5.0",
+ "south": "30.0",
+ "west": "5.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2011_2020_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2011_2020_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2011_2020_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2011_2020_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2011_2020_6"
+ }
+ }
+ },
+
+ {
+ "function": "MURB_HighRiseApartment",
+ "period_of_construction": "2021_3000",
+ "climate_zone": "6",
+ "average_storey_height": 3,
+ "thermal_capacity": 300,
+ "extra_loses_due_thermal_bridges": 0.1,
+ "infiltration_rate_for_ventilation_system_on": 0,
+ "infiltration_rate_for_ventilation_system_off": 0.5,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2020_3000_6",
+ "transparent_surface_name": "Window_2020_3000_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "5.0",
+ "south": "30.0",
+ "west": "5.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2020_3000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "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": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1921_1930",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1921_1930",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1921_1930",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1921_1930",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1921_1930",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1921_1930",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "FullServiceRestaurant",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "20.22",
+ "south": "28.0",
+ "west": "20.22"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1901_1910",
+ "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.13 ,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "HighriseApartment",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "30.0",
+ "east": "29.62",
+ "south": "30.0",
+ "west": "29.19"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "Hospital",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "9.31",
+ "east": "11.25",
+ "south": "13.22",
+ "west": "23.17"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeHotel",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "15.61",
+ "east": "20.37",
+ "south": "21.46",
+ "west": "19.85"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "LargeOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "35.29",
+ "east": "35.29",
+ "south": "35.29",
+ "west": "35.29"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "MediumOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "33.01",
+ "east": "33.01",
+ "south": "33.01",
+ "west": "33.01"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "MidriseApartment",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "20.0",
+ "east": "21.25",
+ "south": "20.0",
+ "west": "18.02"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "Outpatient",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "20.52",
+ "east": "19.14",
+ "south": "24.08",
+ "west": "12.88"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "PrimarySchool",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "QuickServiceRestaurant",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "14.0",
+ "south": "28.0",
+ "west": "14.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStandalone",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "25.37",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "RetailStripmall",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "26.24",
+ "west": "0.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "SecondarySchool",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "35.0",
+ "east": "35.0",
+ "south": "35.0",
+ "west": "35.0"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallHotel",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "15.24",
+ "east": "3.95",
+ "south": "11.39",
+ "west": "3.13"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1921_1930",
+ "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.1,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "SmallOffice",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "19.81",
+ "east": "19.81",
+ "south": "19.81",
+ "west": "19.81"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": "Window_1000_1900_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_4"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": "Window_1000_1900_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_5"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": "Window_1000_1900_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_6"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": "Window_1000_1900_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7A"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": "Window_1000_1900_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_7B"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1000_1900",
+ "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.11,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": "Window_1000_1900_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1000_1900_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1000_1900_8"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": "Window_1901_1910_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_4"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": "Window_1901_1910_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_5"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": "Window_1901_1910_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_6"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": "Window_1901_1910_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7A"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": "Window_1901_1910_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_7B"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1901_1910",
+ "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.13,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": "Window_1901_1910_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1901_1910_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1901_1910_8"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": "Window_1911_1920_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_4"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": "Window_1911_1920_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_5"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": "Window_1911_1920_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_6"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": "Window_1911_1920_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7A"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": "Window_1911_1920_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_7B"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1911_1920",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": "Window_1911_1920_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1911_1920_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1911_1920_8"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1921_1930",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": "Window_1921_1930_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_4"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1921_1930",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": "Window_1921_1930_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_5"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1921_1930",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": "Window_1921_1930_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_6"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1921_1930",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": "Window_1921_1930_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7A"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1921_1930",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": "Window_1921_1930_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_7B"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1921_1930",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": "Window_1921_1930_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1921_1930_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1921_1930_8"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": "Window_1931_1940_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_4"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": "Window_1931_1940_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_5"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": "Window_1931_1940_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_6"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": "Window_1931_1940_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7A"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": "Window_1931_1940_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_7B"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1931_1940",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": "Window_1931_1940_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1931_1940_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1931_1940_8"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": "Window_1941_1950_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_4"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": "Window_1941_1950_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_5"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": "Window_1941_1950_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_6"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": "Window_1941_1950_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7A"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": "Window_1941_1950_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_7B"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1941_1950",
+ "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.15,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0055,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": "Window_1941_1950_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1941_1950_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1941_1950_8"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": "Window_1951_1960_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_4"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": "Window_1951_1960_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_5"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": "Window_1951_1960_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_6"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": "Window_1951_1960_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7A"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": "Window_1951_1960_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_7B"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1951_1960",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.005,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": "Window_1951_1960_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1951_1960_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1951_1960_8"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": "Window_1961_1970_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_4"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": "Window_1961_1970_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_5"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": "Window_1961_1970_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_6"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": "Window_1961_1970_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7A"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": "Window_1961_1970_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_7B"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1961_1970",
+ "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": 0.87,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0045,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": "Window_1961_1970_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1961_1970_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1961_1970_8"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": "Window_1971_1980_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_4"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": "Window_1971_1980_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_5"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": "Window_1971_1980_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_6"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": "Window_1971_1980_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7A"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": "Window_1971_1980_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_7B"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1971_1980",
+ "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": 0.7,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": "Window_1971_1980_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1971_1980_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1971_1980_8"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": "Window_1981_1990_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_4"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": "Window_1981_1990_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_5"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": "Window_1981_1990_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_6"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": "Window_1981_1990_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7A"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": "Window_1981_1990_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_7B"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1981_1990",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": "Window_1981_1990_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1981_1990_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1981_1990_8"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": "Window_1991_2000_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_4"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": "Window_1991_2000_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_5"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": "Window_1991_2000_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_6"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": "Window_1991_2000_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7A"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": "Window_1991_2000_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_7B"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "1991_2000",
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.003,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": "Window_1991_2000_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "1991_2000_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "1991_2000_8"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": "Window_2001_2010_4",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_4"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_4"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": "Window_2001_2010_5",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_5"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_5"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": "Window_2001_2010_6",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_6"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_6"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": "Window_2001_2010_7A",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7A"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7A"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": "Window_2001_2010_7B",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_7B"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_2010_7B"
+ }
+ }
+ },
+ {
+ "function": "Warehouse",
+ "period_of_construction": "2001_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": 0.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0015,
+ "constructions": {
+ "OutdoorsWall": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": "Window_2001_2010_8",
+ "transparent_ratio": {
+ "north": "0.0",
+ "east": "0.0",
+ "south": "2.86",
+ "west": "0.76"
+ }
+ },
+ "OutdoorsRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8",
+ "transparent_surface_name": null,
+ "transparent_ratio": {
+ "north": null,
+ "east": null,
+ "south": null,
+ "west": null
+ }
+ },
+ "OutdoorsFloor": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundWall": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundRoofCeiling": {
+ "opaque_surface_name": "2001_2010_8"
+ },
+ "GroundFloor": {
+ "opaque_surface_name": "2001_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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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.62,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.0005,
+ "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"
+ }
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/hub/data/construction/CERC_constructions.json b/hub/data/construction/CERC_constructions.json
new file mode 100644
index 00000000..dd3feb38
--- /dev/null
+++ b/hub/data/construction/CERC_constructions.json
@@ -0,0 +1,12633 @@
+{
+ "opaque_surfaces": [
+ {
+ "1900_1950_6": {
+ "period_of_construction": "1900_1950",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value":1.498,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_0": 0,
+ "Air_gap": 0.1,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.012
+ }
+ }
+ },
+ {
+ "1900_1950_6": {
+ "period_of_construction": "1900_1950",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.823,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_49": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1900_1950_6": {
+ "period_of_construction": "1900_1950",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_50": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1900_1950_6": {
+ "period_of_construction": "1900_1950",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_51": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1900_1950_6": {
+ "period_of_construction": "1900_1950",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_52": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1900_1950_6": {
+ "period_of_construction": "1900_1950",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_53": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+
+
+
+
+
+ {
+ "1951_1980_6": {
+ "period_of_construction": "1951_1980",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 1.498,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_0": 0,
+ "Air_gap": 0.1,
+ "MW Glass Wool (rolls)": 0.05,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.012
+ }
+ }
+ },
+ {
+ "1951_1980_6": {
+ "period_of_construction": "1951_1980",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.823,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_49": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1980_6": {
+ "period_of_construction": "1951_1980",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_50": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1951_1980_6": {
+ "period_of_construction": "1951_1980",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_51": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1951_1980_6": {
+ "period_of_construction": "1951_1980",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_52": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1980_6": {
+ "period_of_construction": "1951_1980",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_53": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+
+
+
+
+
+ {
+ "1981_2010_6": {
+ "period_of_construction": "1981_2010",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.426,
+ "layers": {
+ "Stucco": 0.025,
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_0": 0,
+ "Air_gap": 0.1,
+ "MW Glass Wool (rolls)": 0.05,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.015
+ }
+ }
+ },
+ {
+ "1981_2010_6": {
+ "period_of_construction": "1981_2010",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.276,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_49": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_2010_6": {
+ "period_of_construction": "1981_2010",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_50": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1981_2010_6": {
+ "period_of_construction": "1981_2010",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.459,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_51": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1981_2010_6": {
+ "period_of_construction": "1981_2010",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.459,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_52": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_2010_6": {
+ "period_of_construction": "1981_2010",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.459,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_53": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+
+
+
+ {
+ "2011_2020_6": {
+ "period_of_construction": "2011_2020",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.247,
+ "layers": {
+ "Stucco": 0.025,
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_0": 0,
+ "Air_gap": 0.1,
+ "MW Glass Wool (rolls)": 0.05,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.015
+ }
+ }
+ },
+ {
+ "2011_2020_6": {
+ "period_of_construction": "2011_2020",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.183,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_49": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2020_6": {
+ "period_of_construction": "2011_2020",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 0.183,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_50": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2011_2020_6": {
+ "period_of_construction": "2011_2020",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.183,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_51": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2011_2020_6": {
+ "period_of_construction": "2011_2020",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.183,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_52": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2020_6": {
+ "period_of_construction": "2011_2020",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.183,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_53": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+
+
+ {
+ "2021_3000_6": {
+ "period_of_construction": "2021_3000",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.247,
+ "layers": {
+ "Stucco": 0.025,
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_0": 0,
+ "Air_gap": 0.1,
+ "MW Glass Wool (rolls)": 0.05,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.015
+ }
+ }
+ },
+ {
+ "2021_3000_6": {
+ "period_of_construction": "2021_3000",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.138,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_49": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2021_3000_6": {
+ "period_of_construction": "2021_3000",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 0.156,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_50": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2021_3000_6": {
+ "period_of_construction": "2021_3000",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.156,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_51": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2021_3000_6": {
+ "period_of_construction": "2021_3000",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.156,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_52": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2021_3000_6": {
+ "period_of_construction": "2021_3000",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.156,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_53": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+
+
+ {
+ "1900_1950_7A": {
+ "period_of_construction": "1900_1950",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value":1.498,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_0": 0,
+ "Air_gap": 0.1,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.012
+ }
+ }
+ },
+ {
+ "1900_1950_7A": {
+ "period_of_construction": "1900_1950",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.823,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_49": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1900_1950_7A": {
+ "period_of_construction": "1900_1950",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_50": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1900_1950_7A": {
+ "period_of_construction": "1900_1950",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_51": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1900_1950_7A": {
+ "period_of_construction": "1900_1950",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_52": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1900_1950_7A": {
+ "period_of_construction": "1900_1950",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_53": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+
+
+ {
+ "1951_1980_7A": {
+ "period_of_construction": "1951_1980",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.823,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_0": 0,
+ "Air_gap": 0.1,
+ "MW Glass Wool (rolls)": 0.05,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.012
+ }
+ }
+ },
+ {
+ "1951_1980_7A": {
+ "period_of_construction": "1951_1980",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.823,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_49": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1980_7A": {
+ "period_of_construction": "1951_1980",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_50": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1951_1980_7A": {
+ "period_of_construction": "1951_1980",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_51": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1951_1980_7A": {
+ "period_of_construction": "1951_1980",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_52": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1980_7A": {
+ "period_of_construction": "1951_1980",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_53": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+
+
+ {
+ "1981_2010_7A": {
+ "period_of_construction": "1981_2010",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.346,
+ "layers": {
+ "Stucco": 0.025,
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_0": 0,
+ "Air_gap": 0.1,
+ "MW Glass Wool (rolls)": 0.05,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.015
+ }
+ }
+ },
+ {
+ "1981_2010_7A": {
+ "period_of_construction": "1981_2010",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_49": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_2010_7A": {
+ "period_of_construction": "1981_2010",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_50": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1981_2010_7A": {
+ "period_of_construction": "1981_2010",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.425,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_51": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1981_2010_7A": {
+ "period_of_construction": "1981_2010",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.425,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_52": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_2010_7A": {
+ "period_of_construction": "1981_2010",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.425,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_53": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+
+
+
+
+ {
+ "2011_2020_7A": {
+ "period_of_construction": "2011_2020",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.21,
+ "layers": {
+ "Stucco": 0.025,
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_0": 0,
+ "Air_gap": 0.1,
+ "MW Glass Wool (rolls)": 0.05,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.015
+ }
+ }
+ },
+
+ {
+ "2011_2020_7A": {
+ "period_of_construction": "2011_2020",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.183,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_49": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2020_7A": {
+ "period_of_construction": "2011_2020",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 0.162,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_50": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2011_2020_7A": {
+ "period_of_construction": "2011_2020",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.162,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_51": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2011_2020_7A": {
+ "period_of_construction": "2011_2020",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.162,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_52": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2020_7A": {
+ "period_of_construction": "2011_2020",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.162,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_53": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+
+
+ {
+ "2021_3000_7A": {
+ "period_of_construction": "2021_3000",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.21,
+ "layers": {
+ "Stucco": 0.025,
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_0": 0,
+ "Air_gap": 0.1,
+ "MW Glass Wool (rolls)": 0.05,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.015
+ }
+ }
+ },
+ {
+ "2021_3000_7A": {
+ "period_of_construction": "2021_3000",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.138,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_49": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2021_3000_7A": {
+ "period_of_construction": "2021_3000",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 0.156,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_50": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2021_3000_7A": {
+ "period_of_construction": "2021_3000",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.156,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_51": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2021_3000_7A": {
+ "period_of_construction": "2021_3000",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.156,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_52": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2021_3000_7A": {
+ "period_of_construction": "2021_3000",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.156,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_53": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+
+
+
+
+ {
+ "1000_1900_4": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.994,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_0": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+
+
+
+ {
+ "1000_1900_4": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.363,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_1": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_4": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_2": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1000_1900_4": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_3": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_4": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_4": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_4": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_5": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1000_1900_5": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.9,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_6": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_5": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.296,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_7": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_5": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_8": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1000_1900_5": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_9": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_5": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_10": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_5": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_11": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1000_1900_6": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.823,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_12": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_6": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.267,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_13": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_6": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_14": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1000_1900_6": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_15": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_6": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_16": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_6": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_17": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1000_1900_7A": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_18": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_7A": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_19": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_7A": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_20": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1000_1900_7A": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_21": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_7A": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_22": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_7A": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_23": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1000_1900_7B": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_24": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_7B": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_25": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_7B": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_26": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1000_1900_7B": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_27": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_7B": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_28": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_7B": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_29": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1000_1900_8": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.71,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_30": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_8": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.176,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_31": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_8": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_32": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1000_1900_8": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_33": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_8": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_34": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1000_1900_8": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_35": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1901_1910_4": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.994,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_36": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_4": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.363,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_37": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_4": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_38": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1901_1910_4": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_39": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_4": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_40": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_4": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_41": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1901_1910_5": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.9,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_42": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_5": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.296,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_43": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_5": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_44": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1901_1910_5": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_45": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_5": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_46": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_5": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_47": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1901_1910_6": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.823,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_48": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_6": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.267,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_49": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_6": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_50": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1901_1910_6": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_51": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_6": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_52": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_6": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_53": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1901_1910_7A": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_54": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_7A": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_55": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_7A": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_56": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1901_1910_7A": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_57": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_7A": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_58": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_7A": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_59": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1901_1910_7B": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_60": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_7B": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_61": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_7B": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_62": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1901_1910_7B": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_63": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_7B": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_64": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_7B": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_65": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1901_1910_8": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.71,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_66": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_8": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.176,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_67": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_8": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_68": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1901_1910_8": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_69": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_8": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_70": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1901_1910_8": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_71": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1911_1920_4": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.994,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_72": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_4": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.363,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_73": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_4": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_74": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1911_1920_4": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_75": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_4": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_76": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_4": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_77": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1911_1920_5": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.9,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_78": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_5": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.296,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_79": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_5": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_80": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1911_1920_5": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_81": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_5": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_82": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_5": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_83": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1911_1920_6": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.823,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_84": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_6": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.267,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_85": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_6": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_86": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1911_1920_6": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_87": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_6": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_88": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_6": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_89": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1911_1920_7A": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_90": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_7A": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_91": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_7A": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_92": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1911_1920_7A": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_93": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_7A": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_94": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_7A": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_95": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1911_1920_7B": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_96": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_7B": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_97": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_7B": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_98": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1911_1920_7B": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_99": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_7B": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_100": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_7B": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_101": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1911_1920_8": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.71,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_102": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_8": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.176,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_103": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_8": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_104": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1911_1920_8": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_105": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_8": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_106": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1911_1920_8": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_107": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1921_1930_4": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.994,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_108": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_4": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.363,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_109": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_4": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_110": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1921_1930_4": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_111": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_4": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_112": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_4": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_113": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1921_1930_5": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.9,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_114": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_5": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.296,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_115": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_5": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_116": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1921_1930_5": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_117": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_5": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_118": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_5": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_119": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1921_1930_6": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.823,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_120": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_6": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.267,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_121": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_6": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_122": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1921_1930_6": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_123": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_6": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_124": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_6": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_125": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1921_1930_7A": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_126": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_7A": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_127": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_7A": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_128": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1921_1930_7A": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_129": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_7A": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_130": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_7A": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_131": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1921_1930_7B": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_132": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_7B": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_133": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_7B": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_134": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1921_1930_7B": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_135": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_7B": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_136": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_7B": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_137": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1921_1930_8": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.71,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_138": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_8": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.176,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_139": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_8": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_140": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1921_1930_8": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_141": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_8": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_142": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1921_1930_8": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_143": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1931_1940_4": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.994,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_144": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_4": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.363,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_145": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_4": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_146": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1931_1940_4": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_147": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_4": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_148": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_4": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_149": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1931_1940_5": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.9,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_150": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_5": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.296,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_151": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_5": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_152": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1931_1940_5": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_153": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_5": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_154": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_5": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_155": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1931_1940_6": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.823,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_156": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_6": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.267,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_157": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_6": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_158": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1931_1940_6": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_159": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_6": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_160": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_6": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_161": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1931_1940_7A": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_162": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_7A": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_163": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_7A": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_164": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1931_1940_7A": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_165": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_7A": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_166": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_7A": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_167": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1931_1940_7B": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_168": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_7B": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_169": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_7B": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_170": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1931_1940_7B": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_171": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_7B": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_172": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_7B": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_173": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1931_1940_8": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.71,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_174": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_8": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.176,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_175": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_8": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_176": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1931_1940_8": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_177": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_8": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_178": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1931_1940_8": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_179": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1941_1950_4": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.994,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_180": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_4": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.363,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_181": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_4": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_182": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1941_1950_4": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_183": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_4": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_184": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_4": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_185": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1941_1950_5": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.9,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_186": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_5": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.296,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_187": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_5": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_188": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1941_1950_5": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_189": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_5": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_190": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_5": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_191": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1941_1950_6": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.823,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_192": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_6": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.267,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_193": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_6": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_194": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1941_1950_6": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_195": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_6": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_196": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_6": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_197": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1941_1950_7A": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_198": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_7A": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_199": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_7A": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_200": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1941_1950_7A": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_201": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_7A": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_202": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_7A": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_203": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1941_1950_7B": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_204": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_7B": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_205": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_7B": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_206": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1941_1950_7B": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_207": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_7B": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_208": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_7B": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_209": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1941_1950_8": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.71,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_210": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_8": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.176,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_211": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_8": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_212": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1941_1950_8": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_213": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_8": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_214": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1941_1950_8": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_215": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1951_1960_4": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.994,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_216": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_4": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.363,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_217": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_4": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_218": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1951_1960_4": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_219": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_4": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_220": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_4": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_221": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1951_1960_5": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.9,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_222": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_5": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.296,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_223": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_5": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_224": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1951_1960_5": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_225": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_5": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_226": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_5": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_227": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1951_1960_6": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.823,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_228": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_6": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.267,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_229": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_6": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_230": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1951_1960_6": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_231": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_6": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_232": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_6": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_233": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1951_1960_7A": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_234": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_7A": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_235": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_7A": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_236": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1951_1960_7A": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_237": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_7A": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_238": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_7A": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_239": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1951_1960_7B": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_240": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_7B": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_241": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_7B": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_242": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1951_1960_7B": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_243": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_7B": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_244": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_7B": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_245": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1951_1960_8": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.71,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_246": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_8": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.176,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_247": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_8": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_248": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1951_1960_8": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_249": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_8": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_250": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1951_1960_8": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_251": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1961_1970_4": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.994,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_252": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_4": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.363,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_253": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_4": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_254": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1961_1970_4": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_255": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_4": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_256": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_4": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_257": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1961_1970_5": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.9,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_258": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_5": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.296,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_259": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_5": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_260": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1961_1970_5": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_261": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_5": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_262": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_5": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_263": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1961_1970_6": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.823,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_264": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_6": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.267,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_265": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_6": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_266": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1961_1970_6": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_267": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_6": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_268": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_6": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_269": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1961_1970_7A": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_270": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_7A": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_271": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_7A": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_272": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1961_1970_7A": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_273": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_7A": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_274": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_7A": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_275": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1961_1970_7B": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_276": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_7B": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_277": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_7B": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_278": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1961_1970_7B": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_279": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_7B": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_280": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_7B": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_281": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1961_1970_8": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.71,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_282": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_8": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.176,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_283": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_8": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_284": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1961_1970_8": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_285": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_8": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_286": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1961_1970_8": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_287": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1971_1980_4": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.994,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_288": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_4": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.363,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_289": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_4": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_290": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1971_1980_4": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_291": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_4": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_292": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_4": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_293": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1971_1980_5": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.9,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_294": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_5": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.296,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_295": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_5": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_296": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1971_1980_5": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_297": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_5": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_298": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_5": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_299": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1971_1980_6": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.823,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_300": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_6": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.267,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_301": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_6": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_302": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1971_1980_6": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_303": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_6": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_304": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_6": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_305": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1971_1980_7A": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_306": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_7A": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_307": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_7A": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_308": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1971_1980_7A": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_309": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_7A": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_310": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_7A": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_311": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1971_1980_7B": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.772,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_312": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_7B": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_313": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_7B": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_314": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1971_1980_7B": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_315": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_7B": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_316": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_7B": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_317": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1971_1980_8": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.71,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_318": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_8": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.176,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_319": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_8": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_320": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1971_1980_8": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.678,
+ "layers": {
+ "Brickwork Outer": 0.1,
+ "virtual_no_mass_321": 0,
+ "Concrete Block (Medium)": 0.1,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_8": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_322": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1971_1980_8": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_323": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1981_1990_4": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.568,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_324": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_4": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.363,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_325": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_4": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_326": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1981_1990_4": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.606,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_327": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_4": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_328": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_4": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_329": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1981_1990_5": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.682,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_330": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_5": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.296,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_331": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_5": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_332": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1981_1990_5": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.547,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_333": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_5": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_334": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_5": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_335": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1981_1990_6": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.426,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_336": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_6": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.267,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_337": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_6": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_338": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1981_1990_6": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.459,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_339": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_6": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_340": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_6": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_341": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1981_1990_7A": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.346,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_342": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_7A": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_343": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_7A": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_344": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1981_1990_7A": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.425,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_345": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_7A": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_346": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_7A": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_347": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1981_1990_7B": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.346,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_348": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_7B": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_349": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_7B": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_350": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1981_1990_7B": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.425,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_351": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_7B": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_352": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_7B": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_353": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1981_1990_8": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.267,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_354": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_8": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.176,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_355": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_8": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_356": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1981_1990_8": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.347,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_357": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_8": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_358": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1981_1990_8": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_359": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1991_2000_4": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.568,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_360": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_4": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.363,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_361": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_4": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_362": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1991_2000_4": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.606,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_363": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_4": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_364": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_4": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_365": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1991_2000_5": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.682,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_366": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_5": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.296,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_367": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_5": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_368": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1991_2000_5": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.547,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_369": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_5": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_370": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_5": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_371": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1991_2000_6": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.426,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_372": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_6": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.267,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_373": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_6": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_374": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1991_2000_6": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.459,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_375": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_6": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_376": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_6": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_377": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1991_2000_7A": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.346,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_378": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_7A": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_379": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_7A": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_380": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1991_2000_7A": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.425,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_381": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_7A": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_382": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_7A": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_383": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1991_2000_7B": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.346,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_384": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_7B": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_385": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_7B": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_386": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1991_2000_7B": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.425,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_387": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_7B": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_388": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_7B": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_389": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1991_2000_8": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.267,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_390": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_8": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.176,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_391": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_8": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_392": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "1991_2000_8": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.347,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_393": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_8": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_394": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "1991_2000_8": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_395": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2001_2010_4": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.568,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_396": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_4": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.363,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_397": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_4": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_398": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2001_2010_4": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.606,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_399": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_4": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_400": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_4": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_401": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2001_2010_5": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.682,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_402": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_5": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.296,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_403": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_5": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_404": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2001_2010_5": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.547,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_405": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_5": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_406": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_5": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_407": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2001_2010_6": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.426,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_408": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_6": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.267,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_409": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_6": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_410": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2001_2010_6": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.459,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_411": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_6": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_412": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_6": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_413": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2001_2010_7A": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.346,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_414": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_7A": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_415": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_7A": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_416": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2001_2010_7A": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.425,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_417": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_7A": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_418": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_7A": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_419": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2001_2010_7B": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.346,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_420": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_7B": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_421": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_7B": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_422": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2001_2010_7B": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.425,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_423": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_7B": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_424": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_7B": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_425": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2001_2010_8": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.267,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_426": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_8": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.176,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_427": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_8": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 3.822,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_428": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2001_2010_8": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.347,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_429": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_8": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.678,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_430": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2001_2010_8": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.678,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_431": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2011_2016_4": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.315,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_432": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_4": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.227,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_433": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_4": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 0.227,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_434": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2011_2016_4": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.568,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_435": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_4": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.568,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_436": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_4": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_437": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2011_2016_5": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.278,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_438": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_5": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.183,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_439": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_5": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 0.183,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_440": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2011_2016_5": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.379,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_441": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_5": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.379,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_442": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_5": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_443": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2011_2016_6": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.247,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_444": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_6": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.183,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_445": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_6": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 0.183,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_446": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2011_2016_6": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.284,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_447": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_6": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.284,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_448": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_6": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_449": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2011_2016_7A": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.21,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_450": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_7A": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.162,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_451": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_7A": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 0.162,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_452": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2011_2016_7A": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.284,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_453": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_7A": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.284,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_454": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_7A": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_455": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2011_2016_7B": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.21,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_456": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_7B": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.162,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_457": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_7B": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 0.162,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_458": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2011_2016_7B": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.284,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_459": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_7B": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.284,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_460": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_7B": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_461": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2011_2016_8": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.183,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_462": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_8": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.142,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_463": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_8": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 0.142,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_464": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2011_2016_8": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.21,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_465": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_8": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.21,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_466": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2011_2016_8": {
+ "period_of_construction": "2011_2016",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.379,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_467": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2017_2019_4": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.315,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_468": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_4": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.193,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_469": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_4": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 0.227,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_470": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2017_2019_4": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.568,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_471": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_4": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.568,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_472": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_4": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_473": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2017_2019_5": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.278,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_474": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_5": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.156,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_475": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_5": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 0.183,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_476": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2017_2019_5": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.379,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_477": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_5": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.379,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_478": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_5": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_479": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2017_2019_6": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.247,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_480": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_6": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.156,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_481": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_6": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 0.183,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_482": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2017_2019_6": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.284,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_483": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_6": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.284,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_484": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_6": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_485": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2017_2019_7A": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.21,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_486": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_7A": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.138,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_487": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_7A": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 0.162,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_488": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2017_2019_7A": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.284,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_489": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_7A": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.284,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_490": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_7A": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_491": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2017_2019_7B": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.21,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_492": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_7B": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.138,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_493": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_7B": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 0.162,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_494": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2017_2019_7B": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.284,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_495": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_7B": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.284,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_496": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_7B": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_497": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2017_2019_8": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.183,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_498": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_8": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.121,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_499": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_8": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 0.142,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_500": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2017_2019_8": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.21,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_501": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_8": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.21,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_502": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2017_2019_8": {
+ "period_of_construction": "2017_2019",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.379,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_503": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2020_3000_4": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "4",
+ "type": "OutdoorsWall",
+ "u_value": 0.29,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_504": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_4": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "4",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.164,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_505": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_4": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "4",
+ "type": "OutdoorsFloor",
+ "u_value": 0.193,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_506": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2020_3000_4": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "4",
+ "type": "GroundWall",
+ "u_value": 0.568,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_507": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_4": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "4",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.568,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_508": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_4": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "4",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_509": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2020_3000_5": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "5",
+ "type": "OutdoorsWall",
+ "u_value": 0.265,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_510": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_5": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "5",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.156,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_511": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_5": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "5",
+ "type": "OutdoorsFloor",
+ "u_value": 0.175,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_512": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2020_3000_5": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "5",
+ "type": "GroundWall",
+ "u_value": 0.379,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_513": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_5": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "5",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.379,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_514": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_5": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "5",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_515": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2020_3000_6": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "6",
+ "type": "OutdoorsWall",
+ "u_value": 0.24,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_516": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_6": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "6",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.138,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_517": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_6": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "6",
+ "type": "OutdoorsFloor",
+ "u_value": 0.156,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_518": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2020_3000_6": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "6",
+ "type": "GroundWall",
+ "u_value": 0.284,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_519": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_6": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "6",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.284,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_520": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_6": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "6",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_521": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2020_3000_7A": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "7A",
+ "type": "OutdoorsWall",
+ "u_value": 0.215,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_522": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_7A": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "7A",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.121,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_523": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_7A": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "7A",
+ "type": "OutdoorsFloor",
+ "u_value": 0.138,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_524": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2020_3000_7A": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "7A",
+ "type": "GroundWall",
+ "u_value": 0.284,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_525": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_7A": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "7A",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.284,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_526": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_7A": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "7A",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_527": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2020_3000_7B": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "7B",
+ "type": "OutdoorsWall",
+ "u_value": 0.19,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_528": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_7B": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "7B",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.117,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_529": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_7B": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "7B",
+ "type": "OutdoorsFloor",
+ "u_value": 0.121,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_530": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2020_3000_7B": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "7B",
+ "type": "GroundWall",
+ "u_value": 0.284,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_531": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_7B": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "7B",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.284,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_532": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_7B": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "7B",
+ "type": "GroundFloor",
+ "u_value": 0.757,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_533": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2020_3000_8": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "8",
+ "type": "OutdoorsWall",
+ "u_value": 0.165,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_534": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_8": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "8",
+ "type": "OutdoorsRoofCeiling",
+ "u_value": 0.11,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_535": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_8": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "8",
+ "type": "OutdoorsFloor",
+ "u_value": 0.117,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_536": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ },
+ {
+ "2020_3000_8": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "8",
+ "type": "GroundWall",
+ "u_value": 0.21,
+ "layers": {
+ "Lightweight Metallic Cladding": 0.006,
+ "virtual_no_mass_537": 0,
+ "Gypsum Plastering": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_8": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "8",
+ "type": "GroundRoofCeiling",
+ "u_value": 0.21,
+ "layers": {
+ "Asphalt 1": 0.01,
+ "virtual_no_mass_538": 0,
+ "MW Glass Wool (rolls)": 0.05,
+ "Plasterboard": 0.013
+ }
+ }
+ },
+ {
+ "2020_3000_8": {
+ "period_of_construction": "2020_3000",
+ "climate_zone": "8",
+ "type": "GroundFloor",
+ "u_value": 0.379,
+ "layers": {
+ "Cast Concrete": 0.1,
+ "virtual_no_mass_539": 0,
+ "Timber Flooring": 0.01
+ }
+ }
+ }
+ ],
+ "transparent_surfaces": [
+ {
+ "Window_1900_1950_6": {
+ "period_of_construction": "1900_1950",
+ "climate_zone": "6",
+ "shgc": 0.66,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.1
+ }
+ },
+ {
+ "Window_1951_1980_6": {
+ "period_of_construction": "1950_1980",
+ "climate_zone": "6",
+ "shgc": 0.66,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.1
+ }
+ },
+ {
+ "Window_1981_2010_6": {
+ "period_of_construction": "1980_2010",
+ "climate_zone": "6",
+ "shgc": 0.66,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.8
+ }
+ },
+ {
+ "Window_2011_2020_6": {
+ "period_of_construction": "2011_2020",
+ "climate_zone": "6",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.2
+ }
+ },
+ {
+ "Window_2021_3000_6": {
+ "period_of_construction": "2021_3000",
+ "climate_zone": "6",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 1.9
+ }
+ },
+
+ {
+ "Window_1900_1950_7A": {
+ "period_of_construction": "1900_1950",
+ "climate_zone": "7A",
+ "shgc": 0.66,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.1
+ }
+ },
+ {
+ "Window_1951_1980_7A": {
+ "period_of_construction": "1951_1980",
+ "climate_zone": "7A",
+ "shgc": 0.66,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.1
+ }
+ },
+ {
+ "Window_1981_2010_7A": {
+ "period_of_construction": "1981_2010",
+ "climate_zone": "7A",
+ "shgc": 0.66,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.8
+ }
+ },
+ {
+ "Window_2011_2020_7A": {
+ "period_of_construction": "2011_2020",
+ "climate_zone": "7A",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.2
+ }
+ },
+ {
+ "Window_2021_3000_7A": {
+ "period_of_construction": "2021_3000",
+ "climate_zone": "7A",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 1.9
+ }
+ },
+
+
+
+
+
+ {
+ "Window_1000_1900_4": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "4",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 4.09
+ }
+ },
+ {
+ "Window_1000_1900_5": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "5",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.35
+ }
+ },
+ {
+ "Window_1000_1900_6": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "6",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1000_1900_7A": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "7A",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1000_1900_7B": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "7B",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1000_1900_8": {
+ "period_of_construction": "1000_1900",
+ "climate_zone": "8",
+ "shgc": 0.41,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1901_1910_4": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "4",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 4.09
+ }
+ },
+ {
+ "Window_1901_1910_5": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "5",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.35
+ }
+ },
+ {
+ "Window_1901_1910_6": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "6",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1901_1910_7A": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "7A",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1901_1910_7B": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "7B",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1901_1910_8": {
+ "period_of_construction": "1901_1910",
+ "climate_zone": "8",
+ "shgc": 0.41,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1911_1920_4": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "4",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 4.09
+ }
+ },
+ {
+ "Window_1911_1920_5": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "5",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.35
+ }
+ },
+ {
+ "Window_1911_1920_6": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "6",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1911_1920_7A": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "7A",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1911_1920_7B": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "7B",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1911_1920_8": {
+ "period_of_construction": "1911_1920",
+ "climate_zone": "8",
+ "shgc": 0.41,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1921_1930_4": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "4",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 4.09
+ }
+ },
+ {
+ "Window_1921_1930_5": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "5",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.35
+ }
+ },
+ {
+ "Window_1921_1930_6": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "6",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1921_1930_7A": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "7A",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1921_1930_7B": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "7B",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1921_1930_8": {
+ "period_of_construction": "1921_1930",
+ "climate_zone": "8",
+ "shgc": 0.41,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1931_1940_4": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "4",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 4.09
+ }
+ },
+ {
+ "Window_1931_1940_5": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "5",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.35
+ }
+ },
+ {
+ "Window_1931_1940_6": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "6",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1931_1940_7A": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "7A",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1931_1940_7B": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "7B",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1931_1940_8": {
+ "period_of_construction": "1931_1940",
+ "climate_zone": "8",
+ "shgc": 0.41,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1941_1950_4": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "4",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 4.09
+ }
+ },
+ {
+ "Window_1941_1950_5": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "5",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.35
+ }
+ },
+ {
+ "Window_1941_1950_6": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "6",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1941_1950_7A": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "7A",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1941_1950_7B": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "7B",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1941_1950_8": {
+ "period_of_construction": "1941_1950",
+ "climate_zone": "8",
+ "shgc": 0.41,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1951_1960_4": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "4",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 4.09
+ }
+ },
+ {
+ "Window_1951_1960_5": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "5",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.35
+ }
+ },
+ {
+ "Window_1951_1960_6": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "6",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1951_1960_7A": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "7A",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1951_1960_7B": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "7B",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1951_1960_8": {
+ "period_of_construction": "1951_1960",
+ "climate_zone": "8",
+ "shgc": 0.41,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1961_1970_4": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "4",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 4.09
+ }
+ },
+ {
+ "Window_1961_1970_5": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "5",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.35
+ }
+ },
+ {
+ "Window_1961_1970_6": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "6",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1961_1970_7A": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "7A",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1961_1970_7B": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "7B",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1961_1970_8": {
+ "period_of_construction": "1961_1970",
+ "climate_zone": "8",
+ "shgc": 0.41,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1971_1980_4": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "4",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 4.09
+ }
+ },
+ {
+ "Window_1971_1980_5": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "5",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.35
+ }
+ },
+ {
+ "Window_1971_1980_6": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "6",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1971_1980_7A": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "7A",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1971_1980_7B": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "7B",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1971_1980_8": {
+ "period_of_construction": "1971_1980",
+ "climate_zone": "8",
+ "shgc": 0.41,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1981_1990_4": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "4",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 4.09
+ }
+ },
+ {
+ "Window_1981_1990_5": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "5",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.35
+ }
+ },
+ {
+ "Window_1981_1990_6": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "6",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1981_1990_7A": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "7A",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1981_1990_7B": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "7B",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1981_1990_8": {
+ "period_of_construction": "1981_1990",
+ "climate_zone": "8",
+ "shgc": 0.41,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1991_2000_4": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "4",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 4.09
+ }
+ },
+ {
+ "Window_1991_2000_5": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "5",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.35
+ }
+ },
+ {
+ "Window_1991_2000_6": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "6",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1991_2000_7A": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "7A",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1991_2000_7B": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "7B",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_1991_2000_8": {
+ "period_of_construction": "1991_2000",
+ "climate_zone": "8",
+ "shgc": 0.41,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_2001_2010_4": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "4",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 4.09
+ }
+ },
+ {
+ "Window_2001_2010_5": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "5",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 3.35
+ }
+ },
+ {
+ "Window_2001_2010_6": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "6",
+ "shgc": 0.39,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_2001_2010_7A": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "7A",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_2001_2010_7B": {
+ "period_of_construction": "2001_2010",
+ "climate_zone": "7B",
+ "shgc": 0.49,
+ "type": "Window",
+ "frame_ratio": 0,
+ "u_value": 2.95
+ }
+ },
+ {
+ "Window_2001_2010_8": {
+ "period_of_construction": "2001_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": {
+ "no_mass": false,
+ "conductivity": 0.04,
+ "density": 10,
+ "specific_heat": 1400,
+ "thermal_emittance": 0.9,
+ "solar_absorptance": 0.6,
+ "visible_absorptance": 0.6
+ }
+ },
+ {
+ "Cast Concrete": {
+ "no_mass": false,
+ "conductivity": 1.13,
+ "density": 2000,
+ "specific_heat": 1000,
+ "thermal_emittance": 0.9,
+ "solar_absorptance": 0.6,
+ "visible_absorptance": 0.6
+ }
+ },
+ {
+ "Floor/Roof Screed": {
+ "no_mass": false,
+ "conductivity": 0.41,
+ "density": 1200,
+ "specific_heat": 840,
+ "thermal_emittance": 0.9,
+ "solar_absorptance": 0.73,
+ "visible_absorptance": 0.73
+ }
+ },
+ {
+ "Timber Flooring": {
+ "no_mass": false,
+ "conductivity": 0.14,
+ "density": 650,
+ "specific_heat": 1200,
+ "thermal_emittance": 0.9,
+ "solar_absorptance": 0.78,
+ "visible_absorptance": 0.78
+ }
+ },
+ {
+ "Asphalt 1": {
+ "no_mass": false,
+ "conductivity": 0.7,
+ "density": 2100,
+ "specific_heat": 1000,
+ "thermal_emittance": 0.9,
+ "solar_absorptance": 0.85,
+ "visible_absorptance": 0.9
+ }
+ },
+ {
+ "MW Glass Wool (rolls)": {
+ "no_mass": false,
+ "conductivity": 0.04,
+ "density": 12,
+ "specific_heat": 840,
+ "thermal_emittance": 0.9,
+ "solar_absorptance": 0.6,
+ "visible_absorptance": 0.6
+ }
+ },
+ {
+ "Plasterboard": {
+ "no_mass": false,
+ "conductivity": 0.25,
+ "density": 2800,
+ "specific_heat": 896,
+ "thermal_emittance": 0.9,
+ "solar_absorptance": 0.5,
+ "visible_absorptance": 0.5
+ }
+ },
+ {
+ "Brickwork Outer": {
+ "no_mass": false,
+ "conductivity": 0.84,
+ "density": 1700,
+ "specific_heat": 800,
+ "thermal_emittance": 0.9,
+ "solar_absorptance": 0.7,
+ "visible_absorptance": 0.7
+ }
+ },
+ {
+ "XPS Extruded Polystyrene- CO2 Blowing": {
+ "no_mass": false,
+ "conductivity": 0.034,
+ "density": 35,
+ "specific_heat": 1400,
+ "thermal_emittance": 0.9,
+ "solar_absorptance": 0.6,
+ "visible_absorptance": 0.6
+ }
+ },
+ {
+ "Concrete Block (Medium)": {
+ "no_mass": false,
+ "conductivity": 0.51,
+ "density": 1400,
+ "specific_heat": 1000,
+ "thermal_emittance": 0.9,
+ "solar_absorptance": 0.6,
+ "visible_absorptance": 0.6
+ }
+ },
+ {
+ "Gypsum Plastering": {
+ "no_mass": false,
+ "conductivity": 0.4,
+ "density": 1000,
+ "specific_heat": 1000,
+ "thermal_emittance": 0.9,
+ "solar_absorptance": 0.5,
+ "visible_absorptance": 0.5
+ }
+ },
+ {
+ "Lightweight Metallic Cladding": {
+ "no_mass": false,
+ "conductivity": 0.29,
+ "density": 1250,
+ "specific_heat": 1000,
+ "thermal_emittance": 0.9,
+ "solar_absorptance": 0.4,
+ "visible_absorptance": 0.4
+ }
+ },
+ {
+ "virtual_no_mass_0": {
+ "no_mass": true,
+ "thermal_resistance": 0.6584101668836548
+ }
+ },
+ {
+ "virtual_no_mass_1": {
+ "no_mass": true,
+ "thermal_resistance": 1.4385352223534045
+ }
+ },
+ {
+ "virtual_no_mass_2": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_3": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_4": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_5": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_6": {
+ "no_mass": true,
+ "thermal_resistance": 0.7634850606909431
+ }
+ },
+ {
+ "virtual_no_mass_7": {
+ "no_mass": true,
+ "thermal_resistance": 2.0620926640926642
+ }
+ },
+ {
+ "virtual_no_mass_8": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_9": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_10": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_11": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_12": {
+ "no_mass": true,
+ "thermal_resistance": 0.8674407782554092
+ }
+ },
+ {
+ "virtual_no_mass_13": {
+ "no_mass": true,
+ "thermal_resistance": 2.4290326377742106
+ }
+ },
+ {
+ "virtual_no_mass_14": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_15": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_16": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_17": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_18": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_19": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_20": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_21": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_22": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_23": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_24": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_25": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_26": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_27": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_28": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_29": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_30": {
+ "no_mass": true,
+ "thermal_resistance": 1.0608246538051842
+ }
+ },
+ {
+ "virtual_no_mass_31": {
+ "no_mass": true,
+ "thermal_resistance": 4.365532467532468
+ }
+ },
+ {
+ "virtual_no_mass_32": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_33": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_34": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_35": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_36": {
+ "no_mass": true,
+ "thermal_resistance": 0.6584101668836548
+ }
+ },
+ {
+ "virtual_no_mass_37": {
+ "no_mass": true,
+ "thermal_resistance": 1.4385352223534045
+ }
+ },
+ {
+ "virtual_no_mass_38": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_39": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_40": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_41": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_42": {
+ "no_mass": true,
+ "thermal_resistance": 0.7634850606909431
+ }
+ },
+ {
+ "virtual_no_mass_43": {
+ "no_mass": true,
+ "thermal_resistance": 2.0620926640926642
+ }
+ },
+ {
+ "virtual_no_mass_44": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_45": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_46": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_47": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_48": {
+ "no_mass": true,
+ "thermal_resistance": 0.8674407782554092
+ }
+ },
+ {
+ "virtual_no_mass_49": {
+ "no_mass": true,
+ "thermal_resistance": 2.4290326377742106
+ }
+ },
+ {
+ "virtual_no_mass_50": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_51": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_52": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_53": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_54": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_55": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_56": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_57": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_58": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_59": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_60": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_61": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_62": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_63": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_64": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_65": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_66": {
+ "no_mass": true,
+ "thermal_resistance": 1.0608246538051842
+ }
+ },
+ {
+ "virtual_no_mass_67": {
+ "no_mass": true,
+ "thermal_resistance": 4.365532467532468
+ }
+ },
+ {
+ "virtual_no_mass_68": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_69": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_70": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_71": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_72": {
+ "no_mass": true,
+ "thermal_resistance": 0.6584101668836548
+ }
+ },
+ {
+ "virtual_no_mass_73": {
+ "no_mass": true,
+ "thermal_resistance": 1.4385352223534045
+ }
+ },
+ {
+ "virtual_no_mass_74": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_75": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_76": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_77": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_78": {
+ "no_mass": true,
+ "thermal_resistance": 0.7634850606909431
+ }
+ },
+ {
+ "virtual_no_mass_79": {
+ "no_mass": true,
+ "thermal_resistance": 2.0620926640926642
+ }
+ },
+ {
+ "virtual_no_mass_80": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_81": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_82": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_83": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_84": {
+ "no_mass": true,
+ "thermal_resistance": 0.8674407782554092
+ }
+ },
+ {
+ "virtual_no_mass_85": {
+ "no_mass": true,
+ "thermal_resistance": 2.4290326377742106
+ }
+ },
+ {
+ "virtual_no_mass_86": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_87": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_88": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_89": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_90": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_91": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_92": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_93": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_94": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_95": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_96": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_97": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_98": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_99": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_100": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_101": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_102": {
+ "no_mass": true,
+ "thermal_resistance": 1.0608246538051842
+ }
+ },
+ {
+ "virtual_no_mass_103": {
+ "no_mass": true,
+ "thermal_resistance": 4.365532467532468
+ }
+ },
+ {
+ "virtual_no_mass_104": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_105": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_106": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_107": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_108": {
+ "no_mass": true,
+ "thermal_resistance": 0.6584101668836548
+ }
+ },
+ {
+ "virtual_no_mass_109": {
+ "no_mass": true,
+ "thermal_resistance": 1.4385352223534045
+ }
+ },
+ {
+ "virtual_no_mass_110": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_111": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_112": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_113": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_114": {
+ "no_mass": true,
+ "thermal_resistance": 0.7634850606909431
+ }
+ },
+ {
+ "virtual_no_mass_115": {
+ "no_mass": true,
+ "thermal_resistance": 2.0620926640926642
+ }
+ },
+ {
+ "virtual_no_mass_116": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_117": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_118": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_119": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_120": {
+ "no_mass": true,
+ "thermal_resistance": 0.8674407782554092
+ }
+ },
+ {
+ "virtual_no_mass_121": {
+ "no_mass": true,
+ "thermal_resistance": 2.4290326377742106
+ }
+ },
+ {
+ "virtual_no_mass_122": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_123": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_124": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_125": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_126": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_127": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_128": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_129": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_130": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_131": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_132": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_133": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_134": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_135": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_136": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_137": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_138": {
+ "no_mass": true,
+ "thermal_resistance": 1.0608246538051842
+ }
+ },
+ {
+ "virtual_no_mass_139": {
+ "no_mass": true,
+ "thermal_resistance": 4.365532467532468
+ }
+ },
+ {
+ "virtual_no_mass_140": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_141": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_142": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_143": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_144": {
+ "no_mass": true,
+ "thermal_resistance": 0.6584101668836548
+ }
+ },
+ {
+ "virtual_no_mass_145": {
+ "no_mass": true,
+ "thermal_resistance": 1.4385352223534045
+ }
+ },
+ {
+ "virtual_no_mass_146": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_147": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_148": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_149": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_150": {
+ "no_mass": true,
+ "thermal_resistance": 0.7634850606909431
+ }
+ },
+ {
+ "virtual_no_mass_151": {
+ "no_mass": true,
+ "thermal_resistance": 2.0620926640926642
+ }
+ },
+ {
+ "virtual_no_mass_152": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_153": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_154": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_155": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_156": {
+ "no_mass": true,
+ "thermal_resistance": 0.8674407782554092
+ }
+ },
+ {
+ "virtual_no_mass_157": {
+ "no_mass": true,
+ "thermal_resistance": 2.4290326377742106
+ }
+ },
+ {
+ "virtual_no_mass_158": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_159": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_160": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_161": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_162": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_163": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_164": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_165": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_166": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_167": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_168": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_169": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_170": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_171": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_172": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_173": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_174": {
+ "no_mass": true,
+ "thermal_resistance": 1.0608246538051842
+ }
+ },
+ {
+ "virtual_no_mass_175": {
+ "no_mass": true,
+ "thermal_resistance": 4.365532467532468
+ }
+ },
+ {
+ "virtual_no_mass_176": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_177": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_178": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_179": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_180": {
+ "no_mass": true,
+ "thermal_resistance": 0.6584101668836548
+ }
+ },
+ {
+ "virtual_no_mass_181": {
+ "no_mass": true,
+ "thermal_resistance": 1.4385352223534045
+ }
+ },
+ {
+ "virtual_no_mass_182": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_183": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_184": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_185": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_186": {
+ "no_mass": true,
+ "thermal_resistance": 0.7634850606909431
+ }
+ },
+ {
+ "virtual_no_mass_187": {
+ "no_mass": true,
+ "thermal_resistance": 2.0620926640926642
+ }
+ },
+ {
+ "virtual_no_mass_188": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_189": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_190": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_191": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_192": {
+ "no_mass": true,
+ "thermal_resistance": 0.8674407782554092
+ }
+ },
+ {
+ "virtual_no_mass_193": {
+ "no_mass": true,
+ "thermal_resistance": 2.4290326377742106
+ }
+ },
+ {
+ "virtual_no_mass_194": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_195": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_196": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_197": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_198": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_199": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_200": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_201": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_202": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_203": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_204": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_205": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_206": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_207": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_208": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_209": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_210": {
+ "no_mass": true,
+ "thermal_resistance": 1.0608246538051842
+ }
+ },
+ {
+ "virtual_no_mass_211": {
+ "no_mass": true,
+ "thermal_resistance": 4.365532467532468
+ }
+ },
+ {
+ "virtual_no_mass_212": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_213": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_214": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_215": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_216": {
+ "no_mass": true,
+ "thermal_resistance": 0.6584101668836548
+ }
+ },
+ {
+ "virtual_no_mass_217": {
+ "no_mass": true,
+ "thermal_resistance": 1.4385352223534045
+ }
+ },
+ {
+ "virtual_no_mass_218": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_219": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_220": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_221": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_222": {
+ "no_mass": true,
+ "thermal_resistance": 0.7634850606909431
+ }
+ },
+ {
+ "virtual_no_mass_223": {
+ "no_mass": true,
+ "thermal_resistance": 2.0620926640926642
+ }
+ },
+ {
+ "virtual_no_mass_224": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_225": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_226": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_227": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_228": {
+ "no_mass": true,
+ "thermal_resistance": 0.8674407782554092
+ }
+ },
+ {
+ "virtual_no_mass_229": {
+ "no_mass": true,
+ "thermal_resistance": 2.4290326377742106
+ }
+ },
+ {
+ "virtual_no_mass_230": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_231": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_232": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_233": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_234": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_235": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_236": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_237": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_238": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_239": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_240": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_241": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_242": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_243": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_244": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_245": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_246": {
+ "no_mass": true,
+ "thermal_resistance": 1.0608246538051842
+ }
+ },
+ {
+ "virtual_no_mass_247": {
+ "no_mass": true,
+ "thermal_resistance": 4.365532467532468
+ }
+ },
+ {
+ "virtual_no_mass_248": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_249": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_250": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_251": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_252": {
+ "no_mass": true,
+ "thermal_resistance": 0.6584101668836548
+ }
+ },
+ {
+ "virtual_no_mass_253": {
+ "no_mass": true,
+ "thermal_resistance": 1.4385352223534045
+ }
+ },
+ {
+ "virtual_no_mass_254": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_255": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_256": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_257": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_258": {
+ "no_mass": true,
+ "thermal_resistance": 0.7634850606909431
+ }
+ },
+ {
+ "virtual_no_mass_259": {
+ "no_mass": true,
+ "thermal_resistance": 2.0620926640926642
+ }
+ },
+ {
+ "virtual_no_mass_260": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_261": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_262": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_263": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_264": {
+ "no_mass": true,
+ "thermal_resistance": 0.8674407782554092
+ }
+ },
+ {
+ "virtual_no_mass_265": {
+ "no_mass": true,
+ "thermal_resistance": 2.4290326377742106
+ }
+ },
+ {
+ "virtual_no_mass_266": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_267": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_268": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_269": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_270": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_271": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_272": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_273": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_274": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_275": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_276": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_277": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_278": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_279": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_280": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_281": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_282": {
+ "no_mass": true,
+ "thermal_resistance": 1.0608246538051842
+ }
+ },
+ {
+ "virtual_no_mass_283": {
+ "no_mass": true,
+ "thermal_resistance": 4.365532467532468
+ }
+ },
+ {
+ "virtual_no_mass_284": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_285": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_286": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_287": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_288": {
+ "no_mass": true,
+ "thermal_resistance": 0.6584101668836548
+ }
+ },
+ {
+ "virtual_no_mass_289": {
+ "no_mass": true,
+ "thermal_resistance": 1.4385352223534045
+ }
+ },
+ {
+ "virtual_no_mass_290": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_291": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_292": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_293": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_294": {
+ "no_mass": true,
+ "thermal_resistance": 0.7634850606909431
+ }
+ },
+ {
+ "virtual_no_mass_295": {
+ "no_mass": true,
+ "thermal_resistance": 2.0620926640926642
+ }
+ },
+ {
+ "virtual_no_mass_296": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_297": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_298": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_299": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_300": {
+ "no_mass": true,
+ "thermal_resistance": 0.8674407782554092
+ }
+ },
+ {
+ "virtual_no_mass_301": {
+ "no_mass": true,
+ "thermal_resistance": 2.4290326377742106
+ }
+ },
+ {
+ "virtual_no_mass_302": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_303": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_304": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_305": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_306": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_307": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_308": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_309": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_310": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_311": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_312": {
+ "no_mass": true,
+ "thermal_resistance": 0.9477107371445987
+ }
+ },
+ {
+ "virtual_no_mass_313": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_314": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_315": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_316": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_317": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_318": {
+ "no_mass": true,
+ "thermal_resistance": 1.0608246538051842
+ }
+ },
+ {
+ "virtual_no_mass_319": {
+ "no_mass": true,
+ "thermal_resistance": 4.365532467532468
+ }
+ },
+ {
+ "virtual_no_mass_320": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_321": {
+ "no_mass": true,
+ "thermal_resistance": 1.1273002032671475
+ }
+ },
+ {
+ "virtual_no_mass_322": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_323": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_324": {
+ "no_mass": true,
+ "thermal_resistance": 1.7073737251092764
+ }
+ },
+ {
+ "virtual_no_mass_325": {
+ "no_mass": true,
+ "thermal_resistance": 1.4385352223534045
+ }
+ },
+ {
+ "virtual_no_mass_326": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_327": {
+ "no_mass": true,
+ "thermal_resistance": 1.5969753613292363
+ }
+ },
+ {
+ "virtual_no_mass_328": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_329": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_330": {
+ "no_mass": true,
+ "thermal_resistance": 1.413086004651633
+ }
+ },
+ {
+ "virtual_no_mass_331": {
+ "no_mass": true,
+ "thermal_resistance": 2.0620926640926642
+ }
+ },
+ {
+ "virtual_no_mass_332": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_333": {
+ "no_mass": true,
+ "thermal_resistance": 1.7749639097270375
+ }
+ },
+ {
+ "virtual_no_mass_334": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_335": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_336": {
+ "no_mass": true,
+ "thermal_resistance": 2.294228185203173
+ }
+ },
+ {
+ "virtual_no_mass_337": {
+ "no_mass": true,
+ "thermal_resistance": 2.4290326377742106
+ }
+ },
+ {
+ "virtual_no_mass_338": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_339": {
+ "no_mass": true,
+ "thermal_resistance": 2.125459582300353
+ }
+ },
+ {
+ "virtual_no_mass_340": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_341": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_342": {
+ "no_mass": true,
+ "thermal_resistance": 2.8369837552322106
+ }
+ },
+ {
+ "virtual_no_mass_343": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_344": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_345": {
+ "no_mass": true,
+ "thermal_resistance": 2.2997515212981745
+ }
+ },
+ {
+ "virtual_no_mass_346": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_347": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_348": {
+ "no_mass": true,
+ "thermal_resistance": 2.8369837552322106
+ }
+ },
+ {
+ "virtual_no_mass_349": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_350": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_351": {
+ "no_mass": true,
+ "thermal_resistance": 2.2997515212981745
+ }
+ },
+ {
+ "virtual_no_mass_352": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_353": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_354": {
+ "no_mass": true,
+ "thermal_resistance": 3.692128696887511
+ }
+ },
+ {
+ "virtual_no_mass_355": {
+ "no_mass": true,
+ "thermal_resistance": 4.365532467532468
+ }
+ },
+ {
+ "virtual_no_mass_356": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_357": {
+ "no_mass": true,
+ "thermal_resistance": 2.8286547252310448
+ }
+ },
+ {
+ "virtual_no_mass_358": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_359": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_360": {
+ "no_mass": true,
+ "thermal_resistance": 1.7073737251092764
+ }
+ },
+ {
+ "virtual_no_mass_361": {
+ "no_mass": true,
+ "thermal_resistance": 1.4385352223534045
+ }
+ },
+ {
+ "virtual_no_mass_362": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_363": {
+ "no_mass": true,
+ "thermal_resistance": 1.5969753613292363
+ }
+ },
+ {
+ "virtual_no_mass_364": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_365": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_366": {
+ "no_mass": true,
+ "thermal_resistance": 1.413086004651633
+ }
+ },
+ {
+ "virtual_no_mass_367": {
+ "no_mass": true,
+ "thermal_resistance": 2.0620926640926642
+ }
+ },
+ {
+ "virtual_no_mass_368": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_369": {
+ "no_mass": true,
+ "thermal_resistance": 1.7749639097270375
+ }
+ },
+ {
+ "virtual_no_mass_370": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_371": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_372": {
+ "no_mass": true,
+ "thermal_resistance": 2.294228185203173
+ }
+ },
+ {
+ "virtual_no_mass_373": {
+ "no_mass": true,
+ "thermal_resistance": 2.4290326377742106
+ }
+ },
+ {
+ "virtual_no_mass_374": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_375": {
+ "no_mass": true,
+ "thermal_resistance": 2.125459582300353
+ }
+ },
+ {
+ "virtual_no_mass_376": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_377": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_378": {
+ "no_mass": true,
+ "thermal_resistance": 2.8369837552322106
+ }
+ },
+ {
+ "virtual_no_mass_379": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_380": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_381": {
+ "no_mass": true,
+ "thermal_resistance": 2.2997515212981745
+ }
+ },
+ {
+ "virtual_no_mass_382": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_383": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_384": {
+ "no_mass": true,
+ "thermal_resistance": 2.8369837552322106
+ }
+ },
+ {
+ "virtual_no_mass_385": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_386": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_387": {
+ "no_mass": true,
+ "thermal_resistance": 2.2997515212981745
+ }
+ },
+ {
+ "virtual_no_mass_388": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_389": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_390": {
+ "no_mass": true,
+ "thermal_resistance": 3.692128696887511
+ }
+ },
+ {
+ "virtual_no_mass_391": {
+ "no_mass": true,
+ "thermal_resistance": 4.365532467532468
+ }
+ },
+ {
+ "virtual_no_mass_392": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_393": {
+ "no_mass": true,
+ "thermal_resistance": 2.8286547252310448
+ }
+ },
+ {
+ "virtual_no_mass_394": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_395": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_396": {
+ "no_mass": true,
+ "thermal_resistance": 1.7073737251092764
+ }
+ },
+ {
+ "virtual_no_mass_397": {
+ "no_mass": true,
+ "thermal_resistance": 1.4385352223534045
+ }
+ },
+ {
+ "virtual_no_mass_398": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_399": {
+ "no_mass": true,
+ "thermal_resistance": 1.5969753613292363
+ }
+ },
+ {
+ "virtual_no_mass_400": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_401": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_402": {
+ "no_mass": true,
+ "thermal_resistance": 1.413086004651633
+ }
+ },
+ {
+ "virtual_no_mass_403": {
+ "no_mass": true,
+ "thermal_resistance": 2.0620926640926642
+ }
+ },
+ {
+ "virtual_no_mass_404": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_405": {
+ "no_mass": true,
+ "thermal_resistance": 1.7749639097270375
+ }
+ },
+ {
+ "virtual_no_mass_406": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_407": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_408": {
+ "no_mass": true,
+ "thermal_resistance": 2.294228185203173
+ }
+ },
+ {
+ "virtual_no_mass_409": {
+ "no_mass": true,
+ "thermal_resistance": 2.4290326377742106
+ }
+ },
+ {
+ "virtual_no_mass_410": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_411": {
+ "no_mass": true,
+ "thermal_resistance": 2.125459582300353
+ }
+ },
+ {
+ "virtual_no_mass_412": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_413": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_414": {
+ "no_mass": true,
+ "thermal_resistance": 2.8369837552322106
+ }
+ },
+ {
+ "virtual_no_mass_415": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_416": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_417": {
+ "no_mass": true,
+ "thermal_resistance": 2.2997515212981745
+ }
+ },
+ {
+ "virtual_no_mass_418": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_419": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_420": {
+ "no_mass": true,
+ "thermal_resistance": 2.8369837552322106
+ }
+ },
+ {
+ "virtual_no_mass_421": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_422": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_423": {
+ "no_mass": true,
+ "thermal_resistance": 2.2997515212981745
+ }
+ },
+ {
+ "virtual_no_mass_424": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_425": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_426": {
+ "no_mass": true,
+ "thermal_resistance": 3.692128696887511
+ }
+ },
+ {
+ "virtual_no_mass_427": {
+ "no_mass": true,
+ "thermal_resistance": 4.365532467532468
+ }
+ },
+ {
+ "virtual_no_mass_428": {
+ "no_mass": true,
+ "thermal_resistance": 0.10171897213616554
+ }
+ },
+ {
+ "virtual_no_mass_429": {
+ "no_mass": true,
+ "thermal_resistance": 2.8286547252310448
+ }
+ },
+ {
+ "virtual_no_mass_430": {
+ "no_mass": true,
+ "thermal_resistance": 0.15864053940160128
+ }
+ },
+ {
+ "virtual_no_mass_431": {
+ "no_mass": true,
+ "thermal_resistance": 1.3150021070375053
+ }
+ },
+ {
+ "virtual_no_mass_432": {
+ "no_mass": true,
+ "thermal_resistance": 3.1214135194307606
+ }
+ },
+ {
+ "virtual_no_mass_433": {
+ "no_mass": true,
+ "thermal_resistance": 3.08900062932662
+ }
+ },
+ {
+ "virtual_no_mass_434": {
+ "no_mass": true,
+ "thermal_resistance": 4.245362196962524
+ }
+ },
+ {
+ "virtual_no_mass_435": {
+ "no_mass": true,
+ "thermal_resistance": 1.7073737251092764
+ }
+ },
+ {
+ "virtual_no_mass_436": {
+ "no_mass": true,
+ "thermal_resistance": 0.44427766599597596
+ }
+ },
+ {
+ "virtual_no_mass_437": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_438": {
+ "no_mass": true,
+ "thermal_resistance": 3.5439326469858594
+ }
+ },
+ {
+ "virtual_no_mass_439": {
+ "no_mass": true,
+ "thermal_resistance": 4.148195160031225
+ }
+ },
+ {
+ "virtual_no_mass_440": {
+ "no_mass": true,
+ "thermal_resistance": 5.304556727667129
+ }
+ },
+ {
+ "virtual_no_mass_441": {
+ "no_mass": true,
+ "thermal_resistance": 2.5853327722682193
+ }
+ },
+ {
+ "virtual_no_mass_442": {
+ "no_mass": true,
+ "thermal_resistance": 1.3222367131549189
+ }
+ },
+ {
+ "virtual_no_mass_443": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_444": {
+ "no_mass": true,
+ "thermal_resistance": 3.995393340779003
+ }
+ },
+ {
+ "virtual_no_mass_445": {
+ "no_mass": true,
+ "thermal_resistance": 4.148195160031225
+ }
+ },
+ {
+ "virtual_no_mass_446": {
+ "no_mass": true,
+ "thermal_resistance": 5.304556727667129
+ }
+ },
+ {
+ "virtual_no_mass_447": {
+ "no_mass": true,
+ "thermal_resistance": 3.4679371053909667
+ }
+ },
+ {
+ "virtual_no_mass_448": {
+ "no_mass": true,
+ "thermal_resistance": 2.204841046277666
+ }
+ },
+ {
+ "virtual_no_mass_449": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_450": {
+ "no_mass": true,
+ "thermal_resistance": 4.708715106732348
+ }
+ },
+ {
+ "virtual_no_mass_451": {
+ "no_mass": true,
+ "thermal_resistance": 4.856553791887125
+ }
+ },
+ {
+ "virtual_no_mass_452": {
+ "no_mass": true,
+ "thermal_resistance": 6.012915359523029
+ }
+ },
+ {
+ "virtual_no_mass_453": {
+ "no_mass": true,
+ "thermal_resistance": 3.4679371053909667
+ }
+ },
+ {
+ "virtual_no_mass_454": {
+ "no_mass": true,
+ "thermal_resistance": 2.204841046277666
+ }
+ },
+ {
+ "virtual_no_mass_455": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_456": {
+ "no_mass": true,
+ "thermal_resistance": 4.708715106732348
+ }
+ },
+ {
+ "virtual_no_mass_457": {
+ "no_mass": true,
+ "thermal_resistance": 4.856553791887125
+ }
+ },
+ {
+ "virtual_no_mass_458": {
+ "no_mass": true,
+ "thermal_resistance": 6.012915359523029
+ }
+ },
+ {
+ "virtual_no_mass_459": {
+ "no_mass": true,
+ "thermal_resistance": 3.4679371053909667
+ }
+ },
+ {
+ "virtual_no_mass_460": {
+ "no_mass": true,
+ "thermal_resistance": 2.204841046277666
+ }
+ },
+ {
+ "virtual_no_mass_461": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_462": {
+ "no_mass": true,
+ "thermal_resistance": 5.411291219144526
+ }
+ },
+ {
+ "virtual_no_mass_463": {
+ "no_mass": true,
+ "thermal_resistance": 5.725967806841046
+ }
+ },
+ {
+ "virtual_no_mass_464": {
+ "no_mass": true,
+ "thermal_resistance": 6.88232937447695
+ }
+ },
+ {
+ "virtual_no_mass_465": {
+ "no_mass": true,
+ "thermal_resistance": 4.708715106732348
+ }
+ },
+ {
+ "virtual_no_mass_466": {
+ "no_mass": true,
+ "thermal_resistance": 3.4456190476190476
+ }
+ },
+ {
+ "virtual_no_mass_467": {
+ "no_mass": true,
+ "thermal_resistance": 2.478598280790823
+ }
+ },
+ {
+ "virtual_no_mass_468": {
+ "no_mass": true,
+ "thermal_resistance": 3.1214135194307606
+ }
+ },
+ {
+ "virtual_no_mass_469": {
+ "no_mass": true,
+ "thermal_resistance": 3.865061435973353
+ }
+ },
+ {
+ "virtual_no_mass_470": {
+ "no_mass": true,
+ "thermal_resistance": 4.245362196962524
+ }
+ },
+ {
+ "virtual_no_mass_471": {
+ "no_mass": true,
+ "thermal_resistance": 1.7073737251092764
+ }
+ },
+ {
+ "virtual_no_mass_472": {
+ "no_mass": true,
+ "thermal_resistance": 0.44427766599597596
+ }
+ },
+ {
+ "virtual_no_mass_473": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_474": {
+ "no_mass": true,
+ "thermal_resistance": 3.5439326469858594
+ }
+ },
+ {
+ "virtual_no_mass_475": {
+ "no_mass": true,
+ "thermal_resistance": 5.093970695970697
+ }
+ },
+ {
+ "virtual_no_mass_476": {
+ "no_mass": true,
+ "thermal_resistance": 5.304556727667129
+ }
+ },
+ {
+ "virtual_no_mass_477": {
+ "no_mass": true,
+ "thermal_resistance": 2.5853327722682193
+ }
+ },
+ {
+ "virtual_no_mass_478": {
+ "no_mass": true,
+ "thermal_resistance": 1.3222367131549189
+ }
+ },
+ {
+ "virtual_no_mass_479": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_480": {
+ "no_mass": true,
+ "thermal_resistance": 3.995393340779003
+ }
+ },
+ {
+ "virtual_no_mass_481": {
+ "no_mass": true,
+ "thermal_resistance": 5.093970695970697
+ }
+ },
+ {
+ "virtual_no_mass_482": {
+ "no_mass": true,
+ "thermal_resistance": 5.304556727667129
+ }
+ },
+ {
+ "virtual_no_mass_483": {
+ "no_mass": true,
+ "thermal_resistance": 3.4679371053909667
+ }
+ },
+ {
+ "virtual_no_mass_484": {
+ "no_mass": true,
+ "thermal_resistance": 2.204841046277666
+ }
+ },
+ {
+ "virtual_no_mass_485": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_486": {
+ "no_mass": true,
+ "thermal_resistance": 4.708715106732348
+ }
+ },
+ {
+ "virtual_no_mass_487": {
+ "no_mass": true,
+ "thermal_resistance": 5.9300910973084875
+ }
+ },
+ {
+ "virtual_no_mass_488": {
+ "no_mass": true,
+ "thermal_resistance": 6.012915359523029
+ }
+ },
+ {
+ "virtual_no_mass_489": {
+ "no_mass": true,
+ "thermal_resistance": 3.4679371053909667
+ }
+ },
+ {
+ "virtual_no_mass_490": {
+ "no_mass": true,
+ "thermal_resistance": 2.204841046277666
+ }
+ },
+ {
+ "virtual_no_mass_491": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_492": {
+ "no_mass": true,
+ "thermal_resistance": 4.708715106732348
+ }
+ },
+ {
+ "virtual_no_mass_493": {
+ "no_mass": true,
+ "thermal_resistance": 5.9300910973084875
+ }
+ },
+ {
+ "virtual_no_mass_494": {
+ "no_mass": true,
+ "thermal_resistance": 6.012915359523029
+ }
+ },
+ {
+ "virtual_no_mass_495": {
+ "no_mass": true,
+ "thermal_resistance": 3.4679371053909667
+ }
+ },
+ {
+ "virtual_no_mass_496": {
+ "no_mass": true,
+ "thermal_resistance": 2.204841046277666
+ }
+ },
+ {
+ "virtual_no_mass_497": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_498": {
+ "no_mass": true,
+ "thermal_resistance": 5.411291219144526
+ }
+ },
+ {
+ "virtual_no_mass_499": {
+ "no_mass": true,
+ "thermal_resistance": 6.948177095631642
+ }
+ },
+ {
+ "virtual_no_mass_500": {
+ "no_mass": true,
+ "thermal_resistance": 6.88232937447695
+ }
+ },
+ {
+ "virtual_no_mass_501": {
+ "no_mass": true,
+ "thermal_resistance": 4.708715106732348
+ }
+ },
+ {
+ "virtual_no_mass_502": {
+ "no_mass": true,
+ "thermal_resistance": 3.4456190476190476
+ }
+ },
+ {
+ "virtual_no_mass_503": {
+ "no_mass": true,
+ "thermal_resistance": 2.478598280790823
+ }
+ },
+ {
+ "virtual_no_mass_504": {
+ "no_mass": true,
+ "thermal_resistance": 3.395086206896552
+ }
+ },
+ {
+ "virtual_no_mass_505": {
+ "no_mass": true,
+ "thermal_resistance": 4.781275261324042
+ }
+ },
+ {
+ "virtual_no_mass_506": {
+ "no_mass": true,
+ "thermal_resistance": 5.021423003609256
+ }
+ },
+ {
+ "virtual_no_mass_507": {
+ "no_mass": true,
+ "thermal_resistance": 1.7073737251092764
+ }
+ },
+ {
+ "virtual_no_mass_508": {
+ "no_mass": true,
+ "thermal_resistance": 0.44427766599597596
+ }
+ },
+ {
+ "virtual_no_mass_509": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_510": {
+ "no_mass": true,
+ "thermal_resistance": 3.720395250487963
+ }
+ },
+ {
+ "virtual_no_mass_511": {
+ "no_mass": true,
+ "thermal_resistance": 5.093970695970697
+ }
+ },
+ {
+ "virtual_no_mass_512": {
+ "no_mass": true,
+ "thermal_resistance": 5.554361567635904
+ }
+ },
+ {
+ "virtual_no_mass_513": {
+ "no_mass": true,
+ "thermal_resistance": 2.5853327722682193
+ }
+ },
+ {
+ "virtual_no_mass_514": {
+ "no_mass": true,
+ "thermal_resistance": 1.3222367131549189
+ }
+ },
+ {
+ "virtual_no_mass_515": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_516": {
+ "no_mass": true,
+ "thermal_resistance": 4.113477011494253
+ }
+ },
+ {
+ "virtual_no_mass_517": {
+ "no_mass": true,
+ "thermal_resistance": 5.9300910973084875
+ }
+ },
+ {
+ "virtual_no_mass_518": {
+ "no_mass": true,
+ "thermal_resistance": 6.2503322636066
+ }
+ },
+ {
+ "virtual_no_mass_519": {
+ "no_mass": true,
+ "thermal_resistance": 3.4679371053909667
+ }
+ },
+ {
+ "virtual_no_mass_520": {
+ "no_mass": true,
+ "thermal_resistance": 2.204841046277666
+ }
+ },
+ {
+ "virtual_no_mass_521": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_522": {
+ "no_mass": true,
+ "thermal_resistance": 4.597973135525261
+ }
+ },
+ {
+ "virtual_no_mass_523": {
+ "no_mass": true,
+ "thermal_resistance": 6.948177095631642
+ }
+ },
+ {
+ "virtual_no_mass_524": {
+ "no_mass": true,
+ "thermal_resistance": 7.0864526649443915
+ }
+ },
+ {
+ "virtual_no_mass_525": {
+ "no_mass": true,
+ "thermal_resistance": 3.4679371053909667
+ }
+ },
+ {
+ "virtual_no_mass_526": {
+ "no_mass": true,
+ "thermal_resistance": 2.204841046277666
+ }
+ },
+ {
+ "virtual_no_mass_527": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_528": {
+ "no_mass": true,
+ "thermal_resistance": 5.209968239564429
+ }
+ },
+ {
+ "virtual_no_mass_529": {
+ "no_mass": true,
+ "thermal_resistance": 7.230722832722833
+ }
+ },
+ {
+ "virtual_no_mass_530": {
+ "no_mass": true,
+ "thermal_resistance": 8.104538663267546
+ }
+ },
+ {
+ "virtual_no_mass_531": {
+ "no_mass": true,
+ "thermal_resistance": 3.4679371053909667
+ }
+ },
+ {
+ "virtual_no_mass_532": {
+ "no_mass": true,
+ "thermal_resistance": 2.204841046277666
+ }
+ },
+ {
+ "virtual_no_mass_533": {
+ "no_mass": true,
+ "thermal_resistance": 1.1610798163620788
+ }
+ },
+ {
+ "virtual_no_mass_534": {
+ "no_mass": true,
+ "thermal_resistance": 6.007416405433647
+ }
+ },
+ {
+ "virtual_no_mass_535": {
+ "no_mass": true,
+ "thermal_resistance": 7.774623376623378
+ }
+ },
+ {
+ "virtual_no_mass_536": {
+ "no_mass": true,
+ "thermal_resistance": 8.387084400358736
+ }
+ },
+ {
+ "virtual_no_mass_537": {
+ "no_mass": true,
+ "thermal_resistance": 4.708715106732348
+ }
+ },
+ {
+ "virtual_no_mass_538": {
+ "no_mass": true,
+ "thermal_resistance": 3.4456190476190476
+ }
+ },
+ {
+ "virtual_no_mass_539": {
+ "no_mass": true,
+ "thermal_resistance": 2.478598280790823
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/hub/data/construction/eilat_archetypes.json b/hub/data/construction/eilat_archetypes.json
index 25748055..809c971b 100644
--- a/hub/data/construction/eilat_archetypes.json
+++ b/hub/data/construction/eilat_archetypes.json
@@ -8,6 +8,8 @@
"extra_loses_due_thermal_bridges": 0.1,
"infiltration_rate_for_ventilation_system_on": 0,
"infiltration_rate_for_ventilation_system_off": 0.9,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.006,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "residential_1000_1980_BWh",
@@ -42,6 +44,8 @@
"extra_loses_due_thermal_bridges": 0.1,
"infiltration_rate_for_ventilation_system_on": 0,
"infiltration_rate_for_ventilation_system_off": 0.31,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.002,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "dormitory_2011_3000_BWh",
@@ -76,6 +80,8 @@
"extra_loses_due_thermal_bridges": 0.09,
"infiltration_rate_for_ventilation_system_on": 0,
"infiltration_rate_for_ventilation_system_off": 0.65,
+ "infiltration_rate_area_for_ventilation_system_on": 0,
+ "infiltration_rate_area_for_ventilation_system_off": 0.004,
"constructions": {
"OutdoorsWall": {
"opaque_surface_name": "hotel_employees_1981_2010_BWh",
diff --git a/hub/data/construction/us_archetypes.xml b/hub/data/construction/us_archetypes.xml
index 629feb8c..a6384316 100644
--- a/hub/data/construction/us_archetypes.xml
+++ b/hub/data/construction/us_archetypes.xml
@@ -21,6 +21,8 @@
0.15
0.5
0
+ 0.003
+ 0
@@ -44,6 +46,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -67,6 +71,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -89,6 +95,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -111,6 +119,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -133,6 +143,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -155,6 +167,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -177,6 +191,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -199,6 +215,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -221,6 +239,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -243,6 +263,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -265,6 +287,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -287,6 +311,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -309,6 +335,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -331,6 +359,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -353,6 +383,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -375,6 +407,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -397,6 +431,8 @@
0.15
0.1
0
+ 0.0005
+ 0
@@ -419,6 +455,8 @@
0.15
0.1
0
+ 0.0005
+ 0
@@ -441,6 +479,8 @@
0.15
0.1
0
+ 0.0005
+ 0
@@ -463,6 +503,8 @@
0.15
0.1
0
+ 0.0005
+ 0
@@ -485,6 +527,8 @@
0.15
0.1
0
+ 0.0005
+ 0
@@ -507,6 +551,8 @@
0.15
0.1
0
+ 0.0005
+ 0
@@ -529,6 +575,8 @@
0.15
0.1
0
+ 0.0005
+ 0
@@ -551,6 +599,8 @@
0.15
0.10
0
+ 0.0005
+ 0
@@ -573,6 +623,8 @@
0.15
0.10
0
+ 0.0005
+ 0
@@ -595,6 +647,8 @@
0.15
0.10
0
+ 0.0005
+ 0
@@ -617,6 +671,8 @@
0.15
0.10
0
+ 0.0005
+ 0
@@ -639,6 +695,8 @@
0.15
0.10
0
+ 0.0005
+ 0
@@ -661,6 +719,8 @@
0.15
0.10
0
+ 0.0005
+ 0
@@ -683,6 +743,8 @@
0.15
0.10
0
+ 0.0005
+ 0
@@ -705,6 +767,8 @@
0.15
0.10
0
+ 0.0005
+ 0
@@ -727,6 +791,8 @@
0.15
0.10
0
+ 0.0005
+ 0
@@ -749,6 +815,8 @@
0.15
0.10
0
+ 0.0005
+ 0
@@ -771,6 +839,8 @@
0.15
0.10
0
+ 0.0005
+ 0
@@ -793,6 +863,8 @@
0.15
0.50
0
+ 0.003
+ 0
@@ -815,5 +887,7 @@
0.15
0.10
0
+ 0.0005
+ 0
diff --git a/hub/helpers/data/hub_function_to_cerc_construction_function.py b/hub/helpers/data/hub_function_to_cerc_construction_function.py
new file mode 100644
index 00000000..516d0185
--- /dev/null
+++ b/hub/helpers/data/hub_function_to_cerc_construction_function.py
@@ -0,0 +1,86 @@
+"""
+Dictionaries module for hub function to nrcan construction function
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2022 Concordia CERC group
+Project Coder Guille Gutierrez Guillermo.GutierrezMorote@concordia.ca
+"""
+
+import hub.helpers.constants as cte
+
+
+class HubFunctionToCercConstructionFunction:
+ """
+ Hub function to cerc construction function class (copy of HubFunctionToNrcanConstructionFunction)
+ """
+ def __init__(self):
+ self._dictionary = {
+ cte.RESIDENTIAL: 'MURB_MidRiseApartment',
+ cte.SINGLE_FAMILY_HOUSE: 'SingleFamilyHouse',
+ cte.MULTI_FAMILY_HOUSE: 'HighriseApartment',
+ cte.ROW_HOUSE: 'MidriseApartment',
+ cte.MID_RISE_APARTMENT: 'MURB_MidRiseApartment',
+ cte.HIGH_RISE_APARTMENT: 'MURB_HighRiseApartment',
+ cte.OFFICE_AND_ADMINISTRATION: 'MediumOffice',
+ cte.SMALL_OFFICE: 'SmallOffice',
+ cte.MEDIUM_OFFICE: 'MediumOffice',
+ cte.LARGE_OFFICE: 'LargeOffice',
+ cte.COURTHOUSE: 'MediumOffice',
+ cte.FIRE_STATION: 'n/a',
+ cte.PENITENTIARY: 'LargeHotel',
+ cte.POLICE_STATION: 'n/a',
+ cte.POST_OFFICE: 'MediumOffice',
+ cte.LIBRARY: 'MediumOffice',
+ cte.EDUCATION: 'SecondarySchool',
+ cte.PRIMARY_SCHOOL: 'PrimarySchool',
+ cte.PRIMARY_SCHOOL_WITH_SHOWER: 'PrimarySchool',
+ cte.SECONDARY_SCHOOL: 'SecondarySchool',
+ cte.UNIVERSITY: 'SecondarySchool',
+ cte.LABORATORY_AND_RESEARCH_CENTER: 'SecondarySchool',
+ cte.STAND_ALONE_RETAIL: 'RetailStandalone',
+ cte.HOSPITAL: 'Hospital',
+ cte.OUT_PATIENT_HEALTH_CARE: 'Outpatient',
+ cte.HEALTH_CARE: 'Outpatient',
+ cte.RETIREMENT_HOME_OR_ORPHANAGE: 'SmallHotel',
+ cte.COMMERCIAL: 'RetailStripmall',
+ cte.STRIP_MALL: 'RetailStripmall',
+ cte.SUPERMARKET: 'RetailStripmall',
+ cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD: 'RetailStandalone',
+ cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD: 'RetailStandalone',
+ cte.RESTAURANT: 'FullServiceRestaurant',
+ cte.QUICK_SERVICE_RESTAURANT: 'QuickServiceRestaurant',
+ cte.FULL_SERVICE_RESTAURANT: 'FullServiceRestaurant',
+ cte.HOTEL: 'SmallHotel',
+ cte.HOTEL_MEDIUM_CLASS: 'SmallHotel',
+ cte.SMALL_HOTEL: 'SmallHotel',
+ cte.LARGE_HOTEL: 'LargeHotel',
+ cte.DORMITORY: 'SmallHotel',
+ cte.EVENT_LOCATION: 'n/a',
+ cte.CONVENTION_CENTER: 'n/a',
+ cte.HALL: 'n/a',
+ cte.GREEN_HOUSE: 'n/a',
+ cte.INDUSTRY: 'n/a',
+ cte.WORKSHOP: 'n/a',
+ cte.WAREHOUSE: 'Warehouse',
+ cte.WAREHOUSE_REFRIGERATED: 'Warehouse',
+ cte.SPORTS_LOCATION: 'n/a',
+ cte.SPORTS_ARENA: 'n/a',
+ cte.GYMNASIUM: 'n/a',
+ cte.MOTION_PICTURE_THEATRE: 'n/a',
+ cte.MUSEUM: 'n/a',
+ cte.PERFORMING_ARTS_THEATRE: 'n/a',
+ cte.TRANSPORTATION: 'n/a',
+ cte.AUTOMOTIVE_FACILITY: 'n/a',
+ cte.PARKING_GARAGE: 'n/a',
+ cte.RELIGIOUS: 'n/a',
+ cte.NON_HEATED: 'n/a',
+ cte.DATACENTER: 'n/a',
+ cte.FARM: 'n/a'
+ }
+
+ @property
+ def dictionary(self) -> dict:
+ """
+ Get the dictionary
+ :return: {}
+ """
+ return self._dictionary
diff --git a/hub/helpers/data/hub_usage_to_cerc_usage.py b/hub/helpers/data/hub_usage_to_cerc_usage.py
new file mode 100644
index 00000000..f1b1e5db
--- /dev/null
+++ b/hub/helpers/data/hub_usage_to_cerc_usage.py
@@ -0,0 +1,87 @@
+"""
+Dictionaries module for hub usage to NRCAN usage
+SPDX - License - Identifier: LGPL - 3.0 - or -later
+Copyright © 2022 Concordia CERC group
+Project Coder Guille Gutierrez Guillermo.GutierrezMorote@concordia.ca
+"""
+
+import hub.helpers.constants as cte
+
+
+class HubUsageToCercUsage:
+ """
+ Hub usage to cerc usage class (copy of HubUsageToNrcanUsage)
+ """
+
+ def __init__(self):
+ self._dictionary = {
+ cte.RESIDENTIAL: 'Multi-unit residential building',
+ cte.SINGLE_FAMILY_HOUSE: 'Multi-unit residential building',
+ cte.MULTI_FAMILY_HOUSE: 'Multi-unit residential building',
+ cte.ROW_HOUSE: 'Multi-unit residential building',
+ cte.MID_RISE_APARTMENT: 'Multi-unit residential building',
+ cte.HIGH_RISE_APARTMENT: 'Multi-unit residential building',
+ cte.OFFICE_AND_ADMINISTRATION: 'Office',
+ cte.SMALL_OFFICE: 'Office',
+ cte.MEDIUM_OFFICE: 'Office',
+ cte.LARGE_OFFICE: 'Office',
+ cte.COURTHOUSE: 'Courthouse',
+ cte.FIRE_STATION: 'Fire station',
+ cte.PENITENTIARY: 'Penitentiary',
+ cte.POLICE_STATION: 'Police station',
+ cte.POST_OFFICE: 'Post office',
+ cte.LIBRARY: 'Library',
+ cte.EDUCATION: 'School/university',
+ cte.PRIMARY_SCHOOL: 'School/university',
+ cte.PRIMARY_SCHOOL_WITH_SHOWER: 'School/university',
+ cte.SECONDARY_SCHOOL: 'School/university',
+ cte.UNIVERSITY: 'School/university',
+ cte.LABORATORY_AND_RESEARCH_CENTER: 'School/university',
+ cte.STAND_ALONE_RETAIL: 'Retail area',
+ cte.HOSPITAL: 'Hospital',
+ cte.OUT_PATIENT_HEALTH_CARE: 'Health care clinic',
+ cte.HEALTH_CARE: 'Health care clinic',
+ cte.RETIREMENT_HOME_OR_ORPHANAGE: 'Health care clinic',
+ cte.COMMERCIAL: 'Retail area',
+ cte.STRIP_MALL: 'Retail area',
+ cte.SUPERMARKET: 'Retail area',
+ cte.RETAIL_SHOP_WITHOUT_REFRIGERATED_FOOD: 'Retail area',
+ cte.RETAIL_SHOP_WITH_REFRIGERATED_FOOD: 'Retail area',
+ cte.RESTAURANT: 'Dining - bar lounge/leisure',
+ cte.QUICK_SERVICE_RESTAURANT: 'Dining - cafeteria/fast food',
+ cte.FULL_SERVICE_RESTAURANT: 'Dining - bar lounge/leisure',
+ cte.HOTEL: 'Hotel/Motel',
+ cte.HOTEL_MEDIUM_CLASS: 'Hotel/Motel',
+ cte.SMALL_HOTEL: 'Hotel/Motel',
+ cte.LARGE_HOTEL: 'Hotel/Motel',
+ cte.DORMITORY: 'Dormitory',
+ cte.EVENT_LOCATION: 'Convention centre',
+ cte.CONVENTION_CENTER: 'Convention centre',
+ cte.HALL: 'Town hall',
+ cte.GREEN_HOUSE: 'n/a',
+ cte.INDUSTRY: 'Manufacturing facility',
+ cte.WORKSHOP: 'Workshop',
+ cte.WAREHOUSE: 'Warehouse',
+ cte.WAREHOUSE_REFRIGERATED: 'Warehouse',
+ cte.SPORTS_LOCATION: 'Exercise centre',
+ cte.SPORTS_ARENA: 'Sports arena',
+ cte.GYMNASIUM: 'Gymnasium',
+ cte.MOTION_PICTURE_THEATRE: 'Motion picture theatre',
+ cte.MUSEUM: 'Museum',
+ cte.PERFORMING_ARTS_THEATRE: 'Performing arts theatre',
+ cte.TRANSPORTATION: 'Transportation facility',
+ cte.AUTOMOTIVE_FACILITY: 'Automotive facility',
+ cte.PARKING_GARAGE: 'Storage garage',
+ cte.RELIGIOUS: 'Religious building',
+ cte.NON_HEATED: 'n/a',
+ cte.DATACENTER: 'n/a',
+ cte.FARM: 'n/a'
+ }
+
+ @property
+ def dictionary(self) -> dict:
+ """
+ Get the dictionary
+ :return: {}
+ """
+ return self._dictionary
diff --git a/hub/helpers/data/montreal_function_to_hub_function.py b/hub/helpers/data/montreal_function_to_hub_function.py
index 16353dab..894888ab 100644
--- a/hub/helpers/data/montreal_function_to_hub_function.py
+++ b/hub/helpers/data/montreal_function_to_hub_function.py
@@ -33,6 +33,7 @@ class MontrealFunctionToHubFunction:
'6911': cte.CONVENTION_CENTER,
'9510': cte.RESIDENTIAL,
'1990': cte.MID_RISE_APARTMENT,
+ '2100': cte.HIGH_RISE_APARTMENT,
'1923': cte.NON_HEATED,
'7222': cte.SPORTS_LOCATION,
'5002': cte.STRIP_MALL,
diff --git a/hub/helpers/dictionaries.py b/hub/helpers/dictionaries.py
index 1775152a..56edd7d6 100644
--- a/hub/helpers/dictionaries.py
+++ b/hub/helpers/dictionaries.py
@@ -14,10 +14,12 @@ from hub.helpers.data.pluto_function_to_hub_function import PlutoFunctionToHubFu
from hub.helpers.data.hub_function_to_nrel_construction_function import HubFunctionToNrelConstructionFunction
from hub.helpers.data.hub_function_to_nrcan_construction_function import HubFunctionToNrcanConstructionFunction
from hub.helpers.data.hub_function_to_eilat_construction_function import HubFunctionToEilatConstructionFunction
+from hub.helpers.data.hub_function_to_cerc_construction_function import HubFunctionToCercConstructionFunction
from hub.helpers.data.hub_usage_to_comnet_usage import HubUsageToComnetUsage
from hub.helpers.data.hub_usage_to_hft_usage import HubUsageToHftUsage
from hub.helpers.data.hub_usage_to_nrcan_usage import HubUsageToNrcanUsage
from hub.helpers.data.hub_usage_to_eilat_usage import HubUsageToEilatUsage
+from hub.helpers.data.hub_usage_to_cerc_usage import HubUsageToCercUsage
from hub.helpers.data.montreal_system_to_hub_energy_generation_system import MontrealSystemToHubEnergyGenerationSystem
from hub.helpers.data.montreal_generation_system_to_hub_energy_generation_system import MontrealGenerationSystemToHubEnergyGenerationSystem
from hub.helpers.data.montreal_demand_type_to_hub_energy_demand_type import MontrealDemandTypeToHubEnergyDemandType
@@ -60,6 +62,14 @@ class Dictionaries:
"""
return HubUsageToNrcanUsage().dictionary
+ @property
+ def hub_usage_to_cerc_usage(self) -> dict:
+ """
+ Get hub usage to CERC usage, transformation dictionary
+ :return: dict
+ """
+ return HubUsageToCercUsage().dictionary
+
@property
def hub_usage_to_eilat_usage(self) -> dict:
"""
@@ -92,6 +102,14 @@ class Dictionaries:
"""
return HubFunctionToEilatConstructionFunction().dictionary
+ @property
+ def hub_function_to_cerc_construction_function(self) -> dict:
+ """
+ Get hub function to Cerc construction function, transformation dictionary (copy of HubFunctionToNrcanConstructionFunction)
+ :return: dict
+ """
+ return HubFunctionToCercConstructionFunction().dictionary
+
@property
def hub_function_to_nrel_construction_function(self) -> dict:
"""
diff --git a/hub/imports/construction/cerc_physics_parameters.py b/hub/imports/construction/cerc_physics_parameters.py
new file mode 100644
index 00000000..355aa004
--- /dev/null
+++ b/hub/imports/construction/cerc_physics_parameters.py
@@ -0,0 +1,109 @@
+"""
+CercPhysicsParameters import the construction and material information defined by Cerc
+
+this is a copy of NrcanPhysicsParameters.py with the necessary changes to adapt it to the Cerc catalog
+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 logging
+
+from hub.catalog_factories.construction_catalog_factory import ConstructionCatalogFactory
+from hub.city_model_structure.building_demand.thermal_archetype import ThermalArchetype
+from hub.city_model_structure.building_demand.construction import Construction
+from hub.city_model_structure.building_demand.layer import Layer
+from hub.helpers.dictionaries import Dictionaries
+from hub.imports.construction.helpers.construction_helper import ConstructionHelper
+
+
+class CercPhysicsParameters:
+ """
+ CercPhysicsParameters class
+ """
+
+ def __init__(self, city, divide_in_storeys=False):
+ self._city = city
+ self._divide_in_storeys = divide_in_storeys
+ self._climate_zone = ConstructionHelper.city_to_nrcan_climate_zone(city.climate_reference_city)
+
+ def enrich_buildings(self):
+ """
+ Returns the city with the construction parameters assigned to the buildings
+ """
+ city = self._city
+ cerc_catalog = ConstructionCatalogFactory('cerc').catalog
+ for building in city.buildings:
+ if building.function not in Dictionaries().hub_function_to_cerc_construction_function:
+ logging.error('Building %s has an unknown building function %s', building.name, building.function)
+ continue
+ function = Dictionaries().hub_function_to_cerc_construction_function[building.function]
+ try:
+ archetype = self._search_archetype(cerc_catalog, function, building.year_of_construction, self._climate_zone)
+
+ except KeyError:
+ logging.error('Building %s has unknown construction archetype for building function: %s '
+ '[%s], building year of construction: %s and climate zone %s', building.name, function,
+ building.function, building.year_of_construction, self._climate_zone)
+ continue
+ thermal_archetype = ThermalArchetype()
+ self._assign_values(thermal_archetype, archetype)
+ for internal_zone in building.internal_zones:
+ internal_zone.thermal_archetype = thermal_archetype
+
+ @staticmethod
+ def _search_archetype(cerc_catalog, function, year_of_construction, climate_zone):
+ cerc_archetypes = cerc_catalog.entries('archetypes')
+ for building_archetype in cerc_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):
+ return building_archetype
+ raise KeyError('archetype not found')
+
+ @staticmethod
+ def _assign_values(thermal_archetype, catalog_archetype):
+ thermal_archetype.average_storey_height = catalog_archetype.average_storey_height
+ thermal_archetype.extra_loses_due_to_thermal_bridges = catalog_archetype.extra_loses_due_to_thermal_bridges
+ thermal_archetype.thermal_capacity = catalog_archetype.thermal_capacity
+ thermal_archetype.indirect_heated_ratio = 0
+ thermal_archetype.infiltration_rate_for_ventilation_system_on = catalog_archetype.infiltration_rate_for_ventilation_system_on
+ thermal_archetype.infiltration_rate_for_ventilation_system_off = catalog_archetype.infiltration_rate_for_ventilation_system_off
+ thermal_archetype.infiltration_rate_area_for_ventilation_system_on = catalog_archetype.infiltration_rate_area_for_ventilation_system_on
+ thermal_archetype.infiltration_rate_area_for_ventilation_system_off = catalog_archetype.infiltration_rate_area_for_ventilation_system_off
+ _constructions = []
+ for catalog_construction in catalog_archetype.constructions:
+ construction = Construction()
+ construction.type = catalog_construction.type
+ construction.name = catalog_construction.name
+ if catalog_construction.window_ratio is not None:
+ for _orientation in catalog_construction.window_ratio:
+ if catalog_construction.window_ratio[_orientation] is None:
+ catalog_construction.window_ratio[_orientation] = 0
+ construction.window_ratio = catalog_construction.window_ratio
+ _layers = []
+ for layer_archetype in catalog_construction.layers:
+ layer = Layer()
+ layer.thickness = layer_archetype.thickness
+ archetype_material = layer_archetype.material
+ layer.material_name = archetype_material.name
+ layer.no_mass = archetype_material.no_mass
+ if archetype_material.no_mass:
+ layer.thermal_resistance = archetype_material.thermal_resistance
+ else:
+ layer.density = archetype_material.density
+ layer.conductivity = archetype_material.conductivity
+ layer.specific_heat = archetype_material.specific_heat
+ layer.solar_absorptance = archetype_material.solar_absorptance
+ layer.thermal_absorptance = archetype_material.thermal_absorptance
+ layer.visible_absorptance = archetype_material.visible_absorptance
+ _layers.append(layer)
+ construction.layers = _layers
+
+ if catalog_construction.window is not None:
+ window_archetype = catalog_construction.window
+ construction.window_frame_ratio = window_archetype.frame_ratio
+ construction.window_g_value = window_archetype.g_value
+ construction.window_overall_u_value = window_archetype.overall_u_value
+ _constructions.append(construction)
+ thermal_archetype.constructions = _constructions
diff --git a/hub/imports/construction_factory.py b/hub/imports/construction_factory.py
index bc97d245..7ce79a14 100644
--- a/hub/imports/construction_factory.py
+++ b/hub/imports/construction_factory.py
@@ -11,6 +11,7 @@ from hub.imports.construction.nrcan_physics_parameters import NrcanPhysicsParame
from hub.imports.construction.nrel_physics_parameters import NrelPhysicsParameters
from hub.imports.construction.eilat_physics_parameters import EilatPhysicsParameters
from hub.imports.construction.palma_physics_parameters import PalmaPhysicsParameters
+from hub.imports.construction.cerc_physics_parameters import CercPhysicsParameters
class ConstructionFactory:
@@ -40,6 +41,15 @@ class ConstructionFactory:
for building in self._city.buildings:
building.level_of_detail.construction = 2
+ def _cerc(self):
+ """
+ Enrich the city by using CERC information
+ """
+ CercPhysicsParameters(self._city).enrich_buildings()
+ self._city.level_of_detail.construction = 2
+ for building in self._city.buildings:
+ building.level_of_detail.construction = 2
+
def _eilat(self):
"""
Enrich the city by using Eilat information
diff --git a/hub/imports/geometry/geojson.py b/hub/imports/geometry/geojson.py
index 419fdec2..83333ce3 100644
--- a/hub/imports/geometry/geojson.py
+++ b/hub/imports/geometry/geojson.py
@@ -134,6 +134,9 @@ class Geojson:
function = None
if self._function_field is not None:
function = str(feature['properties'][self._function_field])
+ if function == '1000':
+ height = float(feature['properties'][self._extrusion_height_field])
+ function = self._define_building_function(height, function)
if self._function_to_hub is not None:
if function in self._function_to_hub:
function = self._function_to_hub[function]
@@ -345,3 +348,13 @@ class Geojson:
building.add_alias(alias)
building.volume = volume
return building
+
+ def _define_building_function(self, height, function):
+ if height < 10:
+ return '1100'
+ if height < 20 and height > 10:
+ return '1990'
+ if height > 20:
+ return '2100'
+ else:
+ return '1000'
diff --git a/hub/imports/usage/cerc_usage_parameters.py b/hub/imports/usage/cerc_usage_parameters.py
new file mode 100644
index 00000000..1238304f
--- /dev/null
+++ b/hub/imports/usage/cerc_usage_parameters.py
@@ -0,0 +1,199 @@
+"""
+NrcanUsageParameters extracts the usage properties from NRCAN catalog and assigns to each building
+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 logging
+
+import hub.helpers.constants as cte
+from hub.helpers.dictionaries import Dictionaries
+from hub.city_model_structure.building_demand.usage import Usage
+from hub.city_model_structure.building_demand.lighting import Lighting
+from hub.city_model_structure.building_demand.occupancy import Occupancy
+from hub.city_model_structure.building_demand.appliances import Appliances
+from hub.city_model_structure.building_demand.thermal_control import ThermalControl
+from hub.city_model_structure.building_demand.domestic_hot_water import DomesticHotWater
+from hub.catalog_factories.usage_catalog_factory import UsageCatalogFactory
+
+
+class CercUsageParameters:
+ """
+ CercUsageParameters class (Copy of NrcanUsageParameters)
+ """
+ def __init__(self, city):
+ self._city = city
+
+ def enrich_buildings(self):
+ """
+ Returns the city with the usage parameters assigned to the buildings
+ :return:
+ """
+ city = self._city
+ cerc_catalog = UsageCatalogFactory('cerc').catalog
+ comnet_catalog = UsageCatalogFactory('comnet').catalog
+
+ for building in city.buildings:
+ usage_name = Dictionaries().hub_usage_to_cerc_usage[building.function]
+ try:
+ archetype_usage = self._search_archetypes(cerc_catalog, usage_name)
+ except KeyError:
+ logging.error('Building %s has unknown usage archetype for usage %s', building.name, usage_name)
+ continue
+
+ comnet_usage_name = Dictionaries().hub_usage_to_comnet_usage[building.function]
+ try:
+ comnet_archetype_usage = self._search_archetypes(comnet_catalog, comnet_usage_name)
+ except KeyError:
+ logging.error('Building %s has unknown usage archetype for usage %s', building.name, comnet_usage_name)
+ continue
+
+ for internal_zone in building.internal_zones:
+ if len(building.internal_zones) > 1:
+ volume_per_area = 0
+ if internal_zone.area is None:
+ logging.error('Building %s has internal zone area not defined, ACH cannot be calculated for usage %s',
+ building.name, usage_name)
+ continue
+ if internal_zone.volume is None:
+ logging.error('Building %s has internal zone volume not defined, ACH cannot be calculated for usage %s',
+ building.name, usage_name)
+ continue
+ if internal_zone.area <= 0:
+ logging.error('Building %s has internal zone area equal to 0, ACH cannot be calculated for usage %s',
+ building.name, usage_name)
+ continue
+ volume_per_area += internal_zone.volume / internal_zone.area
+ else:
+ if building.storeys_above_ground is None:
+ logging.error('Building %s no number of storeys assigned, ACH cannot be calculated for usage %s',
+ building.name, usage_name)
+ continue
+ volume_per_area = building.volume / building.floor_area / building.storeys_above_ground
+
+ usage = Usage()
+ usage.name = usage_name
+ self._assign_values(usage, archetype_usage, volume_per_area, building.cold_water_temperature)
+ self._assign_comnet_extra_values(usage, comnet_archetype_usage, archetype_usage.occupancy.occupancy_density)
+ usage.percentage = 1
+ self._calculate_reduced_values_from_extended_library(usage, archetype_usage)
+
+ internal_zone.usages = [usage]
+
+ @staticmethod
+ def _search_archetypes(catalog, usage_name):
+ archetypes = catalog.entries('archetypes').usages
+ for building_archetype in archetypes:
+ if str(usage_name) == str(building_archetype.name):
+ return building_archetype
+ raise KeyError('archetype not found')
+
+ @staticmethod
+ def _assign_values(usage, archetype, volume_per_area, cold_water_temperature):
+ if archetype.mechanical_air_change > 0:
+ # 1/s
+ usage.mechanical_air_change = archetype.mechanical_air_change
+ elif archetype.ventilation_rate > 0:
+ # m3/m2.s to 1/s
+ usage.mechanical_air_change = archetype.ventilation_rate / volume_per_area
+ else:
+ usage.mechanical_air_change = 0
+ _occupancy = Occupancy()
+ _occupancy.occupancy_density = archetype.occupancy.occupancy_density
+ _occupancy.sensible_radiative_internal_gain = archetype.occupancy.sensible_radiative_internal_gain
+ _occupancy.latent_internal_gain = archetype.occupancy.latent_internal_gain
+ _occupancy.sensible_convective_internal_gain = archetype.occupancy.sensible_convective_internal_gain
+ _occupancy.occupancy_schedules = archetype.occupancy.schedules
+ usage.occupancy = _occupancy
+ _lighting = Lighting()
+ _lighting.density = archetype.lighting.density
+ _lighting.convective_fraction = archetype.lighting.convective_fraction
+ _lighting.radiative_fraction = archetype.lighting.radiative_fraction
+ _lighting.latent_fraction = archetype.lighting.latent_fraction
+ _lighting.schedules = archetype.lighting.schedules
+ usage.lighting = _lighting
+ _appliances = Appliances()
+ _appliances.density = archetype.appliances.density
+ _appliances.convective_fraction = archetype.appliances.convective_fraction
+ _appliances.radiative_fraction = archetype.appliances.radiative_fraction
+ _appliances.latent_fraction = archetype.appliances.latent_fraction
+ _appliances.schedules = archetype.appliances.schedules
+ usage.appliances = _appliances
+ _control = ThermalControl()
+ _control.cooling_set_point_schedules = archetype.thermal_control.cooling_set_point_schedules
+ _control.heating_set_point_schedules = archetype.thermal_control.heating_set_point_schedules
+ _control.hvac_availability_schedules = archetype.thermal_control.hvac_availability_schedules
+ usage.thermal_control = _control
+ _domestic_hot_water = DomesticHotWater()
+ _domestic_hot_water.peak_flow = archetype.domestic_hot_water.peak_flow
+ _domestic_hot_water.service_temperature = archetype.domestic_hot_water.service_temperature
+ density = None
+ if len(cold_water_temperature) > 0:
+ cold_temperature = cold_water_temperature[cte.YEAR][0]
+ density = (
+ archetype.domestic_hot_water.peak_flow * cte.WATER_DENSITY * cte.WATER_HEAT_CAPACITY *
+ (archetype.domestic_hot_water.service_temperature - cold_temperature)
+ )
+ _domestic_hot_water.density = density
+ _domestic_hot_water.schedules = archetype.domestic_hot_water.schedules
+ usage.domestic_hot_water = _domestic_hot_water
+
+ @staticmethod
+ def _assign_comnet_extra_values(usage, archetype, occupancy_density):
+ _occupancy = usage.occupancy
+ archetype_density = archetype.occupancy.occupancy_density
+ if archetype_density == 0:
+ _occupancy.sensible_radiative_internal_gain = 0
+ _occupancy.latent_internal_gain = 0
+ _occupancy.sensible_convective_internal_gain = 0
+ else:
+ _occupancy.sensible_radiative_internal_gain = archetype.occupancy.sensible_radiative_internal_gain \
+ * occupancy_density / archetype_density
+ _occupancy.latent_internal_gain = archetype.occupancy.latent_internal_gain * occupancy_density / archetype_density
+ _occupancy.sensible_convective_internal_gain = (
+ archetype.occupancy.sensible_convective_internal_gain * occupancy_density / archetype_density
+ )
+
+ @staticmethod
+ def _calculate_reduced_values_from_extended_library(usage, archetype):
+ number_of_days_per_type = {'WD': 251, 'Sat': 52, 'Sun': 62}
+ total = 0
+ for schedule in archetype.thermal_control.hvac_availability_schedules:
+ if schedule.day_types[0] == cte.SATURDAY:
+ for value in schedule.values:
+ total += value * number_of_days_per_type['Sat']
+ elif schedule.day_types[0] == cte.SUNDAY:
+ for value in schedule.values:
+ total += value * number_of_days_per_type['Sun']
+ else:
+ for value in schedule.values:
+ total += value * number_of_days_per_type['WD']
+
+ usage.hours_day = total / 365
+ usage.days_year = 365
+
+ max_heating_setpoint = cte.MIN_FLOAT
+ min_heating_setpoint = cte.MAX_FLOAT
+
+ for schedule in archetype.thermal_control.heating_set_point_schedules:
+ if schedule.values is None:
+ max_heating_setpoint = None
+ min_heating_setpoint = None
+ break
+ if max(schedule.values) > max_heating_setpoint:
+ max_heating_setpoint = max(schedule.values)
+ if min(schedule.values) < min_heating_setpoint:
+ min_heating_setpoint = min(schedule.values)
+
+ min_cooling_setpoint = cte.MAX_FLOAT
+ for schedule in archetype.thermal_control.cooling_set_point_schedules:
+ if schedule.values is None:
+ min_cooling_setpoint = None
+ break
+ if min(schedule.values) < min_cooling_setpoint:
+ min_cooling_setpoint = min(schedule.values)
+
+ usage.thermal_control.mean_heating_set_point = max_heating_setpoint
+ usage.thermal_control.heating_set_back = min_heating_setpoint
+ usage.thermal_control.mean_cooling_set_point = min_cooling_setpoint
diff --git a/hub/imports/usage_factory.py b/hub/imports/usage_factory.py
index feadd5a9..0e61ea07 100644
--- a/hub/imports/usage_factory.py
+++ b/hub/imports/usage_factory.py
@@ -9,6 +9,7 @@ Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concord
from hub.helpers.utils import validate_import_export_type
from hub.imports.usage.comnet_usage_parameters import ComnetUsageParameters
from hub.imports.usage.nrcan_usage_parameters import NrcanUsageParameters
+from hub.imports.usage.cerc_usage_parameters import CercUsageParameters
from hub.imports.usage.eilat_usage_parameters import EilatUsageParameters
from hub.imports.usage.palma_usage_parameters import PalmaUsageParameters
@@ -40,6 +41,15 @@ class UsageFactory:
for building in self._city.buildings:
building.level_of_detail.usage = 2
+ def _cerc(self):
+ """
+ Enrich the city with cerc usage library (copy of NRCAN)
+ """
+ CercUsageParameters(self._city).enrich_buildings()
+ self._city.level_of_detail.usage = 2
+ for building in self._city.buildings:
+ building.level_of_detail.usage = 2
+
def _eilat(self):
"""
Enrich the city with Eilat usage library
diff --git a/tests/test_construction_catalog.py b/tests/test_construction_catalog.py
index 299fee9d..32705a2f 100644
--- a/tests/test_construction_catalog.py
+++ b/tests/test_construction_catalog.py
@@ -91,3 +91,23 @@ class TestConstructionCatalog(TestCase):
with self.assertRaises(IndexError):
catalog.get_entry('unknown')
+
+ def test_cerc_catalog(self):
+ catalog = ConstructionCatalogFactory('cerc').catalog
+ catalog_categories = catalog.names()
+ constructions = catalog.names('constructions')
+ windows = catalog.names('windows')
+ materials = catalog.names('materials')
+ self.assertEqual(600, len(constructions['constructions']))
+ self.assertEqual(106, len(windows['windows']))
+ self.assertEqual(552, 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')
diff --git a/tests/test_construction_factory.py b/tests/test_construction_factory.py
index 0339ce6f..cbec2258 100644
--- a/tests/test_construction_factory.py
+++ b/tests/test_construction_factory.py
@@ -273,7 +273,6 @@ class TestConstructionFactory(TestCase):
function_field='CODE_UTILI',
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:
@@ -318,6 +317,27 @@ class TestConstructionFactory(TestCase):
function_to_hub=Dictionaries().palma_function_to_hub_function).city
ConstructionFactory('palma', 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_from_internal_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_cerc_construction_factory(self):
+ file = 'test.geojson'
+ file_path = (self._example_path / file).resolve()
+ city = GeometryFactory('geojson',
+ path=file_path,
+ height_field='citygml_me',
+ year_of_construction_field='ANNEE_CONS',
+ function_field='CODE_UTILI',
+ function_to_hub=Dictionaries().montreal_function_to_hub_function).city
+ ConstructionFactory('cerc', city).enrich()
+ self._check_buildings(city)
for building in city.buildings:
for internal_zone in building.internal_zones:
self._check_thermal_zones(internal_zone)
diff --git a/tests/test_usage_catalog.py b/tests/test_usage_catalog.py
index 40fd6eb8..532879cc 100644
--- a/tests/test_usage_catalog.py
+++ b/tests/test_usage_catalog.py
@@ -28,3 +28,9 @@ class TestConstructionCatalog(TestCase):
content = catalog.entries()
#print(catalog.entries())
self.assertEqual(1, len(content.usages), 'Wrong number of usages')
+
+ def test_cerc_catalog(self):
+ catalog = UsageCatalogFactory('cerc').catalog
+ self.assertIsNotNone(catalog, 'catalog is none')
+ content = catalog.entries()
+ self.assertEqual(34, len(content.usages), 'Wrong number of usages')
diff --git a/tests/test_usage_factory.py b/tests/test_usage_factory.py
index 33182342..6721e1c0 100644
--- a/tests/test_usage_factory.py
+++ b/tests/test_usage_factory.py
@@ -150,7 +150,30 @@ class TestUsageFactory(TestCase):
self.assertIsNot(len(internal_zone.usages), 0, 'no building usage defined')
for usage in internal_zone.usages:
self._check_usage(usage)
-
+
+ def test_import_cerc(self):
+ """
+ Enrich the city with the usage information from nrcan and verify it
+ """
+ file = 'test.geojson'
+ file_path = (self._example_path / file).resolve()
+ city = GeometryFactory('geojson',
+ path=file_path,
+ height_field='citygml_me',
+ year_of_construction_field='ANNEE_CONS',
+ function_field='CODE_UTILI',
+ function_to_hub=Dictionaries().montreal_function_to_hub_function).city
+
+ ConstructionFactory('cerc', city).enrich()
+ UsageFactory('cerc', city).enrich()
+ self._check_buildings(city)
+ for building in city.buildings:
+ for internal_zone in building.internal_zones:
+ if internal_zone.usages is not None:
+ self.assertIsNot(len(internal_zone.usages), 0, 'no building usage defined')
+ for usage in internal_zone.usages:
+ self._check_usage(usage)
+
def test_import_palma(self):
"""
Enrich the city with the usage information from palma and verify it